/* ============================================================
   style.css — Yep Casino Polska (yep-casino-play.pl)
   Redesign 2026 — "Neon Royale" theme
   Language: PL | Geo: Poland
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
============================================================ */
:root {
  /* --- Base surfaces (deep violet-black) --- */
  --c-bg:           #0a0713;
  --c-bg-2:         #130d26;
  --c-bg-3:         #1b1238;
  --c-border:       #2a2050;
  --c-border-glow:  rgba(255,201,75,.30);

  /* --- Brand gold --- */
  --c-gold:         #ffc94b;
  --c-gold-light:   #ffe08a;
  --c-gold-dark:    #d99a1f;
  --c-gold-glow:    rgba(255,201,75,.32);

  /* --- Neon accents --- */
  --c-violet:       #a855f7;
  --c-violet-light: #c084fc;
  --c-cyan:         #22d3ee;

  /* --- CTA (neon magenta-red) --- */
  --c-red:          #ff3d6e;
  --c-red-light:    #ff6b90;
  --c-red-glow:     rgba(255,61,110,.38);

  /* --- Text --- */
  --c-text:         #e6e2f5;
  --c-text-muted:   #9a91c0;
  --c-white:        #ffffff;

  /* --- Typography --- */
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* --- Spacing --- */
  --gap-xs: 8px;
  --gap-sm: 16px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;

  /* --- Layout --- */
  --max-w:        1200px;
  --header-h:     72px;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  999px;

  /* --- Shadows --- */
  --shadow-card:  0 14px 44px rgba(0,0,0,.55);
  --shadow-gold:  0 0 34px rgba(255,201,75,.24);
  --shadow-violet:0 0 34px rgba(168,85,247,.28);

  /* --- Gradients --- */
  --grad-gold:   linear-gradient(135deg, #ffe08a, #ffc94b 45%, #d99a1f);
  --grad-cta:    linear-gradient(135deg, #ff6b90, #ff3d6e 55%, #b21e6b);
  --grad-neon:   linear-gradient(135deg, var(--c-violet), var(--c-cyan));

  /* --- Transitions --- */
  --ease: 0.28s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.75;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}
/* Ambient gradient mesh behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 12% -8%, rgba(168,85,247,.16), transparent 60%),
    radial-gradient(55vw 55vw at 100% 0%, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(70vw 70vw at 50% 120%, rgba(255,201,75,.10), transparent 60%);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--c-gold); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--c-gold-light); }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 6px; }
strong { color: var(--c-white); font-weight: 600; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-white);
  letter-spacing: -.5px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--c-white);
  margin-bottom: var(--gap-sm);
  padding-bottom: 16px;
  position: relative;
  letter-spacing: -.3px;
}
h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 64px; height: 4px;
  background: var(--grad-gold);
  border-radius: 3px;
  box-shadow: 0 0 16px var(--c-gold-glow);
}
h3 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 12px;
}
p { margin-bottom: 1rem; }

/* ============================================================
   LAYOUT
============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section      { padding: 72px 0; }
.section--alt { background: linear-gradient(180deg, var(--c-bg-2), rgba(19,13,38,.4)); }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--gap-lg);
  align-items: start;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
}
/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}
.btn:hover::after { left: 130%; }

.btn--gold {
  background: var(--grad-gold);
  color: #1a0f00;
  box-shadow: 0 6px 26px var(--c-gold-glow);
}
.btn--gold:hover {
  box-shadow: 0 8px 34px rgba(255,201,75,.55);
  transform: translateY(-2px);
  color: #1a0f00;
}
.btn--red {
  background: var(--grad-cta);
  color: var(--c-white);
  box-shadow: 0 6px 26px var(--c-red-glow);
}
.btn--red:hover {
  box-shadow: 0 8px 36px rgba(255,61,110,.6);
  transform: translateY(-2px);
  color: var(--c-white);
}
.btn--ghost {
  background: rgba(255,255,255,.02);
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn--ghost:hover {
  background: var(--c-gold);
  color: #1a0f00;
  transform: translateY(-2px);
}
.btn--lg  { padding: 18px 46px; font-size: .95rem; }
.btn--sm  { padding: 10px 22px; font-size: .8rem; }
.btn--full { width: 100%; }

/* ============================================================
   STICKY HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(10,7,19,.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--c-border-glow);
  box-shadow: 0 2px 30px rgba(0,0,0,.55);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--gap-sm);
}
.header-logo img { height: 40px; width: auto; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.header-nav a {
  color: var(--c-text-muted);
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
  transition: all var(--ease);
  letter-spacing: .3px;
}
.header-nav a:hover,
.header-nav a.active {
  color: var(--c-gold);
  background: rgba(255,201,75,.10);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(10,7,19,.98);
  backdrop-filter: blur(12px);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--gap-md);
  padding: 40px 20px;
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-text);
  padding: 15px 28px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: all var(--ease);
}
.mobile-nav a:hover { color: var(--c-gold); border-color: var(--c-gold); background: rgba(255,201,75,.08); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
  max-height: 92vh;
}
.hero-img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 380px;
  max-height: 92vh;
}
/* Dark gradient scrim over banner for legibility */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,7,19,.35), rgba(10,7,19,.72));
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(15,10,32,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,201,75,.38);
  border-radius: var(--radius-lg);
  padding: 40px 46px;
  text-align: center;
  width: 92%;
  max-width: 660px;
  box-shadow: 0 20px 70px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero-badge {
  display: inline-block;
  background: var(--grad-neon);
  color: #0a0713;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  box-shadow: 0 4px 18px rgba(168,85,247,.4);
}
.hero-title {
  font-size: clamp(1.35rem, 3.5vw, 2.15rem);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 6px;
}
.hero-amount {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 26px rgba(255,201,75,.45));
  margin-bottom: 12px;
  line-height: 1.1;
}
.hero-sub {
  font-size: .92rem;
  color: #c6c0e0;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   STATS BAR (new) — quick facts under hero
============================================================ */
.stats-bar {
  background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg));
  border-bottom: 1px solid var(--c-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid var(--c-border);
}
.stat {
  background: var(--c-bg-2);
  padding: 22px 16px;
  text-align: center;
  transition: background var(--ease);
}
.stat:hover { background: var(--c-bg-3); }
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1.1;
}
.stat__label {
  font-size: .74rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 6px;
}

/* ============================================================
   BREADCRUMBS
============================================================ */
.breadcrumbs {
  background: rgba(19,13,38,.6);
  border-bottom: 1px solid var(--c-border);
  padding: 12px 0;
  font-size: .82rem;
}
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; align-items: center;
  list-style: none; padding: 0; margin: 0; gap: 0;
}
.breadcrumbs li { display: flex; align-items: center; margin: 0; }
.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin: 0 8px;
  color: var(--c-text-muted);
  font-size: 1rem;
}
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumbs li[aria-current="page"] { color: var(--c-gold); font-weight: 600; }

/* ============================================================
   SECTION HEADER
============================================================ */
.sec-head { margin-bottom: 36px; }
.sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--c-cyan);
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.25);
  padding: 5px 15px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* ============================================================
   INFO TABLE
============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-card);
  background: var(--c-bg-2);
}
.tbl { width: 100%; border-collapse: collapse; min-width: 280px; font-size: .9rem; }
.tbl thead th {
  background: rgba(255,201,75,.10);
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .5px;
  padding: 15px 18px;
  text-align: left;
  border-bottom: 2px solid rgba(255,201,75,.22);
}
.tbl tbody tr { background: transparent; border-bottom: 1px solid var(--c-border); transition: background var(--ease); }
.tbl tbody tr:last-child { border-bottom: none; }
.tbl tbody tr:hover { background: rgba(168,85,247,.06); }
.tbl tbody td { padding: 14px 18px; vertical-align: top; }
.tbl tbody td:first-child { color: var(--c-text-muted); font-weight: 500; width: 42%; }
.tbl tbody td:last-child  { color: var(--c-white); font-weight: 500; }

/* ============================================================
   BONUS TABLE
============================================================ */
.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
  margin: 24px 0;
  background: var(--c-bg-2);
}
.btbl { width: 100%; border-collapse: collapse; min-width: 540px; font-size: .875rem; }
.btbl thead th {
  background: linear-gradient(135deg, rgba(255,201,75,.18), rgba(168,85,247,.06));
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .75rem;
  letter-spacing: .5px;
  padding: 15px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(255,201,75,.25);
  white-space: nowrap;
}
.btbl tbody tr { border-bottom: 1px solid var(--c-border); transition: background var(--ease); }
.btbl tbody tr:last-child { border-bottom: none; }
.btbl tbody tr:hover { background: rgba(168,85,247,.06); }
.btbl tbody td { padding: 14px 16px; color: var(--c-text); }
.btbl tbody tr:first-child td { color: var(--c-white); font-weight: 600; }

.scroll-hint {
  display: none;
  font-size: .76rem;
  color: var(--c-text-muted);
  text-align: right;
  margin-bottom: 5px;
}

/* ============================================================
   BONUS CARDS
============================================================ */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--gap-md);
  margin: 32px 0;
}
.bcard {
  background: linear-gradient(180deg, var(--c-bg-3), var(--c-bg-2));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.bcard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-neon);
}
.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-violet);
  border-color: rgba(168,85,247,.4);
}
.bcard__icon  { font-size: 2rem; margin-bottom: 12px; display: block; }
.bcard__amount {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-gold);
  display: block;
  margin-bottom: 5px;
  text-shadow: 0 0 24px rgba(255,201,75,.3);
}
.bcard__title { font-weight: 700; color: var(--c-white); font-size: 1rem; margin-bottom: 8px; }
.bcard__desc  { font-size: .85rem; color: var(--c-text-muted); margin-bottom: 20px; }

/* ============================================================
   PROMO CODE BLOCK
============================================================ */
.promo-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-md);
  background: linear-gradient(135deg, rgba(255,201,75,.12), rgba(168,85,247,.08));
  border: 1px solid rgba(255,201,75,.35);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  margin: 24px 0;
}
.promo-block__code {
  font-family: 'Courier New', monospace;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 5px;
  padding: 10px 22px;
  border: 2px dashed rgba(255,201,75,.5);
  border-radius: var(--radius-sm);
  background: rgba(10,7,19,.4);
}
.promo-block__info h4 { color: var(--c-white); margin-bottom: 4px; font-size: 1rem; }
.promo-block__info p  { font-size: .85rem; color: var(--c-text-muted); margin: 0; }

/* ============================================================
   STEPS
============================================================ */
.steps { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: all var(--ease);
}
.step:hover { border-color: var(--c-border-glow); transform: translateX(4px); }
.step__num {
  min-width: 40px; height: 40px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 800;
  color: #1a0f00;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--c-gold-glow);
}
.step strong { display: block; margin-bottom: 3px; color: var(--c-white); }
.step p { font-size: .875rem; color: var(--c-text-muted); margin: 0; }

/* ============================================================
   PROS / CONS (new)
============================================================ */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-md);
  margin: 28px 0;
}
.pc-col {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 26px 26px 22px;
}
.pc-col--pro { border-top: 3px solid var(--c-cyan); }
.pc-col--con { border-top: 3px solid var(--c-red); }
.pc-col h3 { color: var(--c-white); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.pc-col--pro h3 { color: var(--c-cyan); }
.pc-col--con h3 { color: var(--c-red-light); }
.pc-list { list-style: none; padding: 0; margin: 0; }
.pc-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: .92rem;
  color: var(--c-text);
}
.pc-list li::before {
  position: absolute; left: 0; top: 0;
  font-weight: 800;
  font-size: 1rem;
}
.pc-col--pro .pc-list li::before { content: '✓'; color: var(--c-cyan); }
.pc-col--con .pc-list li::before { content: '✕'; color: var(--c-red); }

/* ============================================================
   RATING BOX (new) — aggregate rating
============================================================ */
.rating-box {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(168,85,247,.12), rgba(34,211,238,.06));
  border: 1px solid rgba(168,85,247,.3);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin: 28px 0;
}
.rating-score {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,201,75,.4);
}
.rating-score span { font-size: 1.2rem; color: var(--c-text-muted); }
.rating-info { flex: 1; min-width: 200px; }
.stars { font-size: 1.3rem; letter-spacing: 3px; color: var(--c-gold); margin-bottom: 6px; }
.rating-info p { margin: 0; font-size: .88rem; color: var(--c-text-muted); }

/* ============================================================
   GAMES GRID
============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  margin: 28px 0;
}
.game-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--c-border);
  background: var(--c-bg-2);
  transition: all var(--ease);
  cursor: pointer;
}
.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(168,85,247,.4);
  border-color: var(--c-violet);
  z-index: 1;
}
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.game-card:hover img { transform: scale(1.08); }
.game-card__ov {
  position: absolute; inset: 0;
  background: rgba(10,7,19,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--ease);
}
.game-card:hover .game-card__ov { opacity: 1; }
.play-btn {
  width: 50px; height: 50px;
  background: var(--grad-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 26px rgba(255,201,75,.6);
}
.play-btn svg { width: 18px; height: 18px; fill: #1a0f00; margin-left: 3px; }

/* ============================================================
   VIP LEVELS
============================================================ */
.vip-list { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.vip-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  transition: all var(--ease);
}
.vip-row:hover { border-color: var(--c-border-glow); background: rgba(255,201,75,.04); transform: translateX(4px); }
.vip-row__icon { font-size: 1.8rem; min-width: 42px; text-align: center; flex-shrink: 0; }
.vip-row__name { font-weight: 700; color: var(--c-gold); font-size: .98rem; }
.vip-row__range { font-size: .78rem; color: var(--c-text-muted); }
.vip-row__benefit { font-size: .875rem; color: var(--c-text); margin-left: auto; text-align: right; }

/* ============================================================
   PAYMENT GRID
============================================================ */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.pay-item {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  transition: all var(--ease);
}
.pay-item:hover { border-color: var(--c-border-glow); transform: translateY(-3px); }
.pay-item .icon { font-size: 1.6rem; margin-bottom: 6px; display: block; }
.pay-item .name { font-size: .78rem; color: var(--c-text-muted); font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list  { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; }
.faq-item  {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.is-open { border-color: rgba(255,201,75,.35); }
.faq-q {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: .98rem; font-weight: 600;
  color: var(--c-white);
  transition: color var(--ease);
}
.faq-q:hover { color: var(--c-gold); }
.faq-icon {
  min-width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,201,75,.10);
  border: 1px solid rgba(255,201,75,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--c-gold);
  line-height: 1;
  transition: all var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--grad-gold);
  color: #1a0f00;
}
.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: .92rem;
  color: var(--c-text-muted);
  line-height: 1.75;
}
.faq-item.is-open .faq-a { display: block; }

/* ============================================================
   CTA BANNER
============================================================ */
.cta-section {
  background: linear-gradient(140deg, #130d26 0%, #2a0f45 50%, #0a0713 100%);
  border-top: 1px solid rgba(255,201,75,.18);
  border-bottom: 1px solid rgba(255,201,75,.18);
  padding: 92px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -180px; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 760px;
  background: radial-gradient(circle, rgba(168,85,247,.16) 0%, transparent 68%);
  pointer-events: none;
}
.cta-section h2 { text-align: center; }
.cta-section h2::after { left: 50%; transform: translateX(-50%); }
.cta-section > .container > p { color: var(--c-text-muted); max-width: 600px; margin: 0 auto 36px; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-border);
  padding: 56px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}
.footer-brand img { height: 36px; margin-bottom: 14px; }
.footer-brand p { font-size: .84rem; color: var(--c-text-muted); max-width: 320px; }
.footer-col h5 {
  font-size: .78rem;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: .85rem; color: var(--c-text-muted); transition: color var(--ease); }
.footer-col a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.disclaimer { font-size: .74rem; color: var(--c-text-muted); line-height: 1.6; max-width: 820px; }
.age-badge {
  min-width: 46px; height: 46px;
  border: 2px solid var(--c-red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  color: var(--c-red-light);
  flex-shrink: 0;
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 48px; height: 48px;
  background: var(--grad-gold);
  color: #1a0f00;
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  opacity: 0; transform: translateY(20px);
  transition: all var(--ease);
  box-shadow: 0 6px 22px var(--c-gold-glow);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,201,75,.55); }
.scroll-top-btn svg { width: 18px; height: 18px; stroke: #1a0f00; stroke-width: 2.5; fill: none; }

/* ============================================================
   CALLOUT
============================================================ */
.callout {
  border-left: 4px solid var(--c-gold);
  background: linear-gradient(90deg, rgba(255,201,75,.10), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 22px 0;
  font-size: .9rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .two-col     { grid-template-columns: 1fr; gap: var(--gap-md); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }

  .header-nav,
  .header-cta-desktop { display: none; }
  .nav-burger { display: flex; }

  .section { padding: 48px 0; }
  .hero-overlay { padding: 26px 20px; }

  /* Responsive info table */
  .tbl thead { display: none; }
  .tbl tbody tr {
    display: block;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    padding: 4px 0;
  }
  .tbl tbody td {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; padding: 11px 14px;
    border-bottom: 1px solid rgba(42,32,80,.6);
    width: 100% !important;
  }
  .tbl tbody td:last-child { border-bottom: none; }
  .tbl tbody td::before {
    content: attr(data-label);
    font-size: .75rem; font-weight: 700;
    color: var(--c-text-muted);
    text-transform: uppercase; letter-spacing: .4px;
    flex-shrink: 0; min-width: 38%;
  }

  /* Responsive bonus table */
  .scroll-hint { display: block; }
  .btbl thead { display: none; }
  .btbl tbody tr {
    display: block;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    margin-bottom: 14px; padding: 4px 0;
    background: var(--c-bg-2);
  }
  .btbl tbody td {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 12px; padding: 11px 16px;
    border-bottom: 1px solid rgba(42,32,80,.5);
    font-size: .875rem;
  }
  .btbl tbody td:last-child { border-bottom: none; }
  .btbl tbody td::before {
    content: attr(data-label);
    font-size: .72rem; font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    flex-shrink: 0; min-width: 42%;
  }

  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vip-row { flex-wrap: wrap; }
  .vip-row__benefit { margin-left: 0; text-align: left; width: 100%; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--gap-md); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promo-block { flex-direction: column; text-align: center; }
  .bonus-cards { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .rating-box { justify-content: center; text-align: center; }
  .scroll-top-btn { bottom: 16px; right: 14px; width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .hero-btns,
  .cta-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn,
  .cta-btns .btn { width: 100%; }
  .pay-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
