/* ═══════════════════════════════════════════════
   BDTGAMING — styles.css
   Mobile-First | Fast | SEO-Friendly
   ═══════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --bg:        #070A12;
  --panel:     #0B1020;
  --panel2:    #0A1227;
  --border:    rgba(255,255,255,.09);
  --text:      #EAF0FF;
  --muted:     #9BA8C9;

  --gold1:     #F7D27A;
  --gold2:     #D79B2A;
  --blue1:     #4CC3FF;
  --blue2:     #2A74FF;
  --green1:    #22C55E;
  --red1:      #EF4444;

  --r-sm:  10px;
  --r:     16px;
  --r-lg:  22px;
  --r-xl:  28px;

  --shadow-sm: 0 4px 14px rgba(0,0,0,.35);
  --shadow:    0 12px 40px rgba(0,0,0,.55);
  --shadow-lg: 0 22px 70px rgba(0,0,0,.65);

  --container: 1140px;
  --gap: 16px;

  --dur-fast:   .15s;
  --dur:        .25s;
  --ease:       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%; }
body {
  font-family: 'Segoe UI', ui-sans-serif, system-ui, -apple-system, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
  background-image:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(76,195,255,.18) 0%, transparent 65%),
    radial-gradient(ellipse 800px 500px at 90% 10%, rgba(215,155,42,.18) 0%, transparent 65%);
  background-attachment: fixed;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── SKIP LINK ──────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px; top: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--r);
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 12px; }

/* ── UTILITY ────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}
.kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  background: rgba(76,195,255,.1);
  border: 1px solid rgba(76,195,255,.25);
  border-radius: 999px;
  color: var(--blue1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1,h2,h3 { line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(26px,5vw,54px); font-weight: 900; letter-spacing: -.02em; }
h2 { font-size: clamp(20px,3.5vw,36px); font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
p  { color: var(--text); margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

.text--gold { color: var(--gold1); }
.text--blue { color: var(--blue1); }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: var(--r);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .01em;
  border: 1px solid var(--border);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease), opacity var(--dur-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); opacity: .85; }

.btn--primary {
  background: linear-gradient(135deg, var(--gold1) 0%, var(--gold2) 100%);
  color: #0D0A00;
  border: none;
  box-shadow: 0 8px 24px rgba(215,155,42,.35);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(215,155,42,.55); }

.btn--secondary {
  background: linear-gradient(135deg, var(--blue1) 0%, var(--blue2) 100%);
  color: #030D20;
  border: none;
  box-shadow: 0 8px 24px rgba(42,116,255,.3);
}
.btn--secondary:hover { box-shadow: 0 12px 32px rgba(42,116,255,.5); }

.btn--ghost {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); }

.btn--app {
  background: linear-gradient(135deg, #22C55E, #15803D);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(34,197,94,.3);
}
.btn--app:hover { box-shadow: 0 10px 28px rgba(34,197,94,.5); }

.btn--tg {
  background: linear-gradient(135deg, #29B6F6, #0288D1);
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(41,182,246,.3);
}
.btn--tg:hover { box-shadow: 0 10px 28px rgba(41,182,246,.5); }

.btn--sm  { padding: 9px 14px; font-size: 13px; }
.btn--lg  { padding: 14px 22px; font-size: 15px; }
.btn--xl  { padding: 16px 28px; font-size: 16px; border-radius: var(--r-lg); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.cta-row--center { justify-content: center; margin-top: 24px; }

/* ── TOPBAR ─────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,10,18,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  will-change: transform;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand__logo {
  width: 44px; height: 44px;
  border-radius: var(--r);
  object-fit: cover;
  border: 1px solid var(--border);
}
.brand__name {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--text);
  display: none;
}
.brand__accent { color: var(--gold1); }
@media (min-width:480px) { .brand__name { display: block; } }

/* Nav */
.nav { margin-left: auto; position: relative; }

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast);
}
.nav__toggle[aria-expanded="true"] .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .burger span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(7,10,18,.97);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
  animation: slideDown var(--dur) var(--ease) both;
}
.nav__menu.is-open { display: flex; }
.nav__menu a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  transition: background var(--dur-fast);
}
.nav__menu a:hover, .nav__menu a:focus { background: rgba(255,255,255,.06); }
.nav__menu .nav__tg { color: #29B6F6; }

.topbar__cta {
  display: none;
  gap: 8px;
  flex-shrink: 0;
}

@keyframes slideDown {
  from { opacity:0; transform: translateY(-8px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: 32px 0 28px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/herosection.webp') center/cover no-repeat;
  z-index: -2;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,10,18,.93) 0%, rgba(7,10,18,.72) 60%, rgba(7,10,18,.88) 100%);
  z-index: -1;
}
.hero__glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 400px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(215,155,42,.22), transparent 65%),
    radial-gradient(ellipse at 70% 50%, rgba(76,195,255,.18), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.pill--gold { background: rgba(247,210,122,.12); border: 1px solid rgba(247,210,122,.3); color: var(--gold1); }
.pill--blue { background: rgba(76,195,255,.12); border: 1px solid rgba(76,195,255,.3); color: var(--blue1); }

.hero__h1 { margin-bottom: 16px; }

.hero__banner {
  margin: 14px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero__banner img { width: 100%; height: auto; display: block; }

.hero__lead {
  font-size: 15px;
  color: rgba(234,240,255,.9);
  line-height: 1.7;
  margin-bottom: 0;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.badge-item {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
  color: rgba(234,240,255,.9);
}

/* Payments */
.payments {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.payments__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.payments__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-badge {
  padding: 4px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

/* Hero panel */
.hero__panel {
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: rgba(11,16,32,.75);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  gap: 3px;
}
.stat-card__icon { font-size: 22px; }
.stat-card__value { font-size: 16px; font-weight: 900; color: var(--gold1); line-height: 1; }
.stat-card__label { font-size: 10px; font-weight: 600; color: var(--muted); }

.app-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.07);
}
.app-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.app-banner__text strong { font-size: 14px; }
.app-banner__text span { font-size: 12px; color: var(--muted); }

/* ── SECTIONS ───────────────────────────────────── */
.section {
  padding: 40px 0;
}
.section--alt {
  background: rgba(255,255,255,.018);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--cta {
  background:
    radial-gradient(ellipse 700px 350px at 20% 0%, rgba(76,195,255,.12), transparent 65%),
    radial-gradient(ellipse 700px 350px at 90% 100%, rgba(215,155,42,.12), transparent 65%),
    rgba(255,255,255,.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--finalcta {
  background:
    radial-gradient(ellipse 900px 400px at 50% 50%, rgba(247,210,122,.10), transparent 70%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.section-img {
  margin: 16px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.section-img img { width: 100%; height: auto; display: block; }

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}

/* Feature list */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.feat-list li {
  padding: 9px 12px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  font-size: 14px;
  font-weight: 600;
  color: rgba(234,240,255,.92);
}

/* Trust cards */
.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.trust-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(11,16,32,.6);
}
.trust-card__icon { font-size: 24px; margin-bottom: 4px; }
.trust-card strong { font-size: 14px; font-weight: 800; }
.trust-card span { font-size: 12px; color: var(--muted); }

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.game-card {
  padding: 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(11,16,32,.9), rgba(10,18,39,.7));
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.game-card__icon { font-size: 28px; }
.game-card h3 { font-size: 14px; }
.game-card p  { font-size: 12px; color: var(--muted); flex: 1; }

/* Chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
  color: rgba(234,240,255,.9);
}

/* App download box */
.app-download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.06);
}
.app-download-box__icon { font-size: 48px; }
.app-download-box h3 { font-size: 18px; }
.app-download-box p { font-size: 14px; color: var(--muted); }
.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green1);
}

/* Jackpot bar */
.jackpot-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(247,210,122,.3);
  background: linear-gradient(135deg, rgba(247,210,122,.1), rgba(215,155,42,.05));
  margin: 16px 0;
}
.jackpot-bar__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.jackpot-bar__amount {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold1);
  letter-spacing: -.01em;
}

/* Slots grid */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}
.slot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11,16,32,.9), rgba(10,18,39,.7));
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  transition: transform var(--dur) var(--ease);
}
.slot-card:hover { transform: translateY(-3px); }
.slot-card span:first-child { font-size: 26px; }
.slot-card strong { font-size: 12px; color: var(--text); }
.hot-tag {
  position: absolute;
  top: 6px; right: 6px;
  background: var(--red1);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: .05em;
}

/* Bonus cards */
.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bonus-card {
  padding: 16px;
  border-radius: var(--r-lg);
  text-align: center;
}
.bonus-card--gold { border: 1px solid rgba(247,210,122,.3); background: rgba(247,210,122,.07); }
.bonus-card--blue { border: 1px solid rgba(76,195,255,.3); background: rgba(76,195,255,.07); }
.bonus-card--green { border: 1px solid rgba(34,197,94,.3); background: rgba(34,197,94,.07); }
.bonus-card__label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.bonus-card__amount { font-size: 28px; font-weight: 900; color: var(--gold1); line-height: 1.1; }
.bonus-card--blue .bonus-card__amount { color: var(--blue1); }
.bonus-card--green .bonus-card__amount { color: var(--green1); font-size: 16px; }
.bonus-card__sub { font-size: 12px; font-weight: 700; color: var(--text); margin-top: 2px; }

/* Why cards */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.why-card {
  padding: 18px 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(11,16,32,.5);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.why-card__icon { font-size: 28px; margin-bottom: 8px; }
.why-card h3 { font-size: 15px; margin-bottom: 5px; }
.why-card p  { font-size: 13px; color: var(--muted); }

/* Live grid */
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.live-card {
  padding: 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(11,16,32,.6);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.live-card h3 { font-size: 15px; }
.live-card p  { font-size: 13px; color: var(--muted); }
.live-dot {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  background: var(--red1);
  color: #fff;
  width: fit-content;
  letter-spacing: .05em;
  animation: pulse 1.8s ease-in-out infinite;
}
.live-dot--green { background: var(--green1); animation: pulse-green 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.6} }
@keyframes pulse-green { 0%,100%{opacity:1}50%{opacity:.65} }

/* Steps */
.bonus-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  max-width: 200px;
}
.step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold1), var(--gold2));
  color: #0D0A00;
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__text { font-size: 13px; }
.step__text strong { display: block; margin-bottom: 2px; }
.step__arrow { font-size: 20px; color: var(--gold2); font-weight: 700; display: none; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.faq-item {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  padding: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--gold1); transition: transform var(--dur) var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 16px 16px; color: var(--muted); font-size: 14px; }
.faq-item a { color: var(--blue1); text-decoration: underline; }

/* Final CTA */
.final-links { display: flex; justify-content: center; margin-top: 16px; }

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
}
.footer__inner { display: flex; flex-direction: column; gap: 24px; }

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.footer__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer__logo {
  width: 52px; height: 52px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  object-fit: cover;
  flex-shrink: 0;
}
.footer__site-name { display: block; font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.footer__tagline { font-size: 13px; color: var(--gold1); font-weight: 700; }
.footer__cats { font-size: 12px; color: var(--muted); margin-top: 4px; }

.footer__links-col { display: flex; flex-direction: column; gap: 8px; }
.footer__links-col strong { font-size: 14px; margin-bottom: 4px; }
.footer__links-col a {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.footer__links-col a:hover { color: var(--text); background: rgba(255,255,255,.06); }

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__legal-links a {
  color: var(--muted);
  text-decoration: underline;
  transition: color var(--dur-fast);
}
.footer__legal-links a:hover { color: var(--text); }
.footer__age { font-weight: 900; color: rgba(234,240,255,.7); font-size: 13px; }

/* ── FLOATING CTA ───────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 20px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 80;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn:active { transform: scale(.95); }
.float-btn--tg   { background: linear-gradient(135deg, #29B6F6, #0288D1); color:#fff; }
.float-btn--app  { background: linear-gradient(135deg, #22C55E, #15803D); color:#fff; }
.float-btn--join { background: linear-gradient(135deg, var(--gold1), var(--gold2)); color:#0D0A00; }

/* ── DESKTOP — 768px+ ───────────────────────────── */
@media (min-width:768px) {
  .hero__grid { grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: start; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .step__arrow { display: block; }
  .footer__top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ── DESKTOP — 920px+ ───────────────────────────── */
@media (min-width:920px) {
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex !important;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    gap: 4px;
    animation: none;
    flex-direction: row;
  }
  .nav__menu a {
    padding: 8px 12px;
    border-radius: var(--r);
    font-size: 14px;
    border: 1px solid transparent;
  }
  .nav__menu a:hover { background: rgba(255,255,255,.06); border-color: var(--border); }
  .topbar__cta { display: flex; }
  .section { padding: 56px 0; }
}

/* ── PRINT ──────────────────────────────────────── */
@media print {
  .topbar, .float-cta { display: none; }
  body { background: #fff; color: #000; }
}
