/* =========================================================
   CSS Custom Properties
   ========================================================= */
:root {
  --base:    #1F2933;
  --deep:    #121A21;
  --accent:  #3DA9FC;
  --accent2: #F2B705;
  --surface: #F2F5F7;
  --ink:     #161E26;
  --muted:   #5C6B7A;

  --radius:  14px;
  --max-w:   1120px;

  --font-heading: 'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
  --font-body:    system-ui, -apple-system, Roboto, Arial, sans-serif;
}

/* =========================================================
   Reset / Base
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--ink);
  line-height: 1.65;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: var(--accent2);
}

a:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--base);
  line-height: 1.25;
}

h1 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: var(--base);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.25rem;
}

/* =========================================================
   Container
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* =========================================================
   Section padding
   ========================================================= */
.section-pad {
  padding-block: 2.5rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--base);
  border-bottom: 2px solid var(--deep);
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

/* ---- Wordmark ---- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}

.wordmark:hover {
  text-decoration: none;
}

.wordmark-n {
  color: #ffffff;
  background: transparent;
}

.wordmark-88 {
  color: var(--accent2);
  background: transparent;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
}

/* ---- Nav ---- */
.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e8edf2;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.main-nav a:hover {
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

.main-nav a:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

/* =========================================================
   BONUS BANNER
   ========================================================= */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, #1a2e45 60%, var(--base) 100%);
  padding-block: 2.75rem 2.25rem;
  border-bottom: 3px solid var(--accent2);
  border-top: 3px solid var(--accent2);
}

.banner-top {
  border-top: none;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.banner-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0;
}

.banner-headline {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0;
}

.banner-headline .hl {
  color: var(--accent2);
  display: inline;
}

.banner-sub {
  font-size: 1rem;
  color: #b8cfe0;
  max-width: 580px;
  margin-bottom: 0;
}

.banner-fine {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 2.2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
  box-shadow: 0 3px 14px rgba(61,169,252,0.35);
  margin-block: 0.25rem;
}

.btn-cta:hover {
  background-color: #1e8fe0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61,169,252,0.45);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(61,169,252,0.25);
}

.btn-cta:focus-visible {
  outline: 3px solid var(--accent2);
  outline-offset: 3px;
}

/* =========================================================
   INTRO SECTION
   ========================================================= */
.intro h1 {
  color: var(--base);
  position: relative;
  display: inline-block;
}

.intro h1::after {
  content: '';
  display: block;
  height: 4px;
  width: 3.5rem;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.4rem;
}

.intro h2 {
  margin-top: 1.75rem;
  color: var(--base);
  position: relative;
  padding-left: 1rem;
}

.intro h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--accent2);
  border-radius: 2px;
}

.intro h3 {
  margin-top: 1.5rem;
  color: var(--accent);
}

/* =========================================================
   CARDS
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: #ffffff;
  border: 1.5px solid var(--muted);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.18s;
}

.card:hover {
  border-color: var(--accent);
}

.card-title {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--ink);
}

/* =========================================================
   TABLES
   ========================================================= */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  margin-block: 1.25rem;
  border: 1.5px solid var(--muted);
}

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 0.92rem;
}

.data-table thead tr {
  background-color: var(--base);
}

.data-table thead th {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.85rem 1rem;
  text-align: left;
  white-space: nowrap;
  border-bottom: 2px solid var(--accent);
}

.data-table tbody tr {
  border-bottom: 1px solid #d6dde5;
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table tbody td {
  padding: 0.8rem 1rem;
  color: var(--ink);
  vertical-align: top;
}

/* =========================================================
   SECTION HEADINGS — generic accent line
   ========================================================= */
.bonuses-section h2,
.games-section h2,
.payments-section h2,
.support-section h2,
.cards-section h2,
.faq-section h2 {
  position: relative;
  padding-left: 1rem;
  color: var(--base);
}

.bonuses-section h2::before,
.games-section h2::before,
.payments-section h2::before,
.support-section h2::before,
.cards-section h2::before,
.faq-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background: var(--accent2);
  border-radius: 2px;
}

.bonuses-section h3,
.games-section h3,
.payments-section h3,
.support-section h3 {
  color: var(--accent);
  margin-top: 1.5rem;
}

/* =========================================================
   FAQ ACCORDION — CSS-only checkbox technique
   ========================================================= */
.faq-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  border: 1.5px solid var(--muted);
  border-radius: var(--radius);
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.18s;
}

.faq-item:has(.faq-toggle:checked) {
  border-color: var(--accent);
}

/* Hide the actual checkbox */
.faq-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--base);
  user-select: none;
  transition: background 0.15s, color 0.15s;
}

.faq-question:hover {
  background-color: #edf3f8;
  color: var(--accent);
}

.faq-toggle:focus-visible + .faq-question {
  outline: 2px solid var(--accent2);
  outline-offset: -2px;
}

/* Plus / Minus icon drawn in pure CSS */
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: block;
}

/* Horizontal bar (always visible) */
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: background 0.15s;
}

/* Vertical bar (hidden when open) */
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2.5px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.2s, opacity 0.2s, background 0.15s;
}

/* Rotate/hide vertical bar when checked (= minus sign) */
.faq-toggle:checked ~ .faq-question .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-toggle:checked ~ .faq-question .faq-icon::before,
.faq-toggle:checked ~ .faq-question .faq-icon::after {
  background: var(--accent2);
}

/* Answer panel */
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-toggle:checked ~ .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--deep);
  border-top: 3px solid var(--base);
  padding-block: 2.5rem 1.75rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-brand .wordmark {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  display: inline-flex;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
}

.footer-links a {
  color: #b8cfe0;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.footer-links a:hover {
  color: #fff;
  background: var(--base);
  text-decoration: none;
}

.footer-links a:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.footer-age {
  color: var(--accent2) !important;
  font-weight: 700;
}

.footer-copy {
  color: #4a5a69 !important;
  font-size: 0.78rem !important;
  margin-top: 0.25rem;
}

/* =========================================================
   ALTERNATING SECTION BACKGROUNDS
   ========================================================= */
.intro           { background-color: var(--surface); }
.bonuses-section { background-color: #e9eff5; }
.games-section   { background-color: var(--surface); }
.payments-section{ background-color: #e9eff5; }
.support-section { background-color: var(--surface); }
.cards-section   { background-color: #e9eff5; }
.faq-section     { background-color: var(--surface); }

/* =========================================================
   BREAKPOINT — 640px
   ========================================================= */
@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }

  .section-pad {
    padding-block: 3.25rem;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }

  .banner-headline {
    font-size: 2.1rem;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-disclaimer {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   BREAKPOINT — 1024px
   ========================================================= */
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }

  /* Reveal horizontal nav */
  .main-nav {
    display: flex;
  }

  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .banner-headline {
    font-size: 2.5rem;
  }

  .section-pad {
    padding-block: 4rem;
  }

  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }

  .footer-disclaimer {
    grid-column: 1 / -1;
  }

  .data-table {
    font-size: 0.97rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 1.1rem 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.98rem;
  }
}