@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #08091a;
  --bg2:      #0d0f26;
  --card:     #111430;
  --border:   rgba(255,255,255,0.07);
  --gold:     #f5a623;
  --gold-dim: rgba(245,166,35,0.15);
  --gold-glow:0 0 20px rgba(245,166,35,0.45), 0 0 8px rgba(245,166,35,0.25);
  --emerald:  #13b877;
  --em-glow:  0 0 20px rgba(19,184,119,0.45);
  --text:     #f0f2ff;
  --muted:    #8892a4;
  --radius:   14px;
  --font-head:'Cinzel', serif;
  --font-body:'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.03em; }
.gold  { color: var(--gold); }
.em    { color: var(--emerald); }
.glow-gold  { text-shadow: 0 0 14px rgba(245,166,35,0.55); }
.glow-em    { text-shadow: 0 0 14px rgba(19,184,119,0.55); }
.muted { color: var(--muted); }

/* ── LAYOUT ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── PAGES ──────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(8,9,26,0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #13b877, #0a7a4e);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; box-shadow: var(--em-glow);
  flex-shrink: 0;
}
.logo-text .brand  { display: block; font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: 0.1em; line-height: 1; }
.logo-text .tagline{ display: block; font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold); text-transform: uppercase; font-weight: 600; margin-top: 2px; }

nav.desktop { display: flex; align-items: center; gap: 4px; }
nav.desktop a {
  text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px; transition: all 0.2s; cursor: pointer;
}
nav.desktop a:hover, nav.desktop a.active { color: #fff; background: rgba(255,255,255,0.07); }
nav.desktop a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.coin-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--card); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 50px; font-weight: 600;
  font-size: 0.9rem;
}
.coin-badge span.coin-icon { color: var(--gold); font-size: 1rem; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 12px; font-size: 0.9rem; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none; transition: all 0.2s;
  font-family: var(--font-body); letter-spacing: 0.02em;
}
.btn-gold   { background: linear-gradient(135deg, var(--gold), #d4831a); color: #1a0d00; box-shadow: var(--gold-glow); }
.btn-gold:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn-em     { background: linear-gradient(135deg, var(--emerald), #0a8857); color: #fff; box-shadow: var(--em-glow); }
.btn-em:hover { transform: scale(1.03); filter: brightness(1.1); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold-dim); }
.btn-ghost  { background: rgba(255,255,255,0.07); color: #fff; border: 1px solid var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-lg     { padding: 14px 30px; font-size: 1.05rem; border-radius: 14px; }
.btn-sm     { padding: 8px 16px; font-size: 0.82rem; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(8,9,26,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding-top: 80px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: #fff; font-size: 1.5rem; font-family: var(--font-head);
  padding: 14px 40px; border-radius: 14px; transition: 0.2s; cursor: pointer; width: 80%;
  text-align: center; border: 1px solid var(--border);
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--gold-dim); color: var(--gold); border-color: rgba(245,166,35,0.3); }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 90px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 30% 80%, rgba(19,184,119,0.07) 0%, transparent 60%),
              url('images/hero-bg.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,9,26,0.92) 50%, rgba(8,9,26,0.4) 100%),
              linear-gradient(to top, rgba(8,9,26,0.9) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(19,184,119,0.15); border: 1px solid rgba(19,184,119,0.35);
  color: var(--emerald); padding: 7px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.08; margin-bottom: 24px; }
.hero p   { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 38px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.hero-stat .lbl { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 2px; }

/* Floating particles */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.particle {
  position: absolute; border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(100vh) rotate(0deg); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-100px) rotate(360deg); }
}

/* ── SECTION HEADER ─────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.sec-head p  { color: var(--muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── GAME CARDS ─────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.game-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.game-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.5), var(--gold-glow); }
.game-thumb {
  height: 160px; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.game-thumb .dots {
  position: absolute; inset: 0; opacity: 0.18;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 22px 22px;
}
.game-thumb .play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.55); opacity: 0; transition: opacity 0.2s;
}
.game-card:hover .play-btn { opacity: 1; }
.play-btn .circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: var(--gold-glow);
  transform: scale(0.7); transition: transform 0.2s;
}
.game-card:hover .circle { transform: scale(1); }
.badge-tag {
  position: absolute; top: 10px; left: 10px;
  display: flex; gap: 5px;
}
.tag { padding: 3px 9px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; }
.tag-hot { background: #e53e3e; color: #fff; }
.tag-new { background: var(--emerald); color: #fff; }
.game-body { padding: 16px; }
.game-cat  { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 4px; }
.game-name { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.jackpot-row{
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,0,0,0.35); border-radius: 8px; padding: 8px 10px;
  border: 1px solid var(--border);
}
.jackpot-row .lbl { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; }
.jackpot-row .val { font-size: 0.88rem; font-weight: 700; color: var(--gold); font-family: monospace; }

/* Gradient presets */
.g-amber   { background: linear-gradient(135deg,#c05508,#7a2f03); }
.g-emerald { background: linear-gradient(135deg,#0d9e69,#064535); }
.g-fuchsia { background: linear-gradient(135deg,#9c31b8,#461270); }
.g-sky     { background: linear-gradient(135deg,#2478c5,#0e2d6b); }
.g-red     { background: linear-gradient(135deg,#b82020,#5a0505); }
.g-gold    { background: linear-gradient(135deg,#c4890a,#7a4a03); }
.g-orange  { background: linear-gradient(135deg,#c46208,#7a2c03); }
.g-cyan    { background: linear-gradient(135deg,#0baec4,#03527a); }

/* ── FILTER BAR ─────────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.pill:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.pill.active { background: var(--gold); color: #1a0d00; border-color: var(--gold); box-shadow: var(--gold-glow); }

.search-wrap { position: relative; }
.search-wrap input {
  background: var(--card); border: 1px solid var(--border); border-radius: 50px;
  color: #fff; padding: 9px 18px 9px 40px; font-size: 0.9rem; font-family: var(--font-body);
  outline: none; width: 220px; transition: border-color 0.2s;
}
.search-wrap input::placeholder { color: var(--muted); }
.search-wrap input:focus { border-color: var(--gold); }
.search-wrap .icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 0.9rem; }

/* ── PROMO CARDS ─────────────────────────────────────── */
.promo-hero {
  background: var(--card); border: 1px solid rgba(245,166,35,0.2); border-radius: 22px;
  padding: 52px 48px; display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; margin-bottom: 52px; position: relative; overflow: hidden;
}
.promo-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.03),transparent);
  animation: shimmer 3s linear infinite; background-size: 200% 100%;
}
@keyframes shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
.promo-hero-text { flex: 1; min-width: 260px; }
.promo-hero-text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 14px; }
.promo-hero-text p  { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.promo-wheel-wrap   { flex: 1; min-width: 200px; display: flex; justify-content: center; }
.promo-wheel {
  width: 220px; height: 220px; border-radius: 50%;
  border: 8px solid var(--gold); box-shadow: var(--gold-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: var(--bg2);
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.promo-wheel img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

.promos-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px;
}
.promo-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.promo-head {
  height: 120px; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
}
.promo-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(0,0,0,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.promo-bonus { text-align: right; }
.promo-bonus .bonus-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); font-weight: 700; }
.promo-bonus .bonus-val { font-size: 1.05rem; font-weight: 800; color: #fff; white-space: nowrap; }
.promo-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.promo-body h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 8px; }
.promo-body p  { color: var(--muted); font-size: 0.9rem; flex: 1; margin-bottom: 20px; line-height: 1.6; }

/* ── LEADERBOARD ─────────────────────────────────────── */
.lb-header { text-align: center; padding: 60px 0 40px; }
.lb-header .trophy { font-size: 4rem; margin-bottom: 14px; filter: drop-shadow(0 0 14px rgba(245,166,35,0.6)); }
.lb-table  { background: var(--card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.lb-thead  { display: grid; grid-template-columns: 80px 1fr 100px 160px; padding: 14px 24px; border-bottom: 1px solid var(--border); }
.lb-thead span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: 700; }
.lb-row    { display: grid; grid-template-columns: 80px 1fr 100px 160px; padding: 16px 24px; align-items: center; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(255,255,255,0.03); }
.lb-row.top1  { background: rgba(245,166,35,0.07); }
.lb-row.top2  { background: rgba(192,192,192,0.05); }
.lb-row.top3  { background: rgba(205,127,50,0.05); }
.rank-badge { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; }
.rank-1  { background: linear-gradient(135deg,#f5c842,#d4831a); color: #1a0d00; box-shadow: 0 0 10px rgba(245,166,35,0.5); }
.rank-2  { background: linear-gradient(135deg,#c8c8c8,#8a8a8a); color: #111; }
.rank-3  { background: linear-gradient(135deg,#d4956a,#8a5a30); color: #fff; }
.rank-n  { background: rgba(255,255,255,0.07); color: var(--muted); }
.player-info { display: flex; align-items: center; gap: 14px; }
.avatar  { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.player-name { font-weight: 600; font-size: 0.95rem; }
.level-badge { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 0.85rem; }
.winnings { font-weight: 700; font-family: monospace; color: var(--gold); font-size: 0.9rem; }

/* ── VIP ─────────────────────────────────────────────── */
.vip-hero { text-align: center; padding: 100px 0 60px; position: relative; overflow: hidden; }
.vip-hero::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.vip-img { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 20px; display: block; filter: drop-shadow(0 0 20px rgba(245,166,35,0.5)); }
.vip-img-fallback { font-size: 5rem; margin-bottom: 20px; }
.vip-hero h1 { font-size: clamp(2rem,5vw,3.5rem); margin-bottom: 16px; }
.vip-hero p  { color: var(--muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

.tiers-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(210px,1fr)); gap: 20px; }
.tier-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.tier-card:hover { transform: translateY(-6px); }
.tier-header { height: 90px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px; }
.tier-name { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; }
.tier-body { padding: 20px; }
.tier-pts  { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.tier-perk { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text); margin-bottom: 8px; }
.tier-perk::before { content: '✓'; color: var(--emerald); font-weight: 800; }

.tier-bronze  .tier-header { background: linear-gradient(135deg,#7a3d10,#3d1a03); }
.tier-silver  .tier-header { background: linear-gradient(135deg,#8a8a8a,#444); }
.tier-gold    .tier-header { background: linear-gradient(135deg,#c4890a,#7a4a03); }
.tier-plat    .tier-header { background: linear-gradient(135deg,#4a8ac4,#1a3d7a); }
.tier-diamond .tier-header { background: linear-gradient(135deg,#9c31b8,#461270); }
.tier-diamond { border-color: rgba(156,49,184,0.4); box-shadow: 0 0 30px rgba(156,49,184,0.15); }

/* ── ABOUT / FAQ ─────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.about-text h2 { font-size: clamp(1.7rem,3.5vw,2.5rem); margin-bottom: 20px; }
.about-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.disclaimer {
  background: var(--card); border: 1px solid rgba(245,166,35,0.25);
  border-radius: 14px; padding: 20px 24px; margin-top: 28px;
  display: flex; gap: 14px; align-items: flex-start;
}
.disclaimer .icon { font-size: 1.5rem; flex-shrink: 0; }
.disclaimer p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }

.faq h2 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 28px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 0.98rem;
  color: var(--text); transition: color 0.2s; gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron { flex-shrink: 0; font-size: 1.1rem; transition: transform 0.3s; color: var(--muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s;
  color: var(--muted); font-size: 0.92rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 16px; }

/* ── GLASS PANEL ─────────────────────────────────────── */
.glass {
  background: rgba(17,20,48,0.7); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--radius);
}

/* ── PROMO BANNER ────────────────────────────────────── */
.promo-banner {
  background: var(--card); border: 1px solid rgba(19,184,119,0.2); border-radius: 20px;
  padding: 40px 48px; display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.promo-banner h2 { font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: 10px; }
.promo-banner p  { color: var(--muted); }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 0 30px; margin-top: 80px; position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(245,166,35,0.5),transparent);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.7; max-width: 340px; }
.footer-disclaimer {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 9px 14px; border-radius: 10px; font-size: 0.8rem; color: var(--muted);
}
footer h4 { font-family: var(--font-head); font-size: 0.95rem; color: #fff; margin-bottom: 16px; letter-spacing: 0.05em; }
footer ul { list-style: none; }
footer ul li + li { margin-top: 8px; }
footer ul a { text-decoration: none; color: var(--muted); font-size: 0.88rem; transition: color 0.2s; cursor: pointer; }
footer ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; color: var(--muted);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.social-icon:hover { background: var(--gold); color: #1a0d00; border-color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  nav.desktop { display: none; }
  .coin-badge { display: none; }
  .hamburger  { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .lb-thead,.lb-row { grid-template-columns: 64px 1fr 80px 120px; }
}
@media (max-width: 620px) {
  .section   { padding: 56px 0; }
  .hero-stats{ gap: 24px; }
  .promo-hero { padding: 32px 24px; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .lb-thead { display: none; }
  .lb-row   { grid-template-columns: 50px 1fr 100px; }
  .lb-row .level-col { display: none; }
  .promo-banner { text-align: center; justify-content: center; }
}
