:root {
  --bg: #080b0d;
  --bg-2: #0e1417;
  --panel: rgba(18, 24, 27, 0.88);
  --panel-2: #131a1e;
  --text: #f5f8f2;
  --muted: #b8c4be;
  --line: rgba(242, 255, 50, 0.17);
  --brand: #f2ff32;
  --brand-2: #d6eb00;
  --lime: #9dff00;
  --dark-lime: #5c8f00;
  --gold: #ffcb2d;
  --danger: #d7ff1a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(242, 255, 50, .13), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(66, 112, 255, .15), transparent 30%),
    var(--bg);
  line-height: 1.6;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/assets/img/noise.png");
  opacity: .045;
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 50;
  background: var(--brand);
  color: #101200;
  padding: 10px 14px;
  border-radius: 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 8, 10, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(242, 255, 50, .14);
}
.top-strip {
  background: #171d20;
  color: var(--muted);
  font-size: 13px;
}
.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 34px;
}
.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-strip span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 12px rgba(242, 255, 50, .8);
}
.header-main {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand img {
  width: 178px;
  filter: drop-shadow(0 0 14px rgba(242, 255, 50, .25));
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.main-nav a {
  color: #e8efea;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 999px;
  transition: .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: #0e1100;
  background: var(--brand);
}
.header-actions {
  display: flex;
  gap: 10px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 255, 50, .22);
  background: #101619;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--lime));
  color: #111600;
  box-shadow: 0 14px 34px rgba(201, 255, 0, .25);
}
.btn--secondary {
  color: var(--brand);
  background: rgba(242, 255, 50, .09);
  border-color: rgba(242, 255, 50, .32);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, .16);
}
.btn--large {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 16px;
}
.btn--full { width: 100%; }
.text-link {
  color: var(--brand);
  font-weight: 900;
}
.text-link:hover { text-decoration: underline; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, .92) 0%, rgba(3, 5, 7, .75) 41%, rgba(3, 5, 7, .42) 70%, rgba(3, 5, 7, .76) 100%),
    linear-gradient(180deg, rgba(3, 5, 7, .2), rgba(3, 5, 7, .86)),
    url("/assets/img/hero-stadium.jpg") center/cover no-repeat;
  z-index: -2;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 34%, rgba(242, 255, 50, .16), transparent 25%),
    radial-gradient(circle at 22% 58%, rgba(38, 79, 255, .18), transparent 28%);
}
.hero__inner {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 390px;
  align-items: center;
  gap: 44px;
  padding: 82px 0 70px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 13px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .95;
  margin-bottom: 22px;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.hero__lead {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  color: #dce5df;
  margin-bottom: 30px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(12, 17, 20, .65);
  border: 1px solid rgba(242, 255, 50, .18);
  color: #e8efe8;
  font-weight: 700;
  font-size: 14px;
}
.hero__trust span::before {
  content: "✓";
  color: #111600;
  background: var(--brand);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 12px;
}
.bonus-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 255, 50, .35);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(19, 26, 30, .92), rgba(7, 11, 13, .92)),
    radial-gradient(circle at top right, rgba(242, 255, 50, .2), transparent 35%);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, .04);
  padding: 30px;
}
.bonus-panel__shine {
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent, rgba(242,255,50,.15), transparent);
  transform: translateX(-70%);
  animation: shine 5.5s linear infinite;
}
@keyframes shine {
  0%, 45% { transform: translateX(-80%); }
  100% { transform: translateX(80%); }
}
.bonus-panel__label {
  position: relative;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 20px;
  color: #111600;
  background: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.bonus-panel strong {
  position: relative;
  display: block;
  font-size: clamp(38px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: var(--brand);
  text-shadow: 0 0 24px rgba(242,255,50,.24);
  margin-bottom: 18px;
}
.bonus-panel__code {
  position: relative;
  display: block;
  padding: 14px 16px;
  border: 1px dashed rgba(242, 255, 50, .55);
  border-radius: 16px;
  background: rgba(242, 255, 50, .08);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.bonus-panel__divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 20px 0;
}
.bonus-panel p:not(.bonus-panel__label) {
  position: relative;
  color: var(--muted);
  margin-bottom: 22px;
}
.bonus-panel b { color: var(--brand); }

.quick-links {
  transform: translateY(-38px);
  position: relative;
  z-index: 4;
}
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.quick-links a {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  background: rgba(18, 24, 27, .9);
  border: 1px solid rgba(242, 255, 50, .18);
  padding: 18px;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(0,0,0,.22);
}
.quick-links a:hover {
  border-color: rgba(242, 255, 50, .55);
  background: rgba(242, 255, 50, .08);
}
.quick-links span {
  color: var(--brand);
  font-weight: 900;
  font-size: 14px;
}

.section { padding: 86px 0; }
.section--compact { padding: 72px 0; }
.section--dark {
  background: linear-gradient(180deg, rgba(15, 21, 24, .92), rgba(8, 11, 13, .92));
  border-block: 1px solid rgba(242, 255, 50, .1);
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: 30px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-head p { color: var(--muted); }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promo-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(23, 31, 35, .94), rgba(13, 18, 21, .94));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}
.promo-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(242,255,50,.2), transparent 70%);
}
.promo-card--hot {
  border-color: rgba(242, 255, 50, .4);
  background: linear-gradient(180deg, rgba(36, 42, 23, .94), rgba(12, 17, 14, .94));
}
.promo-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.promo-card__top span {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}
.promo-card__top strong {
  color: #111600;
  background: var(--brand);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 14px;
}
.promo-card h3 {
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 14px;
}
.promo-card p {
  color: var(--muted);
  margin-bottom: 24px;
}
.wager-box {
  margin-top: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  border-radius: 18px;
  background: rgba(242, 255, 50, .06);
  border: 1px solid rgba(242, 255, 50, .16);
}
.wager-box span {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
.wager-box p { margin: 0; color: var(--muted); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.category-card {
  padding: 24px;
  min-height: 260px;
  border-radius: var(--radius);
  background: rgba(20, 27, 31, .84);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .2s ease, border-color .2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,255,50,.42);
}
.category-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(242,255,50,.12);
  border: 1px solid rgba(242,255,50,.2);
  margin-bottom: 20px;
  font-size: 26px;
}
.category-card h3 { font-size: 23px; margin-bottom: 10px; }
.category-card p { color: var(--muted); margin-bottom: 18px; }
.category-card a { color: var(--brand); font-weight: 900; }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.slot-card {
  overflow: hidden;
  border-radius: 18px;
  background: #11181b;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
  transition: transform .2s ease, border-color .2s ease;
}
.slot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,255,50,.48);
}
.slot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.slot-card h3 {
  margin: 0;
  padding: 14px 14px 16px;
  font-size: 16px;
  line-height: 1.2;
}

.section--platform {
  background:
    radial-gradient(circle at 88% 40%, rgba(242,255,50,.12), transparent 32%),
    #0a0f11;
  border-block: 1px solid rgba(242, 255, 50, .1);
}
.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
}
.platform-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.platform-copy p { color: var(--muted); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 11px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6eee8;
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
  color: #111600;
  font-weight: 900;
}
.platform-media {
  padding: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(242, 255, 50, .18);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.platform-media img {
  border-radius: 18px;
  width: 100%;
}

.payments-box {
  padding: 24px;
  border-radius: var(--radius);
  background: #020303;
  border: 1px solid rgba(242, 255, 50, .15);
  overflow-x: auto;
}
.payments-box img {
  width: 100%;
  min-width: 760px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.features-grid article {
  padding: 22px;
  border-radius: 18px;
  background: rgba(20, 27, 31, .7);
  border: 1px solid rgba(255,255,255,.08);
}
.features-grid h3 { margin-bottom: 8px; }
.features-grid p { color: var(--muted); margin: 0; }

.section--cta { padding: 54px 0; }
.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(242,255,50,.16), rgba(18,24,27,.92) 42%, rgba(157,255,0,.11)),
    #11181b;
  border: 1px solid rgba(242,255,50,.28);
  box-shadow: 0 22px 60px rgba(0,0,0,.27);
}
.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}
.cta-box p { color: var(--muted); margin-bottom: 0; }

.section--faq { padding-top: 54px; }
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(20, 27, 31, .76);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details p {
  color: var(--muted);
  padding: 0 22px 20px;
  margin: 0;
}

.site-footer {
  background: #050708;
  border-top: 1px solid rgba(242, 255, 50, .12);
  padding: 54px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr 1.1fr;
  gap: 34px;
}
.footer-logo { width: 148px; margin-bottom: 14px; }
.site-footer p { color: var(--muted); }
.site-footer h2 {
  font-size: 14px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.site-footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}
.site-footer a:hover { color: var(--brand); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #7e8984;
  font-size: 14px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-sticky-cta { display: none; }

@media (max-width: 1040px) {
  .header-main { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle { display: block; order: 3; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(7, 10, 12, .98);
    border: 1px solid rgba(242, 255, 50, .18);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .header-actions { display: none; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 64px; }
  .bonus-panel { max-width: 520px; }
  .quick-links__grid, .category-grid, .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid, .features-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .section-head--split { grid-template-columns: 1fr; align-items: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(100% - 24px, var(--container)); }
  .top-strip__inner { justify-content: center; flex-wrap: wrap; gap: 8px 14px; padding: 7px 0; }
  .header-main { min-height: 68px; gap: 12px; }
  .brand img { width: 128px; }
  .hero { min-height: 0; }
  .hero__inner { min-height: 0; padding: 54px 0 72px; }
  .hero__lead { font-size: 17px; }
  .hero__cta { display: grid; }
  .bonus-panel { padding: 22px; border-radius: 24px; }
  .quick-links { transform: none; padding: 16px 0 0; }
  .quick-links__grid, .category-grid, .slot-grid { grid-template-columns: 1fr; }
  .quick-links a { min-height: 70px; }
  .section, .section--compact { padding: 56px 0; }
  .wager-box { grid-template-columns: 1fr; gap: 8px; }
  .payments-box img { min-width: 640px; }
  .cta-box { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 29;
    display: block;
  }
  .mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand), var(--lime));
    color: #111600;
    font-weight: 1000;
    box-shadow: 0 16px 40px rgba(0,0,0,.42);
  }
  body { padding-bottom: 76px; }
}
