@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

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

:root {
  --bg:         #08060F;
  --bg-card:    #0E0B18;
  --bg-section: #120F1E;
  --purple:     #7C5CFC;
  --purple-light:#9B80FF;
  --purple-dim: #3D2D8A;
  --gold:       #D4A843;
  --gold-light: #EEC060;
  --text:       #E8E4F0;
  --muted:      #7870A0;
  --border:     #1E1A30;
  --radius:     6px;
  --radius-lg:  12px;
  --nav-h:      68px;
  --max-w:      1120px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Syne', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-dim); border-radius: 3px; }

h1,h2,h3 { font-family: 'Source Serif 4', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 400; }
h4 { font-size: 1rem; font-weight: 700; font-family: 'Syne', sans-serif; letter-spacing: .02em; }
p { margin-bottom: 1rem; } p:last-child { margin-bottom: 0; }
a { color: var(--purple-light); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 80px 0; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); background: rgba(8,6,15,.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo img { display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a { color: var(--muted); font-size: .875rem; font-weight: 600; padding: 7px 14px; border-radius: var(--radius); transition: all .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--bg-section); }
.nav-cta { background: var(--purple) !important; color: #fff !important; }
.nav-cta:hover { background: var(--purple-light) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,6,15,.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: var(--muted); border-bottom: 1px solid var(--border); font-weight: 600; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--purple-light); }

/* HERO */
.hero { padding-top: calc(var(--nav-h) + 100px); padding-bottom: 100px; position: relative; overflow: hidden; }
.hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-mask { position: absolute; inset: 0; z-index: 1; background: linear-gradient(110deg, rgba(8,6,15,.96) 45%, rgba(8,6,15,.6) 100%); }
.hero > .container { position: relative; z-index: 2; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(124,92,252,.12); border: 1px solid rgba(124,92,252,.3); color: var(--purple-light); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: 40px; margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-family: 'Source Serif 4', serif; font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 16px 0 36px; font-weight: 300; font-style: italic; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; cursor: pointer; border: none; transition: all .2s; text-decoration: none; }
.btn-purple { background: var(--purple); color: #fff; box-shadow: 0 4px 20px rgba(124,92,252,.35); }
.btn-purple:hover { background: var(--purple-light); color: #fff; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #000; }
.btn-gold:hover { background: var(--gold-light); color: #000; }
.btn-line { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.btn-line:hover { border-color: var(--purple-dim); color: var(--text); }

/* SECTION LABEL */
.label { display: inline-block; color: var(--purple-light); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 10px; }

/* DIVIDER LINE */
.rule { height: 1px; background: var(--border); margin: 48px 0; }

/* STAT BAR */
.stat-bar { display: flex; gap: 0; margin: 48px 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { flex: 1; padding: 28px 24px; border-right: 1px solid var(--border); background: var(--bg-card); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: 'Source Serif 4', serif; font-size: 2.2rem; font-weight: 600; color: var(--purple-light); line-height: 1; margin-bottom: 6px; }
.stat-l { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

/* TABLE */
.tbl { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0; }
.tbl th { background: var(--bg-section); color: var(--purple-light); font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.tbl td { padding: 13px 18px; font-size: .9rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.tbl td:first-child { color: var(--text); font-weight: 600; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: rgba(124,92,252,.04); }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 28px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; transition: all .22s; }
.card:hover { border-color: var(--purple-dim); transform: translateY(-2px); }
.card .ic { font-size: 1.8rem; margin-bottom: 14px; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: .875rem; color: var(--muted); margin: 0; }
.card-p { border-left: 2px solid var(--purple); }
.card-g { border-left: 2px solid var(--gold); }

/* TWO COL */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

/* HIGHLIGHT */
.hl { background: var(--bg-section); border: 1px solid var(--border); border-left: 3px solid var(--purple); border-radius: var(--radius); padding: 18px 22px; margin: 20px 0; font-size: .9rem; color: var(--muted); }
.hl strong { color: var(--purple-light); }

/* OFFER PANEL */
.offer { background: linear-gradient(135deg, #0E0B18, #140F22); border: 1px solid var(--purple-dim); border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden; }
.offer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--purple), var(--gold), transparent); }
.offer-n { font-family: 'Source Serif 4', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; color: var(--gold-light); line-height: 1.1; margin: 8px 0; }
.offer-tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); }
.offer-note { font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* STEPS */
.steps { list-style: none; counter-reset: s; margin: 20px 0; }
.steps li { counter-increment: s; display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.steps li:last-child { border-bottom: none; }
.steps li::before { content: counter(s); font-family: 'Source Serif 4', serif; font-size: 1.8rem; font-weight: 600; color: var(--border); line-height: 1; flex-shrink: 0; width: 32px; text-align: right; }
.steps li h4 { margin-bottom: 4px; }
.steps li p { font-size: .875rem; color: var(--muted); margin: 0; }

/* CHECKLIST */
.cl { list-style: none; margin: 14px 0; }
.cl li { display: flex; gap: 12px; padding: 8px 0; font-size: .9rem; color: var(--muted); border-bottom: 1px solid var(--border); }
.cl li:last-child { border-bottom: none; }
.cl li::before { content: '→'; color: var(--purple-light); font-weight: 700; flex-shrink: 0; }

/* PILLS */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.pill { background: var(--bg-section); border: 1px solid var(--border); color: var(--muted); font-size: .78rem; font-weight: 700; padding: 5px 12px; border-radius: 40px; }

/* DISCLAIMER */
.disc { background: rgba(212,168,67,.06); border: 1px solid rgba(212,168,67,.18); border-radius: var(--radius); padding: 14px 18px; font-size: .8rem; color: var(--muted); margin: 20px 0; }

/* GAME TILES */
.gtiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; margin: 24px 0; }
.gtile { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 12px; text-align: center; transition: all .2s; }
.gtile:hover { border-color: var(--purple-dim); }
.gtile .gi { font-size: 1.8rem; margin-bottom: 8px; }
.gtile .gn { font-size: .82rem; font-weight: 700; margin-bottom: 3px; }
.gtile .gs { font-size: .72rem; color: var(--muted); }

/* FOOTER */
footer { background: var(--bg-card); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.ft { padding: 60px 0 44px; }
.fg { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.fb p { font-size: .875rem; color: var(--muted); margin-top: 14px; max-width: 240px; line-height: 1.7; }
.fc h5 { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-light); margin-bottom: 14px; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 9px; }
.fc a { color: var(--muted); font-size: .875rem; }
.fc a:hover { color: var(--text); }
.fb-bot { padding: 18px 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.fb-bot p { font-size: .78rem; color: var(--muted); }
.bdgs { display: flex; gap: 8px; flex-wrap: wrap; }
.bdg { font-size: .7rem; font-weight: 700; background: var(--bg-section); border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; color: var(--muted); }
.bdg-p { border-color: rgba(124,92,252,.4); color: var(--purple-light); }

/* LEGAL */
.legal { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 14px; padding-top: 36px; border-top: 1px solid var(--border); }
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p, .legal li { color: var(--muted); font-size: .95rem; }
.legal ul, .legal ol { padding-left: 20px; margin: 12px 0 16px; }
.legal li { margin-bottom: 8px; }
.legal-top { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

/* PAGE HEADER */
.ph { padding-top: calc(var(--nav-h) + 72px); padding-bottom: 72px; position: relative; overflow: hidden; }
.ph-glow { position: absolute; top: -100px; right: -100px; width: 500px; height: 400px; background: radial-gradient(ellipse, rgba(124,92,252,.09) 0%, transparent 70%); pointer-events: none; }

/* RESPONSIVE */
@media (max-width:900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .two { grid-template-columns: 1fr; gap: 28px; }
  .fg { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width:600px) {
  section { padding: 52px 0; }
  .fg { grid-template-columns: 1fr; gap: 20px; }
  .fb-bot { flex-direction: column; align-items: flex-start; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@keyframes fu { from { opacity:0; transform: translateY(14px); } to { opacity:1; transform: translateY(0); } }
.a { animation: fu .5s ease forwards; }
.a1 { animation-delay: .08s; opacity: 0; }
.a2 { animation-delay: .18s; opacity: 0; }
.a3 { animation-delay: .28s; opacity: 0; }
