:root {
  --bg: #05060a;
  --bg-2: #080d12;
  --panel: rgba(15, 22, 31, 0.86);
  --panel-2: rgba(20, 30, 42, 0.92);
  --panel-solid: #101820;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7fb;
  --muted: #a9b4c2;
  --soft: #d8e1ec;
  --green: #00e676;
  --green-2: #62ff9d;
  --gold: #ffc857;
  --gold-2: #ffef9a;
  --red: #ff3864;
  --blue: #47c8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 230, 118, 0.16), transparent 34rem),
    radial-gradient(circle at 78% 8%, rgba(255, 200, 87, 0.12), transparent 30rem),
    linear-gradient(180deg, #05060a 0%, #071015 45%, #040507 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.25), rgba(0,0,0,0));
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 99;
  padding: 10px 14px;
  color: #06100b;
  background: var(--green-2);
  border-radius: 10px;
}

.skip-link:focus { left: 12px; }

.top-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 10, 0.76);
  backdrop-filter: blur(16px);
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.top-strip strong { color: var(--gold-2); font-weight: 800; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.logo img {
  width: 190px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(0, 230, 118, 0.16));
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--green-2); }

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 99px;
  transition: width 0.2s ease;
}

.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  color: #06100b;
  background: linear-gradient(135deg, var(--green) 0%, #a2ff53 54%, var(--gold) 100%);
  box-shadow: 0 18px 36px rgba(0, 230, 118, 0.26), inset 0 1px 0 rgba(255,255,255,0.5);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}

.btn--secondary:hover {
  border-color: rgba(0,230,118,0.5);
  box-shadow: 0 16px 30px rgba(0, 230, 118, 0.11);
}

.btn--ghost {
  color: var(--text);
  min-height: 42px;
  padding: 10px 15px;
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.hero {
  position: relative;
  padding: 66px 0 42px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 2%;
  width: 45rem;
  height: 45rem;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: var(--gold-2);
  border: 1px solid rgba(255, 200, 87, 0.28);
  background: rgba(255, 200, 87, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.text-gradient {
  background: linear-gradient(90deg, var(--green-2), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-extra,
.quick-intro,
.section-text--wide,
.section-text--faq {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero-extra {
  max-width: 650px;
  margin: -8px 0 24px;
}

.quick-intro {
  max-width: 940px;
  margin: 0 0 18px;
}

.section-text--wide {
  max-width: 760px;
  margin-top: 14px;
}

.section-text--faq {
  max-width: 860px;
  margin: -8px 0 22px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
}

.hero-point {
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-point strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  line-height: 1.1;
}

.hero-media {
  position: relative;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1584 / 672;
  object-fit: cover;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(0,0,0,0.18), transparent 52%);
}

.floating-offer {
  position: absolute;
  left: -16px;
  bottom: -18px;
  width: min(300px, 74%);
  padding: 18px;
  border: 1px solid rgba(0, 230, 118, 0.34);
  border-radius: 24px;
  background: rgba(5, 8, 12, 0.88);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 44px rgba(0,230,118,0.14);
  backdrop-filter: blur(16px);
}

.floating-offer span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-offer strong {
  display: block;
  margin-top: 5px;
  color: var(--gold-2);
  font-size: 28px;
  line-height: 1.05;
}

.quick-panel {
  margin-top: 34px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quick-card {
  display: grid;
  gap: 8px;
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    rgba(14, 20, 28, 0.86);
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}

.quick-card:hover {
  border-color: rgba(0,230,118,0.32);
  box-shadow: 0 22px 48px rgba(0,230,118,0.08), 0 18px 34px rgba(0,0,0,0.24);
}

.quick-card b {
  color: var(--text);
  font-size: 19px;
}

.quick-card span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 64px 0;
  position: relative;
}

.section--tight { padding: 42px 0; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-text {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.bonus-showcase {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 22px;
  align-items: stretch;
}

.offer-box {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 30px;
  border: 1px solid rgba(255,200,87,0.22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 200, 87, 0.18), transparent 26rem),
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    #10141c;
  box-shadow: var(--shadow);
}

.offer-box h2 { margin-bottom: 14px; }

.offer-box p {
  color: var(--soft);
  font-size: 18px;
}

.offer-number {
  margin: 24px 0 16px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.93;
  letter-spacing: -0.06em;
  font-weight: 950;
  color: var(--gold-2);
  text-shadow: 0 0 34px rgba(255, 200, 87, 0.26);
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--soft);
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.045);
  font-size: 13px;
  font-weight: 800;
}

.promo-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  min-height: 207px;
  background: var(--panel-solid);
  box-shadow: 0 20px 42px rgba(0,0,0,0.28);
}

.promo-card img {
  width: 100%;
  height: 100%;
  min-height: 207px;
  object-fit: cover;
}

.promo-card__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #07100b;
  background: linear-gradient(135deg, var(--green-2), var(--gold-2));
  font-weight: 950;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.32);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 22px;
  align-items: center;
}

.steps-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: #0f1620;
  box-shadow: var(--shadow);
}

.steps-visual img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
}

.step-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #06100b;
  background: linear-gradient(135deg, var(--green), var(--gold));
  font-weight: 950;
  font-size: 20px;
}

.step-item h3 { margin-bottom: 5px; font-size: 20px; }
.step-item p { color: var(--muted); margin-bottom: 0; }

.games-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  position: relative;
  overflow: hidden;
  min-height: 272px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  box-shadow: 0 20px 40px rgba(0,0,0,0.26);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,230,118,0.35);
  box-shadow: 0 30px 54px rgba(0,0,0,0.38), 0 0 44px rgba(0,230,118,0.1);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.game-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px 15px 15px;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), rgba(0,0,0,0));
}

.game-card__body h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.15;
}

.game-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 7px 9px;
  border-radius: 999px;
  color: #07100b;
  background: var(--green-2);
  font-size: 12px;
  font-weight: 950;
}

.split-banner {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 22px;
  align-items: stretch;
}

.dark-panel {
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(0,230,118,0.11), transparent 22rem),
    rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
}

.dark-panel h2 { margin-bottom: 14px; }
.dark-panel p { color: var(--soft); font-size: 18px; }

.live-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.live-chip {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: var(--soft);
  background: rgba(255,255,255,0.04);
  font-weight: 800;
}

.banner-image {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: #101820;
  box-shadow: var(--shadow);
}

.banner-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.sports-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
}

.sports-card__image img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

.sports-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 26px;
  align-items: center;
}

.sport-icons {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.sport-icon {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid rgba(0, 230, 118, 0.22);
  border-radius: 18px;
  background: rgba(0,230,118,0.05);
}

.sport-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.app-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.app-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 0%, rgba(0,230,118,0.12), transparent 24rem), #0e141c;
  box-shadow: var(--shadow);
}

.app-visual img {
  width: 100%;
  object-fit: contain;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 188px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.payment-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.payment-item {
  min-height: 136px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.035));
}

.payment-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.payment-item span {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  float: right;
  color: var(--green-2);
  font-size: 20px;
  line-height: 1;
}

details[open] summary::after { content: "−"; }

details p {
  padding: 0 20px 20px;
  margin: 0;
  color: var(--muted);
}

.cta-final {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(0,230,118,0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 0%, rgba(255,200,87,0.16), transparent 26rem),
    linear-gradient(135deg, rgba(0,230,118,0.13), rgba(255,255,255,0.04)),
    rgba(14,20,28,0.9);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cta-final h2 { margin-bottom: 10px; }
.cta-final p { margin-bottom: 0; color: var(--soft); font-size: 18px; }

.site-footer {
  padding: 46px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(2,3,6,0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 28px;
}

.footer-brand img { width: 190px; margin-bottom: 16px; }
.footer-brand p, .footer-col p { color: var(--muted); margin-bottom: 0; }

.footer-col h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-col a:hover { color: var(--green-2); }

.adm-badge {
  width: 172px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav { display: none; }
  .hero-grid, .bonus-showcase, .steps, .split-banner, .app-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .games-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quick-grid, .payment-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .top-strip__inner { justify-content: center; text-align: center; }
  .top-strip__inner span:last-child { display: none; }
  .header-inner { min-height: 70px; }
  .logo img { width: 150px; }
  .header-actions .btn--ghost { display: none; }
  .hero { padding-top: 34px; }
  .hero-grid { gap: 26px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .hero-points { grid-template-columns: 1fr; }
  .quick-grid, .feature-grid, .payment-strip, .live-list { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .game-card { min-height: auto; border-radius: 18px; }
  .game-card__body h3 { font-size: 15px; }
  .game-card__body p { font-size: 12px; }
  .section { padding: 46px 0; }
  .section-head { display: block; }
  .section-text { margin-top: 12px; }
  .sport-icons { grid-template-columns: repeat(4, 1fr); }
  .sports-card__body { grid-template-columns: 1fr; }
  .cta-final { grid-template-columns: 1fr; padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 420px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .header-actions .btn--primary { padding-inline: 14px; }
  .games-grid { grid-template-columns: 1fr; }
  .sport-icons { grid-template-columns: repeat(3, 1fr); }
}

/* Inner pages */
.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a { color: var(--green-2); }

.page-hero {
  position: relative;
  padding: 54px 0 44px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -18%;
  width: 46rem;
  height: 46rem;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.16), transparent 66%);
  pointer-events: none;
}

.bonus-page-hero::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 5%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.13), transparent 65%);
  pointer-events: none;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 18px;
}

.page-hero-media {
  position: relative;
}

.bonus-visual-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.bonus-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bonus-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 230, 118, 0.22);
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.08);
  color: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.bonus-offer-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.offer-box--compact {
  min-height: 100%;
}

.info-grid {
  display: grid;
  gap: 16px;
}

.info-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card--tall {
  min-height: 230px;
}

.section-head--single {
  display: block;
}

.promo-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.promo-card--large {
  min-height: 270px;
}

.promo-card--large img {
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.feature-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-banner--text {
  align-items: stretch;
}

.content-panel {
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
}

.content-panel--gold {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 200, 87, 0.18), transparent 24rem),
    rgba(255,255,255,0.045);
}

.content-panel h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.content-panel p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.check-list span {
  position: relative;
  display: block;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(5,6,10,0.38);
  color: var(--soft);
  font-weight: 800;
}

.check-list span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green-2);
  font-weight: 1000;
}

.payment-strip--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .page-hero-grid, .bonus-offer-panel, .split-banner--text { grid-template-columns: 1fr; }
  .page-hero-media { order: -1; }
  .payment-strip--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .page-hero { padding: 34px 0 36px; }
  .breadcrumb { margin-bottom: 18px; }
  .info-grid--two, .promo-row, .feature-grid--six { grid-template-columns: 1fr; }
  .bonus-visual-card img, .promo-card--large img { min-height: auto; }
  .payment-strip--five { grid-template-columns: 1fr; }
}

/* Slot page */
.slot-page-hero::before {
  content: "";
  position: absolute;
  left: -16%;
  top: 4%;
  width: 42rem;
  height: 42rem;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.14), transparent 65%);
  pointer-events: none;
}

.mini-games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-games-grid .game-card {
  min-height: 252px;
}

.steps-visual--dark {
  background: #090d14;
}

.steps-visual--dark img {
  object-position: center top;
}

@media (max-width: 760px) {
  .mini-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-games-grid .game-card { min-height: auto; }
}

@media (max-width: 420px) {
  .mini-games-grid { grid-template-columns: 1fr; }
}

/* Image frame fixes: keep all visual assets inside neon borders on every page */
.hero-card,
.promo-card,
.steps-visual,
.banner-image,
.sports-card__image,
.app-visual,
.adm-badge {
  overflow: hidden;
}

.hero-card {
  aspect-ratio: 1584 / 672;
}

.hero-card.bonus-visual-card {
  aspect-ratio: 1449 / 720;
}

.hero-card img,
.banner-image img,
.sports-card__image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.promo-stack .promo-card {
  height: clamp(178px, 18vw, 232px);
  min-height: 0;
}

.promo-card img,
.promo-card--large img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #0b1118;
}

.promo-card--large,
.promo-row .promo-card {
  aspect-ratio: 16 / 8.2;
  min-height: 0;
}

.steps-visual {
  aspect-ratio: 16 / 9;
  max-height: 430px;
}

.steps-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #0b1118;
}

.game-card {
  min-height: 0;
  aspect-ratio: 1 / 1.14;
}

.game-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.split-banner > .games-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.sports-card__image {
  aspect-ratio: 2048 / 451;
  background: #0b1118;
}

.sports-card__image img {
  object-fit: contain;
  background: #0b1118;
}

.app-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.app-visual img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.logo img,
.footer-brand img {
  height: auto;
  object-fit: contain;
}

.adm-badge img {
  width: 100%;
  height: auto;
}

@media (max-width: 1080px) {
  .split-banner > .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-card,
  .hero-card.bonus-visual-card,
  .steps-visual,
  .sports-card__image,
  .promo-card--large,
  .promo-row .promo-card {
    aspect-ratio: auto;
    max-height: none;
  }

  .hero-card img,
  .steps-visual img,
  .sports-card__image img,
  .promo-card img,
  .promo-card--large img {
    height: auto;
  }

  .promo-stack .promo-card {
    height: auto;
  }

  .game-card {
    aspect-ratio: 1 / 1.08;
  }

  .split-banner > .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-visual {
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .split-banner > .games-grid {
    grid-template-columns: 1fr;
  }
}

/* Final image containment patch v2: fixes stretched/cropped visuals across homepage and inner pages */
.logo,
.footer-brand {
  min-width: 0 !important;
}

.logo img,
.footer-brand > img {
  display: block !important;
  width: min(190px, 100%) !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: left center !important;
}

.site-header .logo img {
  max-height: 46px !important;
}

.footer-brand > img {
  margin-bottom: 16px !important;
}

.adm-badge {
  width: 172px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.adm-badge img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 132px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #fff !important;
}

.hero-card,
.bonus-visual-card,
.promo-card,
.promo-card--large,
.steps-visual,
.banner-image,
.sports-card__image,
.app-visual,
.content-panel,
.game-card {
  overflow: hidden !important;
}

.hero-card img,
.bonus-visual-card img,
.banner-image img,
.sports-card__image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: cover !important;
}

.promo-card img,
.promo-card--large img,
.steps-visual img,
.app-visual img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  background: #0b1118 !important;
}

.steps-visual {
  display: grid !important;
  place-items: center !important;
  aspect-ratio: 16 / 9 !important;
  max-height: 430px !important;
}

.steps-visual img {
  padding: 0 !important;
}

.promo-stack .promo-card {
  height: clamp(176px, 18vw, 232px) !important;
  min-height: 0 !important;
}

.promo-row .promo-card,
.promo-card--large {
  aspect-ratio: 16 / 8.2 !important;
  min-height: 0 !important;
}

/* Prevent cards from being stretched by neighboring tall text panels */
.games-grid {
  align-items: start !important;
}

.split-banner {
  align-items: start !important;
}

.split-banner > .games-grid {
  align-self: start !important;
  height: auto !important;
  align-content: start !important;
}

#live-casino .games-grid {
  grid-template-columns: repeat(2, minmax(210px, 1fr)) !important;
  align-self: start !important;
}

#live-casino .game-card {
  display: flex !important;
  flex-direction: column !important;
  aspect-ratio: auto !important;
  min-height: 0 !important;
  height: auto !important;
  align-self: start !important;
}

#live-casino .game-card img {
  width: 100% !important;
  height: clamp(160px, 16vw, 210px) !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  flex: 0 0 auto !important;
}

#live-casino .game-card__body {
  position: static !important;
  padding: 16px !important;
  min-height: 96px !important;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.98), rgba(5, 8, 12, 0.98)) !important;
}

#live-casino .game-card__body h3 {
  font-size: 18px !important;
}

.game-card:not(#live-casino .game-card) {
  align-self: start !important;
}

.game-card:not(#live-casino .game-card) img {
  object-position: center !important;
}

@media (max-width: 1080px) {
  #live-casino .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .logo img,
  .footer-brand > img {
    width: min(160px, 100%) !important;
    max-height: 48px !important;
  }

  .steps-visual,
  .promo-row .promo-card,
  .promo-card--large {
    aspect-ratio: 16 / 9 !important;
    max-height: none !important;
  }

  .promo-stack .promo-card {
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  #live-casino .game-card img {
    height: clamp(150px, 38vw, 190px) !important;
  }

  .adm-badge {
    width: 160px !important;
  }
}

@media (max-width: 520px) {
  #live-casino .games-grid {
    grid-template-columns: 1fr !important;
  }
}

.text-link {
  color: var(--green-2);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(98, 255, 157, 0.38);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--gold-2);
  text-decoration-color: rgba(255, 239, 154, 0.5);
}
