/* ============================================================
   CSS CUSTOM PROPERTIES — PLUM / MINT PALETTE
   ============================================================ */
:root {
  --base:    #31183C;
  --deep:    #1D0E24;
  --accent:  #3FD9A4;
  --accent2: #E06BC0;
  --surface: #F6F3F7;
  --ink:     #1F1226;
  --muted:   #6E5D77;

  --radius:  8px;
  --max-w:   1040px;

  --font-head: Tahoma, 'Segoe UI', Verdana, sans-serif;
  --font-body: Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  background: var(--surface);
  color: var(--ink);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--base);
}

h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
h2 { font-size: 1.75rem; margin-bottom: 0.65rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

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

a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover { color: var(--accent2); }
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

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

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

/* ============================================================
   UTILITY STRIP
   ============================================================ */
.utility-strip {
  background: var(--deep);
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem 1rem;
  padding: 0.35rem 1rem;
}

.age-notice {
  color: var(--accent2);
  font-weight: bold;
  letter-spacing: 0.03em;
}

.utility-right {
  color: var(--muted);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--base);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(29,14,36,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* ---- WORDMARK ---- */
.wordmark {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
  user-select: none;
  flex-shrink: 0;
}

.wm-jackpot {
  color: var(--accent);
  text-transform: lowercase;
}

.wm-casino {
  color: #fff;
  text-transform: lowercase;
}

.wm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.35rem;
  color: var(--accent2);
  font-size: 0.8rem;
  line-height: 1;
}

.wordmark--footer .wm-jackpot { color: var(--accent); }
.wordmark--footer .wm-casino  { color: var(--surface); }

/* ---- NAV ---- */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.1rem;
  flex: 1 1 auto;
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.main-nav a:hover {
  color: var(--accent);
  background: rgba(63,217,164,0.1);
}

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

/* ---- NAV BUTTON ---- */
.btn-nav {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  background: linear-gradient(160deg, var(--accent) 0%, #29c48d 55%, #1ea877 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 8px rgba(63,217,164,0.35);
  color: var(--deep);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-nav:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 14px rgba(63,217,164,0.45);
}

.btn-nav:active { transform: translateY(0); }

.btn-nav:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* ============================================================
   PRIMARY BUTTON
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 2.2rem;
  cursor: pointer;
  background: linear-gradient(160deg, var(--accent) 0%, #29c48d 55%, #1ea877 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 18px rgba(63,217,164,0.4);
  color: var(--deep);
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-primary:hover {
  filter: brightness(1.09);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 6px 22px rgba(63,217,164,0.5);
}

.btn-primary:active { transform: translateY(0); }

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

/* ============================================================
   BONUS BANNER
   ============================================================ */
.bonus-banner {
  background: linear-gradient(135deg, var(--deep) 0%, var(--base) 60%, #4a1e5e 100%);
  text-align: center;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

/* decorative side glow */
.bonus-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(63,217,164,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

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

.banner-headline {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.banner-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.2rem;
}

.accent-text {
  color: var(--accent);
}

.banner-fine {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  max-width: 620px;
  line-height: 1.5;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.main-content {
  padding: 2.5rem 0;
}

.main-content--lower {
  padding-top: 2.5rem;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  margin-bottom: 3rem;
}

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

/* ============================================================
   SECTIONS — generic spacing
   ============================================================ */
.quick-facts,
.bonuses-section,
.games-section,
.payments-section,
.mobile-section,
.faq-section,
.cards-section,
.closing-section {
  margin-bottom: 3rem;
}

/* ============================================================
   TABLE SCROLL WRAPPER
   ============================================================ */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
}

/* ============================================================
   TABLES — no zebra, thin horizontal rules, accent header text
   ============================================================ */
table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

thead tr {
  border-bottom: 2px solid var(--accent);
}

thead th {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--deep);
  white-space: nowrap;
}

tbody tr {
  border-bottom: 1px solid rgba(110,93,119,0.2);
}

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

tbody td {
  padding: 0.7rem 1rem;
  color: var(--ink);
  vertical-align: top;
}

.fact-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--base);
  white-space: nowrap;
  width: 35%;
}

/* facts table — no thead so the label col acts as header */
.facts-table {
  min-width: 360px;
}

/* ============================================================
   FAQ ACCORDION — CSS-only with <details>/<summary>
   ============================================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.faq-item {
  border: 1px solid rgba(110,93,119,0.3);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 4px 16px rgba(49,24,60,0.1);
}

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

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question:hover {
  background: rgba(63,217,164,0.07);
  color: var(--deep);
}

.faq-question:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

/* rotating chevron drawn in CSS */
.faq-chevron {
  display: inline-block;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  transition: transform 0.25s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 0.55rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.faq-chevron::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}

.faq-chevron::after {
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
}

details[open] .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

details[open] .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.7;
  border-top: 1px solid rgba(110,93,119,0.15);
}

.faq-answer p:first-child { margin-top: 0.75rem; }

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

.card {
  background: #fff;
  border: 1px solid rgba(110,93,119,0.25);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(49,24,60,0.12);
  transform: translateY(-2px);
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--base);
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(110,93,119,0.18);
}

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

/* ============================================================
   CLOSING / RESPONSIBLE NOTE
   ============================================================ */
.responsible-note {
  background: rgba(49,24,60,0.06);
  border-left: 4px solid var(--accent2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  color: var(--base);
  margin-top: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
}

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

.footer-brand .wordmark {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

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

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

.footer-links nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links nav a:hover { color: var(--accent); }

.footer-links nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer-legal {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-legal p {
  margin-bottom: 0.5rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent2);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 0.85rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

.copyright {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

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

  .bonus-banner {
    padding: 3.5rem 1.5rem;
  }

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

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

  .footer-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .footer-legal {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .main-nav {
    gap: 0.25rem 0.25rem;
  }
}

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

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

  .header-inner {
    flex-wrap: nowrap;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .wordmark {
    font-size: 1.7rem;
    margin-right: 0.5rem;
  }

  .main-nav {
    gap: 0.15rem 0.35rem;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.92rem;
    padding: 0.4rem 0.75rem;
  }

  .bonus-banner {
    padding: 4.5rem 2rem;
  }

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

  .banner-sub {
    font-size: 1.15rem;
  }

  .main-content {
    padding: 3.5rem 0;
  }

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

  .footer-brand { grid-column: 1; grid-row: 1; }
  .footer-links { grid-column: 2; grid-row: 1; justify-content: flex-start; }
  .footer-legal { grid-column: 3; grid-row: 1; }

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

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

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

  .intro-lead {
    font-size: 1.15rem;
  }
}