/* ===== Design tokens ===== */
:root {
  --void: #0b0e27;
  --void-deep: #06081c;
  --panel: #141a3d;
  --panel-2: #1b2350;
  --line: rgba(234, 238, 255, 0.12);
  --text: #edebf7;
  --text-muted: #a8a4c7;
  --accent-cyan: #50f4fe;
  --accent-blue: #347df4;
  --accent-gradient: linear-gradient(120deg, #50f4fe 0%, #347df4 100%);
  --gold: #ffc75f;
  --gold-2: #ffdc94;
  --gold-gradient: linear-gradient(135deg, var(--gold), var(--gold-2));
  --aurora: #2fe6c4;
  --radius: 20px;
  --max-width: 1180px;
  --shadow: 0 25px 70px -20px rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--void);
  background-image: radial-gradient(circle at 12% -10%, rgba(124, 92, 252, 0.22), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(80, 244, 254, 0.14), transparent 42%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent-blue);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h1 em {
  font-style: normal;
  color: var(--gold);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Mono", ui-monospace, monospace;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--gold-gradient);
  color: #241705;
  box-shadow: 0 12px 30px -8px rgba(255, 199, 95, 0.55);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--accent-cyan);
  background: rgba(80, 244, 254, 0.06);
}
.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(6, 8, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
  gap: 1rem;
}
.logo img {
  height: 34px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}
.primary-nav ul {
  display: flex;
  gap: 1.75rem;
}
.primary-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.primary-nav a:hover {
  color: var(--accent-cyan);
}
.nav-actions {
  display: flex;
  gap: 0.75rem;
}

/* ===== Hero ===== */
.hero {
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stars span {
  position: absolute;
  width: var(--w, 1px);
  height: var(--w, 1px);
  background: #fff;
  border-radius: 50%;
  opacity: 0.7;
  animation: tw var(--d, 4s) ease-in-out infinite;
}
@keyframes tw {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .stars span { animation: none; opacity: 0.5; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-content p.lead {
  font-size: 1.15rem;
  max-width: 48ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--gold);
}
.hero-stats div span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-visual {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.hero-visual .visual-title {
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hero-visual .badge {
  display: inline-block;
  background: var(--accent-gradient);
  color: #041022;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.hero-visual ul {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}
.hero-visual li {
  display: flex;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.hero-visual li::before {
  content: "\2726";
  color: var(--gold);
  font-weight: 700;
}

/* ===== Cards / grids ===== */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
}
.card h3 {
  color: #fff;
}
.card .tag {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--aurora);
  border: 1px solid var(--aurora);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}

/* Promo day cards */
.promo-card {
  position: relative;
  overflow: hidden;
}
.promo-card .day {
  font-family: "Space Mono", monospace;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.promo-card h3 {
  margin-top: 0.35rem;
}
.promo-card p {
  font-size: 0.92rem;
}

/* Feature list (sportsbook) */
.feature-card p {
  font-size: 0.92rem;
}

/* Early payout table */
.ep-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.ep-table th, .ep-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.ep-table th {
  background: var(--panel);
  color: var(--gold);
  font-family: "Space Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ep-table tr:last-child td {
  border-bottom: none;
}
.ep-table td {
  color: var(--text-muted);
}
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Payment badges */
.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.payment-badges span {
  font-family: "Space Mono", monospace;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}
.steps li {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #241705;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

/* Responsible gaming list */
.rg-list {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
}
.rg-list li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
}
.rg-list li::before {
  content: "\2726";
  color: var(--accent-cyan);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-family: "Inter", sans-serif;
}
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item.is-open .faq-question::after {
  content: "\2212";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.4rem;
}
.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.2rem;
}
.faq-answer p {
  margin: 0;
  font-size: 0.94rem;
}

/* CTA band */
.cta-band {
  background: var(--accent-gradient);
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  color: #041022;
}
.cta-band h2 {
  color: #041022;
}
.cta-band p {
  color: #0a1636;
  max-width: 60ch;
  margin-inline: auto;
}
.cta-band .btn-primary {
  background: #041022;
  color: #fff;
  box-shadow: none;
}
.cta-band .btn-ghost {
  border-color: rgba(4, 16, 34, 0.35);
  color: #041022;
}
.cta-band .disclaimer {
  font-size: 0.8rem;
  margin-top: 1.25rem;
  color: #0a1636;
}

/* Trust badges strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.trust-strip span {
  font-family: "Space Mono", monospace;
  border: 1px solid var(--line);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--void-deep);
  border-top: 1px solid var(--line);
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}
.footer-brand img {
  height: 32px;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-heading {
  font-family: "Space Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.footer-nav ul {
  display: grid;
  gap: 0.5rem;
}
.footer-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer-nav a:hover {
  color: var(--text);
}
.footer-legal {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-legal p {
  color: inherit;
  font-size: inherit;
  margin: 0 0 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }
  .primary-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--void);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
  }
  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }
  .primary-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav-actions {
    margin-top: 1.5rem;
    flex-direction: column;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .rg-list {
    grid-template-columns: 1fr;
  }
  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 1rem;
  }
  .hero-visual {
    padding: 1.5rem;
  }
}
