/* ============================================================
   YEP Casino HU – styles.css
   Domain: yep-hu-casino.eu | Language: HU | Geo: HU
   Color palette:
     --yellow   : #FFD600  (primary CTA, highlights)
     --yellow-dk : #C9A800 (hover states)
     --green    : #00C853  (success, badges, accents)
     --green-dk : #00963E  (hover states)
     --dark-bg  : #0A0B0E  (page background)
     --card-bg  : #14161C  (card surfaces)
     --card-2   : #1C1F28  (alt card / table rows)
     --border   : rgba(255,214,0,.18)
     --text     : #F0F0F0
     --muted    : #9AA0B0
   ============================================================ */

/* ── 1. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --yellow:    #FFD600;
  --yellow-dk: #C9A800;
  --green:     #00C853;
  --green-dk:  #00963E;
  --dark-bg:   #0A0B0E;
  --card-bg:   #14161C;
  --card-2:    #1C1F28;
  --border:    rgba(255,214,0,.18);
  --text:      #F0F0F0;
  --muted:     #9AA0B0;
  --radius:    12px;
  --shadow:    0 4px 32px rgba(0,0,0,.55);
  --transition: .25s ease;
  --container: 1160px;
}

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

body {
  background-color: var(--dark-bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--yellow); text-decoration: none; }
a:hover { color: var(--yellow-dk); }

/* ── 2. UTILITY CLASSES ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--alt {
  background: var(--card-bg);
}

/* Section heading with decorative underline */
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__title span {
  color: var(--green);
}

.section__lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 780px;
  margin-bottom: 40px;
}

/* Yellow/green accent bar under headings */
.section__title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
  border-radius: 2px;
  margin-top: 10px;
}

/* Badge pills used in tables / cards */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.badge--yellow {
  background: rgba(255,214,0,.15);
  color: var(--yellow);
  border: 1px solid rgba(255,214,0,.4);
}

.badge--green {
  background: rgba(0,200,83,.15);
  color: var(--green);
  border: 1px solid rgba(0,200,83,.4);
}

/* ── 3. BUTTONS ───────────────────────────────────────────── */
/* Primary CTA – yellow */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  border: none;
  letter-spacing: .04em;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, #FFD600 0%, #FFA000 100%);
  color: #0A0B0E;
  box-shadow: 0 4px 24px rgba(255,214,0,.45);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255,214,0,.65);
  color: #0A0B0E;
}

/* Secondary CTA – green */
.btn--green {
  background: linear-gradient(135deg, #00C853 0%, #00963E 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0,200,83,.4);
}

.btn--green:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,200,83,.6);
  color: #fff;
}

/* Outline version */
.btn--outline {
  background: transparent;
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.btn--outline:hover {
  background: var(--yellow);
  color: #0A0B0E;
}

.btn--sm {
  padding: 10px 22px;
  font-size: .88rem;
}

/* Pulsing animation for hero CTA */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 24px rgba(255,214,0,.45); }
  50%       { box-shadow: 0 4px 48px rgba(255,214,0,.9); }
}

.btn--pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* ── 4. STICKY HEADER ─────────────────────────────────────── */
/* Header background transitions from transparent to solid on scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

/* Class toggled by JS when user scrolls down */
.site-header.scrolled {
  background: rgba(10,11,14,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.6);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo image constrained to reasonable header size */
.header__logo img {
  height: 40px;
  width: auto;
}

/* Desktop navigation links */
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header__nav a {
  color: var(--text);
  font-size: .93rem;
  font-weight: 500;
  transition: color var(--transition);
}

.header__nav a:hover {
  color: var(--yellow);
}

/* Hamburger – hidden on desktop */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav drawer */
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10,11,14,.97);
  backdrop-filter: blur(16px);
  padding: 24px 20px;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  z-index: 999;
  border-top: 1px solid var(--border);
  /* Show animation when open */
  transform: translateY(-8px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.header__mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.header__mobile-nav a {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* ── 5. BREADCRUMBS ───────────────────────────────────────── */
/* Sits just below hero, provides page context */
.breadcrumbs {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  max-width: var(--container);
  margin: 0 auto;
  font-size: .83rem;
  color: var(--muted);
}

.breadcrumbs__list li::before {
  content: '/';
  margin-right: 6px;
  color: rgba(255,255,255,.2);
}

.breadcrumbs__list li:first-child::before {
  display: none;
}

.breadcrumbs__list a {
  color: var(--muted);
  transition: color var(--transition);
}

.breadcrumbs__list a:hover { color: var(--yellow); }

.breadcrumbs__list .active {
  color: var(--yellow);
  font-weight: 600;
}

/* ── 6. HERO / BANNER SECTION ────────────────────────────── */
/* Full-viewport hero with desktop banner image */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../img/banner/banner.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  /* Space for fixed header */
  padding-top: 68px;
}

/* Mobile version switches to portrait banner */
@media (max-width: 768px) {
  .hero {
    background-image: url('../img/banner/banner-mobile.png');
    background-position: center center;
    min-height: 100svh;
  }
}

/* Dark gradient scrim so CTA overlay is always readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,11,14,.35) 0%,
    rgba(10,11,14,.55) 60%,
    rgba(10,11,14,.85) 100%
  );
  pointer-events: none;
}

/* Semi-transparent CTA box – centred on both desktop & mobile */
.hero__cta-box {
  position: relative;           /* above ::before overlay */
  background: rgba(10,11,14,.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,214,0,.35);
  border-radius: 20px;
  padding: 44px 52px;
  text-align: center;
  max-width: 620px;
  width: 100%;
  margin: 0 20px;
  box-shadow: 0 8px 64px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
}

.hero__eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: #0A0B0E;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero__title .highlight {
  color: var(--yellow);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Stats row beneath CTA buttons */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

.hero__stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
}

.hero__stat span {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* ── 7. INTRO / WHY YEP SECTION ──────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* Feature card with left-border accent */
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 8px;
}

.why-card__text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── 8. RESPONSIVE TABLE WRAPPER ─────────────────────────── */
/* All data tables get this wrapper for mobile scroll */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

/* Scroll hint arrow on mobile – purely decorative */
.table-wrap::after {
  content: '← scroll →';
  display: none;
  text-align: center;
  font-size: .75rem;
  color: var(--muted);
  padding: 6px;
  letter-spacing: .06em;
}

@media (max-width: 640px) {
  .table-wrap::after { display: block; }
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  min-width: 500px;   /* Ensures horizontal scroll on narrow viewports */
}

thead th {
  background: linear-gradient(135deg, rgba(255,214,0,.18), rgba(0,200,83,.08));
  color: var(--yellow);
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background var(--transition);
}

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

tbody tr:hover {
  background: rgba(255,214,0,.04);
}

tbody td {
  padding: 14px 16px;
  vertical-align: middle;
  color: var(--text);
}

/* Highlight a full row as special */
tbody tr.row--highlight td {
  background: rgba(0,200,83,.07);
  color: var(--green);
  font-weight: 600;
}

/* Large % value in table */
.table-pct {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
}

/* ── 9. BONUS CARDS (welcome & no-deposit) ────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(255,214,0,.18);
}

/* Decorative corner glow */
.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,214,0,.18) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-card__step {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.bonus-card__amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-card__sub {
  font-size: .88rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.bonus-card__details {
  list-style: none;
  font-size: .88rem;
  color: var(--muted);
}

.bonus-card__details li {
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.bonus-card__details li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── 10. PROMO CODE BOX ───────────────────────────────────── */
.promo-box {
  background: linear-gradient(135deg, rgba(255,214,0,.08), rgba(0,200,83,.06));
  border: 2px solid var(--yellow);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.promo-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD600' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.promo-box__label {
  font-size: .83rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}

.promo-box__code {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.promo-code-display {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: .15em;
  font-family: 'Courier New', monospace;
  background: rgba(255,214,0,.1);
  border: 2px dashed rgba(255,214,0,.5);
  padding: 10px 28px;
  border-radius: 10px;
}

/* Copy button */
.btn--copy {
  background: rgba(255,214,0,.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: .85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--copy:hover, .btn--copy.copied {
  background: var(--yellow);
  color: #0A0B0E;
}

/* GAMETIME promo conditions table */
.promo-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  width: 55%;
}

.promo-table td:last-child {
  color: var(--text);
  font-weight: 700;
}

/* ── 11. NO-DEPOSIT BONUS TILES ──────────────────────────── */
.nodep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.nodep-tile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.nodep-tile:hover {
  transform: translateY(-4px);
  border-color: var(--green);
}

.nodep-tile__amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.nodep-tile__label {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 6px 0 12px;
}

.nodep-tile__game {
  font-size: .88rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 6px;
}

.nodep-tile__provider {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.nodep-tile--feature {
  border-color: var(--yellow);
  background: linear-gradient(135deg, rgba(255,214,0,.07), var(--card-bg));
}

/* ── 12. SLOTS SHOWCASE GRID ─────────────────────────────── */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.slot-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--card-bg);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.slot-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(255,214,0,.3);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay title appears on hover */
.slot-card__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,11,14,.92) 0%, transparent 100%);
  color: var(--text);
  font-size: .78rem;
  font-weight: 600;
  padding: 16px 10px 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--transition), transform var(--transition);
}

.slot-card:hover .slot-card__name {
  opacity: 1;
  transform: translateY(0);
}

/* ── 13. RETURNING PLAYERS GRID ──────────────────────────── */
.returning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.returning-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), border-color var(--transition);
}

.returning-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,200,83,.4);
}

.returning-card__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,214,0,.08);
  border-radius: 12px;
}

.returning-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 6px;
}

.returning-card__text {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── 14. PAYMENT METHODS ─────────────────────────────────── */
.payments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
}

.payment-item {
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 90px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}

.payment-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,214,0,.25);
}

.payment-item img {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.payments-note {
  margin-top: 20px;
  font-size: .88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.payments-note::before {
  content: 'ℹ';
  color: var(--yellow);
  font-size: 1rem;
}

/* ── 15. HOW-TO STEPS ────────────────────────────────────── */
.steps-list {
  counter-reset: step;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.steps-list li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
}

.steps-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #FFA000);
  color: #0A0B0E;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-list li strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 4px;
}

.steps-list li span {
  font-size: .88rem;
  color: var(--muted);
}

/* ── 16. FAQ ACCORDION ────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(255,214,0,.5);
}

/* Clickable question row */
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  user-select: none;
  list-style: none;
  transition: color var(--transition);
}

.faq-item__question:hover,
.faq-item.open .faq-item__question {
  color: var(--yellow);
}

/* +/– chevron */
.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--yellow);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-item__question::after {
  content: '−';
  transform: rotate(0deg);
}

/* Answer panel – height animated via JS max-height trick */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 22px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open .faq-item__answer {
  max-height: 800px;
  padding: 0 22px 20px;
}

/* ── 17. FINAL CTA SECTION ───────────────────────────────── */
.final-cta {
  background: linear-gradient(135deg, rgba(255,214,0,.1), rgba(0,200,83,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Background decoration circles */
.final-cta::before,
.final-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.final-cta::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,214,0,.1) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.final-cta::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0,200,83,.08) 0%, transparent 70%);
  bottom: -120px;
  right: -80px;
}

.final-cta__title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}

.final-cta__title .highlight { color: var(--yellow); }

.final-cta__text {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
}

/* ── 18. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: #070809;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 20px 32px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer__logo img {
  height: 36px;
  margin-bottom: 14px;
}

.footer__tagline {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer__heading {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: .88rem;
  color: var(--muted);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--yellow); }

/* Responsible gambling badge */
.footer__responsible {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer__responsible strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: .82rem;
}

.footer__bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer__bottom a {
  color: rgba(255,255,255,.35);
}

.footer__bottom a:hover {
  color: var(--yellow);
}

/* ── 19. MOBILE STICKY BOTTOM BAR ────────────────────────── */
/* Fixed CTA strip shown only on mobile – "pin the screen" requirement */
.mobile-sticky-bar {
  display: none;         /* hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,11,14,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}

.mobile-sticky-bar .btn {
  flex: 1;
  font-size: .88rem;
  padding: 12px 14px;
}

/* ── 20. SCROLL-REVEAL ANIMATION ─────────────────────────── */
/* Elements start invisible; JS adds .visible class on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

[data-reveal-group].visible > *:nth-child(1) { transition-delay: .05s; }
[data-reveal-group].visible > *:nth-child(2) { transition-delay: .12s; }
[data-reveal-group].visible > *:nth-child(3) { transition-delay: .19s; }
[data-reveal-group].visible > *:nth-child(4) { transition-delay: .26s; }
[data-reveal-group].visible > *:nth-child(5) { transition-delay: .33s; }
[data-reveal-group].visible > *:nth-child(6) { transition-delay: .40s; }

[data-reveal-group].visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── 21. NOTICE / WARNING BOX ────────────────────────────── */
.notice {
  background: rgba(255,214,0,.06);
  border-left: 4px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 24px 0;
}

.notice strong { color: var(--yellow); }

.notice--green {
  background: rgba(0,200,83,.06);
  border-left-color: var(--green);
}

.notice--green strong { color: var(--green); }

/* ── 22. VIP LEVELS STRIP ────────────────────────────────── */
.vip-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}

.vip-level {
  flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: center;
  min-width: 100px;
  transition: border-color var(--transition), transform var(--transition);
}

.vip-level:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.vip-level__num {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vip-level__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 4px 0;
}

.vip-level__perk {
  font-size: .72rem;
  color: var(--green);
  font-weight: 600;
}

/* ── 23. RESPONSIVE BREAKPOINTS ──────────────────────────── */

/* --- Tablet (≤ 900px) --- */
@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .header__nav { display: none; }
  .header__burger { display: flex; }

  .section { padding: 52px 0; }

  /* Hero CTA box becomes full-width */
  .hero__cta-box {
    padding: 32px 24px;
    margin: 0 16px;
  }

  .hero__stats {
    gap: 20px;
  }

  /* Stack bonus grid to single column on small screens */
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .promo-box {
    padding: 28px 20px;
  }

  /* Footer single column */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Show mobile sticky bar */
  .mobile-sticky-bar {
    display: flex;
  }

  /* Add padding so sticky bar doesn't overlap content */
  body {
    padding-bottom: 74px;
  }

  .nodep-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

  .slots-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .promo-code-display {
    font-size: 1.6rem;
    padding: 8px 18px;
  }

  .section__title {
    font-size: 1.5rem;
  }
}

/* --- Tiny (≤ 360px) --- */
@media (max-width: 360px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 24. CUSTOM SCROLLBAR (WebKit) ───────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb {
  background: rgba(255,214,0,.35);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,214,0,.65); }

/* ── 25. ACCESSIBILITY – FOCUS STYLES ────────────────────── */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to main content link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--yellow);
  color: #0A0B0E;
  padding: 10px 20px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

/* ── 26. SELECTION COLOUR ────────────────────────────────── */
::selection {
  background: rgba(255,214,0,.3);
  color: #fff;
}
