/* =========================================================================
 * Dhka66 Play — stylesheet
 * Mobile-first, no external dependencies, ~12KB.
 * Casino-inspired dark theme with gold gradient highlights.
 * ========================================================================= */

:root {
  --bg-0: #07080d;
  --bg-1: #0e1019;
  --bg-2: #161a26;
  --bg-3: #1f2435;
  --line: #2a3045;
  --text: #ecedf3;
  --text-dim: #a4a8b8;
  --gold-1: #ffd76a;
  --gold-2: #f5a623;
  --gold-3: #e07b00;
  --red: #ff3b6b;
  --green: #2ed47a;
  --shadow-gold: 0 8px 28px rgba(245, 166, 35, 0.45);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Hind Siliguri", "Inter", system-ui, -apple-system, "Segoe UI",
    Roboto, "Noto Sans Bengali", sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, #1a1f3a 0%, transparent 60%),
              radial-gradient(900px 500px at -10% 30%, #2a1840 0%, transparent 60%),
              var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-1); text-decoration: none; }
a:hover { color: var(--gold-2); }

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

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 13, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.site-header.is-scrolled {
  background: rgba(7, 8, 13, 0.92);
  border-bottom-color: var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
}
.brand-logo .logo-dot {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  display: grid; place-items: center;
  color: #1a0c00; font-weight: 900; font-size: 17px;
  box-shadow: var(--shadow-gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--text-dim);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover { color: var(--text); background: var(--bg-2); }
.nav-toggle {
  display: none;
  background: none; border: 0;
  color: var(--text); width: 40px; height: 40px;
  font-size: 24px; cursor: pointer;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}
.lang-pill.is-active { color: var(--gold-1); border-color: var(--gold-2); }

/* ---------- BUTTONS — CONVERSION ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  white-space: nowrap;
  transition: transform .15s, box-shadow .2s, filter .2s;
}
.btn:active { transform: translateY(1px); }

/* PRIMARY = the highlighted Register button — gold gradient + pulse */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 55%, var(--gold-3) 100%);
  color: #1a0c00;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, .55);
  animation: pulse 2.1s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 166, 35, .55); }
  70%  { box-shadow: 0 0 0 18px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* SECONDARY = Login button — outlined, still very visible */
.btn-secondary {
  background: rgba(255, 215, 106, 0.08);
  color: var(--gold-1);
  border: 1.5px solid var(--gold-2);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 106, .1);
}
.btn-secondary:hover {
  background: rgba(255, 215, 106, 0.16);
  color: var(--gold-1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-2); }

.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-xl { padding: 19px 34px; font-size: 18px; border-radius: var(--radius-lg); }
.header-cta { display: flex; gap: 10px; align-items: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 70% 50%, rgba(245,166,35,.15), transparent 70%),
    radial-gradient(500px 250px at 20% 80%, rgba(255,59,107,.12), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 0 28px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  color: var(--text-dim);
  font-size: 14px;
}
.hero-badges span::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 6px;
}

/* Hero visual — fake slot/aviator card stack */
.hero-card {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a1f3a 0%, #0e1019 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,166,35,.35), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}
.reel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.reel {
  aspect-ratio: 1/1;
  background: var(--bg-2);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: clamp(28px, 7vw, 44px);
  border: 1px solid var(--line);
}
.reel.win {
  background: linear-gradient(135deg, rgba(245,166,35,.25), rgba(245,166,35,.05));
  border-color: var(--gold-2);
  box-shadow: 0 0 24px rgba(245,166,35,.4);
}
.hero-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text-dim);
}
.hero-stat b { color: var(--gold-1); font-size: 18px; }
.hero-multiplier {
  text-align: center;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 56px);
  background: linear-gradient(135deg, var(--gold-1), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: auto;
}

/* ---------- SECTIONS ---------- */
section { padding: 72px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}
.section-head .kicker {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245,166,35,.12);
  color: var(--gold-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: -.3px;
}
.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin: 0;
}

/* ---------- GAMES GRID ---------- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.game-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  padding: 22px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-2);
}
.game-card .emoji {
  font-size: 44px;
  margin-bottom: 10px;
}
.game-card h3 { margin: 0 0 6px; font-size: 19px; }
.game-card p { color: var(--text-dim); font-size: 14px; margin: 0 0 14px; }
.game-card .tag {
  display: inline-block;
  background: rgba(46,212,122,.15);
  color: var(--green);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

/* ---------- HOW IT WORKS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: -18px; left: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1a0c00;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
}
.step h3 { margin: 6px 0 8px; font-size: 18px; }
.step p { color: var(--text-dim); margin: 0; font-size: 14px; }

/* ---------- ARTICLES ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.article-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s, transform .2s;
}
.article-card:hover {
  border-color: var(--gold-2);
  transform: translateY(-3px);
}
.article-card .meta {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.article-card h3 { margin: 0; font-size: 18px; line-height: 1.35; }
.article-card p { color: var(--text-dim); margin: 0; font-size: 14px; }
.article-card .read-more {
  color: var(--gold-1);
  font-weight: 700;
  font-size: 14px;
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-1);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: start;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q::after {
  content: "+";
  color: var(--gold-1);
  font-size: 22px;
  transition: transform .2s;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--text-dim);
  transition: max-height .25s ease, padding .25s ease;
}
.faq-item.is-open .faq-a {
  max-height: 480px;
  padding: 0 20px 20px;
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(245,166,35,.18), rgba(255,59,107,.12));
  border: 1px solid var(--gold-2);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  margin: 0 auto;
  max-width: 980px;
}
.cta-band h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 12px;
}
.cta-band p { color: var(--text-dim); margin: 0 0 24px; font-size: 17px; }
.cta-band .btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-0);
  padding: 56px 0 28px;
  margin-top: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: var(--text-dim); font-size: 14px; }
.footer-grid a:hover { color: var(--gold-1); }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 320px; }
.compliance-strip {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-dim);
  font-size: 13px;
}
.age-badge {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 900;
  border-radius: 50%;
  font-size: 13px;
}

/* ---------- STICKY MOBILE CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 90;
  gap: 10px;
  padding: 10px;
  background: rgba(7,8,13,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid var(--line);
}
.mobile-cta .btn { flex: 1; padding: 12px 14px; font-size: 14px; }

/* ---------- AGE GATE ---------- */
.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,8,13,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  place-items: center;
  padding: 20px;
}
.age-gate.is-visible { display: grid; }
.age-gate-card {
  max-width: 440px;
  background: var(--bg-1);
  border: 1px solid var(--gold-2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.age-gate-card h3 { margin: 12px 0; font-size: 22px; }
.age-gate-card p { color: var(--text-dim); margin: 0 0 20px; font-size: 14px; }
.age-gate-card .btn-row { display: flex; gap: 10px; justify-content: center; }
.age-gate-card .big-18 {
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -2px;
  line-height: 1;
}

/* ---------- ARTICLE PAGE ---------- */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}
.article-body .breadcrumb {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.article-body h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.article-body .meta {
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 30px;
}
.article-body h2 { margin-top: 36px; font-size: 24px; }
.article-body h3 { margin-top: 26px; font-size: 19px; }
.article-body p, .article-body li { color: #d4d6e0; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body blockquote {
  border-left: 3px solid var(--gold-2);
  background: var(--bg-1);
  padding: 14px 18px;
  margin: 24px 0;
  color: var(--text-dim);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body .inline-cta {
  background: linear-gradient(135deg, rgba(245,166,35,.16), rgba(255,59,107,.1));
  border: 1px solid var(--gold-2);
  border-radius: var(--radius-md);
  padding: 22px;
  margin: 28px 0;
  text-align: center;
}

/* ---------- REVEAL ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .55s, transform .55s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-card { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-menu.is-open { max-height: 320px; }
  .nav-menu li { padding: 0 12px; }
  .nav-menu a { display: block; padding: 12px 14px; }
  .header-cta .btn-ghost { display: none; }
  .mobile-cta { display: flex; }
  section { padding: 56px 0; }
  .site-footer { padding-bottom: 92px; }   /* room for sticky CTA */
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 36px 0 48px; }
  .hero p.lede { font-size: 16px; }
  .compliance-strip { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================================
 * UI/UX UPGRADE COMPONENTS
 * ========================================================================= */

/* ---------- LIVE WINNERS TICKER ---------- */
.ticker {
  background: linear-gradient(90deg,
    rgba(46,212,122,.12) 0%,
    rgba(245,166,35,.08) 50%,
    rgba(46,212,122,.12) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(90deg, var(--bg-0), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--bg-0), transparent); }
.ticker-track {
  display: inline-flex;
  gap: 36px;
  padding: 12px 0;
  animation: ticker-scroll 38s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.ticker-item b { color: var(--gold-1); font-weight: 700; }
.ticker-item .live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(46,212,122,.6);
  animation: live-pulse 1.6s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,212,122,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(46,212,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,212,122,0); }
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ---------- STATS BAND ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.stat {
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -12px; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--line);
}
.stat .num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  letter-spacing: -.5px;
}
.stat .lbl {
  color: var(--text-dim);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 600;
  margin-top: 6px;
}

/* ---------- TRUST BADGES STRIP ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 26px;
  padding: 18px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.trust-strip .trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
}
.trust-strip .trust .ico {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--bg-3);
  color: var(--gold-1);
  font-size: 14px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.testimonial:hover { transform: translateY(-3px); border-color: var(--gold-2); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: 0; right: 18px;
  font-size: 96px;
  line-height: 1;
  color: rgba(245,166,35,.16);
  font-family: Georgia, serif;
}
.testimonial .stars {
  color: var(--gold-1);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testimonial p {
  color: var(--text);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.55;
}
.testimonial .who {
  display: flex; align-items: center; gap: 10px;
}
.testimonial .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--red));
  display: grid; place-items: center;
  font-weight: 800;
  color: #1a0c00;
  font-size: 14px;
}
.testimonial .who div {
  display: flex; flex-direction: column;
  font-size: 13px;
}
.testimonial .who b { color: var(--text); font-size: 14px; }
.testimonial .who span { color: var(--text-dim); }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: linear-gradient(135deg, rgba(245,166,35,.1), rgba(255,59,107,.06));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.newsletter h3 { font-size: 22px; margin: 0 0 6px; }
.newsletter p { color: var(--text-dim); margin: 0; font-size: 14px; }
.newsletter form {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.newsletter input[type=email] {
  flex: 1;
  min-width: 180px;
  padding: 13px 16px;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}
.newsletter input[type=email]:focus {
  outline: 0;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(245,166,35,.18);
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--gold-2);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: none;
  z-index: 80;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
  min-width: 220px;
}
.cookie-banner p a { color: var(--gold-1); }
.cookie-banner .btn-row { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 9px 16px; font-size: 13px; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: #1a0c00;
  border: 0;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 70;
  transition: transform .15s;
}
.back-to-top:hover { transform: translateY(-2px); }
.back-to-top.is-visible { display: inline-flex; }
@media (max-width: 880px) {
  .back-to-top { bottom: 84px; right: 12px; }
}

/* ---------- READING PROGRESS BAR (articles) ---------- */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-1), var(--red));
  z-index: 200;
  transition: width .08s linear;
}

/* ---------- TABLE OF CONTENTS (articles) ---------- */
.toc {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-2);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 24px 0 32px;
}
.toc-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold-1);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.toc ol {
  margin: 0;
  padding-left: 22px;
  color: var(--text-dim);
  font-size: 14px;
}
.toc ol li { margin-bottom: 5px; }
.toc a { color: var(--text-dim); }
.toc a:hover { color: var(--gold-1); }

/* ---------- RELATED ARTICLES (articles) ---------- */
.related {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.related h2 { font-size: 22px; margin: 0 0 18px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.related-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--gold-2); transform: translateY(-2px); }
.related-card .meta {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 6px;
}
.related-card h3 { font-size: 15px; margin: 0; color: var(--text); line-height: 1.4; }

/* ---------- TOAST NOTIFICATIONS ---------- */
.toast-host {
  position: fixed;
  bottom: 90px; left: 50%;
  transform: translateX(-50%);
  z-index: 110;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--bg-2);
  border: 1px solid var(--gold-2);
  color: var(--text);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.4);
  animation: toast-in .25s ease-out, toast-out .35s ease-in 3s forwards;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(20px); }
}

/* ---------- ENHANCED GAME CARDS WITH ILLUSTRATION ---------- */
.game-card .game-illustration {
  position: absolute;
  top: 0; right: 0;
  width: 110px; height: 110px;
  opacity: .08;
  font-size: 110px;
  line-height: 1;
  pointer-events: none;
  transform: rotate(-10deg);
}
.game-card:hover .game-illustration { opacity: .14; }

/* ---------- HERO MARQUEE NUMBERS ---------- */
.hero-multiplier-wrap {
  position: relative;
  text-align: center;
  margin-top: auto;
}
.hero-multiplier-wrap .label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- AUTHOR BIO (E-E-A-T for SEO) ---------- */
.author-bio {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 28px 0;
}
.author-bio .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--red));
  display: grid; place-items: center;
  color: #1a0c00;
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
}
.author-bio .info { font-size: 13px; color: var(--text-dim); }
.author-bio .info b { color: var(--text); display: block; font-size: 14px; }

/* ---------- SOCIAL SHARE BUTTONS ---------- */
.share-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 24px 0;
  font-size: 13px;
  color: var(--text-dim);
  align-items: center;
}
.share-row .share-btn {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 14px;
  transition: border-color .15s, color .15s;
}
.share-row .share-btn:hover { color: var(--gold-1); border-color: var(--gold-2); }

/* ---------- RESPONSIVE EXTRAS ---------- */
@media (max-width: 880px) {
  .stats-band { grid-template-columns: 1fr 1fr; padding: 24px; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(3)::before, .stat:nth-child(4)::before { display: none; }
  .newsletter { grid-template-columns: 1fr; padding: 28px; gap: 18px; text-align: center; }
  .newsletter form { justify-content: center; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr 1fr; }
  .cookie-banner { bottom: 92px; padding: 14px 16px; }
  .cookie-banner p { font-size: 12px; }
}

/* =========================================================================
 * MOBILE RESPONSIVE FIXES — narrow phones (≤480px)
 * Fixes: brand wrap, CTA stacking, cookie banner, hero text size,
 * sticky CTA conflict, button widths.
 * ========================================================================= */

/* Brand never wraps + scales down on mobile */
.brand-logo {
  white-space: nowrap;
  min-width: 0;
}

@media (max-width: 720px) {
  /* Header: compact everything */
  .site-header .container { height: 60px; gap: 8px; padding: 0 14px; }
  .brand-logo { font-size: 17px; gap: 8px; }
  .brand-logo .logo-dot { width: 28px; height: 28px; font-size: 14px; border-radius: 8px; }
  .nav-toggle { width: 36px; height: 36px; font-size: 22px; }

  /* Header Register button: smaller, shorter padding */
  .header-cta .btn-primary {
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 10px;
  }
  /* Tighter pulse on small button so glow doesn't dominate */
  .header-cta .btn-primary::after { animation-duration: 2.6s; }

  /* Hero text — slightly smaller min so it doesn't dominate viewport */
  .hero h1 { font-size: clamp(26px, 7vw, 40px); line-height: 1.12; }
  .hero p.lede { font-size: 15px; margin-bottom: 22px; }

  /* Hero CTAs — stack FULL WIDTH on mobile, not awkward inline */
  .hero-cta-row {
    flex-direction: column;
    gap: 10px;
  }
  .hero-cta-row .btn {
    width: 100%;
    padding: 15px 16px;
    font-size: 15px;
    border-radius: 14px;
  }
  .hero-cta-row .btn-xl { padding: 16px 16px; font-size: 15px; }

  /* CTA band buttons stack full-width too */
  .cta-band { padding: 32px 20px; }
  .cta-band .btn-row { flex-direction: column; gap: 10px; }
  .cta-band .btn-row .btn { width: 100%; }

  /* Newsletter form: stack input + button full-width */
  .newsletter form { flex-direction: column; }
  .newsletter form .btn { width: 100%; }

  /* Hero badges smaller gap */
  .hero-badges { gap: 8px 16px; font-size: 13px; }
}

@media (max-width: 420px) {
  /* Tiny phones (iPhone SE, etc.) — even tighter */
  .site-header .container { padding: 0 12px; }
  .brand-logo { font-size: 16px; gap: 6px; }
  .brand-logo .logo-dot { width: 26px; height: 26px; font-size: 13px; }

  /* Hero */
  .hero { padding: 28px 0 40px; }
  .hero h1 { font-size: clamp(24px, 7.5vw, 34px); }

  /* Section padding */
  section { padding: 44px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(22px, 6vw, 30px); }

  /* Ticker text smaller */
  .ticker-item { font-size: 12px; gap: 6px; }
  .ticker-track { gap: 24px; padding: 10px 0; }

  /* Cookie banner: compact, one-line message, button right */
  .cookie-banner {
    bottom: 84px;
    left: 8px; right: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    gap: 10px;
  }
  .cookie-banner p {
    font-size: 11.5px;
    line-height: 1.4;
    min-width: 0;
  }
  .cookie-banner .btn { padding: 7px 12px; font-size: 12px; flex-shrink: 0; }

  /* Sticky mobile CTA: a bit tighter */
  .mobile-cta {
    bottom: 8px; left: 8px; right: 8px;
    padding: 8px;
    border-radius: 14px;
    gap: 8px;
  }
  .mobile-cta .btn { padding: 11px 10px; font-size: 13px; border-radius: 11px; }

  /* Footer needs more room because sticky CTA + cookie stack */
  .site-footer { padding-bottom: 110px; }

  /* Stats numbers smaller */
  .stat .num { font-size: 28px; }
  .stat .lbl { font-size: 11px; letter-spacing: .5px; }
  .stats-band { padding: 20px 14px; gap: 18px; }
  .trust-strip { padding: 14px 16px; gap: 10px 16px; }
  .trust-strip .trust { font-size: 12px; }
  .trust-strip .trust .ico { width: 24px; height: 24px; font-size: 12px; }

  /* Game cards */
  .games-grid { gap: 14px; }
  .game-card { padding: 18px; }
  .game-card .emoji { font-size: 38px; }
  .game-card h3 { font-size: 17px; }

  /* Testimonials */
  .testimonial { padding: 20px; }
  .testimonial p { font-size: 14px; }

  /* Hide age-gate decorative number, keep modal compact */
  .age-gate-card { padding: 28px 22px; }
  .age-gate-card .big-18 { font-size: 44px; }
  .age-gate-card h3 { font-size: 18px; }
  .age-gate-card p { font-size: 13px; }
  .age-gate-card .btn-row .btn { padding: 11px 14px; font-size: 13px; }

  /* Back-to-top a bit higher to clear cookie + sticky CTA */
  .back-to-top { bottom: 150px; right: 10px; width: 42px; height: 42px; }

  /* Article body */
  .article-body { padding: 24px 16px 48px; }
  .article-body h1 { font-size: clamp(22px, 6.5vw, 32px); }
  .article-body h2 { font-size: 20px; }
  .toc { padding: 14px 18px; }
  .author-bio { padding: 12px 14px; gap: 10px; }
  .author-bio .avatar { width: 40px; height: 40px; font-size: 16px; }
  .author-bio .info { font-size: 12px; }
}

/* When cookie banner is visible, push back-to-top up further */
.cookie-banner.is-visible ~ .back-to-top.is-visible {
  bottom: 168px;
}
@media (min-width: 881px) {
  .cookie-banner.is-visible ~ .back-to-top.is-visible {
    bottom: 90px;
  }
}

/* Responsive label switching for tight header CTA on mobile.
   Use <span class="lbl-full"> + <span class="lbl-short"> in HTML.
   Default (desktop): show long; ≤480px: show short. */
.lbl-short { display: none; }
@media (max-width: 480px) {
  .lbl-full  { display: none; }
  .lbl-short { display: inline; }
}

/* Hero card on small phones: cap height so it doesn't push content too far */
@media (max-width: 480px) {
  .hero-card {
    max-width: 320px;
    aspect-ratio: auto;
    padding: 18px;
  }
  .reel { font-size: clamp(24px, 6vw, 36px); }
  .hero-multiplier { font-size: 40px; }
}

