/* ════════════════════════════════════════════════════════════
   GAMEVAULT — Design System
   Premium dark gaming aesthetic · gold + emerald accents
   ════════════════════════════════════════════════════════════ */

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

:root {
  --bg:        #08080E;
  --bg-2:      #0C0C16;
  --surf:      #11111C;
  --surf-2:    #16162200;
  --card:      #14141F;
  --card-hi:   #1A1A28;
  --border:    #24243300;
  --border-s:  #242433;
  --border-hi: #383850;
  --gold:      #F0B429;
  --gold-lt:   #FFD670;
  --gold-dk:   #8B6414;
  --emerald:   #00C98D;
  --emerald-dk:#057a55;
  --blue:      #3D8BF7;
  --red:       #FF4560;
  --text:      #EEEEF5;
  --muted:     #9494B8;
  --dim:       #5A5A78;
  --faint:     #2E2E44;
  --wa:        #25D366;
  --wa-dk:     #128C7E;
  --tg:        #2AABEE;
  --tg-dk:     #229ED9;
  --ms:        #0084FF;
  --ms-dk:     #006AFF;
  --maxw:      1180px;
  --radius:    14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(240,180,41,0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(61,139,247,0.05), transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px;
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }

h1, h2, h3, h4 { font-family: 'Cinzel', serif; line-height: 1.2; letter-spacing: 0.01em; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
code { font-family: 'JetBrains Mono', monospace; font-size: 0.9em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.gold-text {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 45%, var(--gold-dk) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ─── AGE GATE BANNER ─────────────────────────────────────── */
.age-banner {
  background: linear-gradient(90deg, #1A1404, #14141F);
  border-bottom: 1px solid var(--gold-dk);
  font-size: 12.5px; color: var(--gold-lt);
  text-align: center; padding: 7px 16px; letter-spacing: 0.03em;
}
.age-banner strong { color: var(--gold); }

/* ─── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(8,8,14,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-s);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'Cinzel', serif; font-size: 22px; font-weight: 900; letter-spacing: 0.08em; }
.logo .dot { color: var(--gold); }
.nav-links { display: none; gap: 26px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a.cta-mini {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #1A1404; padding: 8px 18px; border-radius: 8px; font-weight: 700;
}
.nav-links a.cta-mini:hover { color: #000; filter: brightness(1.08); }
.menu-toggle { background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero { position: relative; padding: 64px 0 56px; text-align: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(240,180,41,0.10), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(0,201,141,0.06), transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(240,180,41,0.10); border: 1px solid var(--gold-dk);
  color: var(--gold-lt); font-size: 12.5px; font-weight: 600;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 22px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.hero h1 { font-size: clamp(28px, 5.5vw, 52px); font-weight: 900; margin-bottom: 18px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hero p.sub { font-size: clamp(15px, 2.2vw, 19px); color: var(--muted); max-width: 620px; margin: 0 auto 32px; }

/* ─── CTA BUTTONS ─────────────────────────────────────────── */
.cta-group { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15.5px;
  padding: 14px 26px; border-radius: 11px; border: none; cursor: pointer;
  color: #fff; transition: transform .15s, filter .15s, box-shadow .15s;
  box-shadow: 0 6px 22px rgba(0,0,0,0.3);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; }
.btn-wa { background: linear-gradient(135deg, var(--wa), var(--wa-dk)); box-shadow: 0 6px 22px rgba(37,211,102,0.28); }
.btn-tg { background: linear-gradient(135deg, var(--tg), var(--tg-dk)); box-shadow: 0 6px 22px rgba(42,171,238,0.28); }
.btn-ms { background: linear-gradient(135deg, var(--ms), var(--ms-dk)); box-shadow: 0 6px 22px rgba(0,132,255,0.28); }
.btn-gold { background: linear-gradient(135deg, var(--gold-lt), var(--gold)); color: #1A1404; box-shadow: 0 6px 22px rgba(240,180,41,0.3); }
.btn-ghost { background: transparent; border: 1px solid var(--border-hi); color: var(--text); box-shadow: none; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }
.btn-lg { padding: 16px 32px; font-size: 16.5px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.hero-note { margin-top: 20px; font-size: 13px; color: var(--dim); }
.hero-note .sep { margin: 0 8px; opacity: 0.5; }

/* ─── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--border-s); border-bottom: 1px solid var(--border-s);
  background: rgba(12,12,22,0.6);
}
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 22px 20px; }
.trust-item { text-align: center; min-width: 92px; flex: 1; }
.trust-val { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 700; color: var(--gold); line-height: 1; }
.trust-lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ─── SECTIONS ────────────────────────────────────────────── */
section.block { padding: 56px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .eyebrow { color: var(--gold); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px; font-family: 'Cinzel', serif; }
.section-head h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* ─── FEATURE CARDS ───────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature-card {
  background: var(--card); border: 1px solid var(--border-s); border-radius: var(--radius);
  padding: 28px 24px; transition: border-color .25s, transform .25s;
  position: relative; overflow: hidden;
}
.feature-card:hover { border-color: var(--gold-dk); transform: translateY(-3px); }
.feature-card .ficon {
  width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(240,180,41,0.16), rgba(240,180,41,0.04));
  border: 1px solid var(--gold-dk); font-size: 26px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 19px; margin-bottom: 9px; color: var(--gold-lt); }
.feature-card p { color: var(--muted); font-size: 14.5px; }
.feature-card .count { position: absolute; top: 22px; right: 24px; font-family: 'Cinzel', serif; font-size: 13px; color: var(--gold); font-weight: 700; }

/* ─── STEPS ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--border-s); border-radius: var(--radius);
  padding: 26px 22px; text-align: center; position: relative;
}
.step .step-num {
  width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(240,180,41,0.18), transparent);
  border: 2px solid var(--gold-dk); color: var(--gold);
  font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ─── CONTENT PROSE ───────────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 28px; margin: 36px 0 16px; color: var(--gold-lt); }
.prose h3 { font-size: 21px; margin: 28px 0 12px; }
.prose p { color: #C8C8DC; margin-bottom: 16px; font-size: 16px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: #C8C8DC; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); }
.prose a { color: var(--gold-lt); border-bottom: 1px solid var(--gold-dk); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-s); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--card); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 22px; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { color: var(--gold); transition: transform .25s; font-size: 18px; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }
.faq-a p { color: var(--muted); font-size: 15px; }

/* ─── STATE GRID ──────────────────────────────────────────── */
.state-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.state-chip {
  background: var(--card); border: 1px solid var(--border-s); border-radius: var(--radius-sm);
  padding: 14px 16px; text-align: center; transition: all .2s; font-weight: 600; font-size: 14px;
}
.state-chip:hover { border-color: var(--gold-dk); color: var(--gold-lt); transform: translateY(-2px); }
.state-chip .sub { display: block; font-size: 11px; color: var(--dim); font-weight: 400; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── CITY GRID ───────────────────────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; max-width: 760px; margin: 0 auto; }
.city-card { background: var(--card); border: 1px solid var(--border-s); border-radius: var(--radius-sm); padding: 16px; text-align: center; }
.city-card .cname { font-weight: 600; color: var(--gold-lt); font-size: 15px; }
.city-card .cmeta { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ─── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1A1404 0%, #14141F 60%);
  border: 1px solid var(--gold-dk); border-radius: var(--radius);
  padding: 44px 32px; text-align: center; margin: 0 auto; max-width: 860px;
}
.cta-strip h2 { font-size: clamp(22px, 3.5vw, 30px); margin-bottom: 12px; }
.cta-strip p { color: var(--muted); margin-bottom: 26px; font-size: 16px; }

/* ─── STICKY CTA BAR (mobile) ─────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
  background: rgba(8,8,14,0.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-s);
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom)) 12px;
}
.sticky-cta .btn { padding: 12px 6px; font-size: 13.5px; box-shadow: none; border-radius: 10px; }
.sticky-cta .btn span.lbl { display: inline; }
@media (min-width: 1024px) {
  .sticky-cta {
    left: auto; right: 22px; bottom: 22px; top: auto;
    grid-template-columns: auto auto auto; border-radius: var(--radius);
    border: 1px solid var(--border-s); box-shadow: 0 12px 44px rgba(0,0,0,0.5);
    padding: 9px;
  }
  .sticky-cta .btn { padding: 12px 20px; min-width: 130px; }
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border-s); background: var(--bg-2); padding: 48px 0 32px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 36px; }
.footer-col h4 { font-size: 13px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--dim); font-size: 13.5px; max-width: 280px; }
.footer-legal { border-top: 1px solid var(--border-s); padding-top: 24px; }
.footer-disclaimer { color: var(--dim); font-size: 12px; line-height: 1.7; max-width: 880px; margin-bottom: 16px; }
.footer-disclaimer strong { color: var(--muted); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--dim); font-size: 12.5px; }
.footer-bottom .age-pill { background: rgba(240,180,41,0.1); border: 1px solid var(--gold-dk); color: var(--gold); padding: 3px 12px; border-radius: 20px; font-weight: 600; }

/* ─── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--dim); padding: 18px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ─── PAYMENT BADGES ──────────────────────────────────────── */
.pay-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.pay-badge { background: var(--card); border: 1px solid var(--border-s); border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--muted); }

/* ─── UTIL ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 28px; } .mt-lg { margin-top: 44px; }
.divider { height: 1px; background: var(--border-s); margin: 40px 0; border: none; }
.disclaimer-inline { font-size: 13px; color: var(--dim); text-align: center; margin-top: 20px; font-style: italic; }
