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

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

:root {
  --bg-deep:    #060B0F;
  --bg-card:    #0B1218;
  --bg-section: #0F1A22;
  --gold:       #C8922A;
  --gold-light: #E0A83C;
  --gold-dim:   #6E4E12;
  --accent:     #1B8A6B;
  --accent-light:#22B085;
  --text-main:  #EAE6E0;
  --text-muted: #7A8A90;
  --border:     #162028;
  --radius:     8px;
  --radius-lg:  14px;
  --nav-h:      70px;
  --max-w:      1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.75;
  font-size: 16px;
  min-height: 100vh;
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.05rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold-light); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
strong { font-weight: 600; }

.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(6,11,15,.94);
  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 { display: flex; align-items: center; }
.logo img { display: block; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: .875rem; font-weight: 500;
  padding: 7px 15px; border-radius: var(--radius); transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-main); background: var(--bg-section); }
.nav-cta { background: var(--accent) !important; color: #fff !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--accent-light) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: .3s; }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(6,11,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(--text-muted); border-bottom: 1px solid var(--border); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-light); }

/* ── HERO ── */
.hero {
  padding-top: calc(var(--nav-h) + 90px);
  padding-bottom: 90px;
  position: relative; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(105deg, rgba(6,11,15,.95) 40%, rgba(6,11,15,.5) 100%);
}

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(27,138,107,.12); border: 1px solid rgba(27,138,107,.3);
  color: var(--accent-light); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px; margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 580px; margin-bottom: 36px; }
.hero-actions { 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: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all .2s; text-decoration: none;
}
.btn-green { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(27,138,107,.3); }
.btn-green:hover { background: var(--accent-light); color: #fff; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #000; box-shadow: 0 4px 20px rgba(200,146,42,.25); }
.btn-gold:hover { background: var(--gold-light); color: #000; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.btn-ghost:hover { border-color: var(--accent); color: var(--text-main); }

/* ── STATS ROW ── */
.stats-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 52px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat-item {}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block; color: var(--accent-light);
  font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: all .25s;
}
.card:hover { border-color: rgba(27,138,107,.4); transform: translateY(-2px); }
.card .icon { font-size: 1.8rem; margin-bottom: 14px; }
.card h4 { margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

.card-accent { border-left: 3px solid var(--accent); }
.card-gold   { border-left: 3px solid var(--gold); }

/* ── GRID LAYOUTS ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 32px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }

/* ── OFFER BOX ── */
.offer-box {
  background: linear-gradient(135deg, #0D1E14, #0B1A12);
  border: 1px solid rgba(27,138,107,.35);
  border-radius: var(--radius-lg); padding: 36px; position: relative; overflow: hidden;
}
.offer-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), transparent);
}
.offer-amount {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--gold-light); line-height: 1.1; margin: 10px 0;
}
.offer-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-light); }
.offer-note { font-size: .85rem; color: var(--text-muted); margin-top: 10px; }

/* ── TABLE ── */
.data-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin: 28px 0; }
.data-table th { background: var(--bg-section); color: var(--accent-light); font-family: 'Inter', sans-serif; font-weight: 600; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table td { padding: 13px 18px; font-size: .9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.data-table td:first-child { color: var(--text-main); font-weight: 500; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,.015); }

/* ── STEPS ── */
.step-list { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.step-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--border); line-height: 1; flex-shrink: 0; width: 40px; text-align: right;
}
.step-content h4 { margin-bottom: 4px; }
.step-content p { font-size: .875rem; color: var(--text-muted); margin: 0; }

/* ── CHECK LIST ── */
.check-list { list-style: none; margin: 16px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: .9rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: '✓'; color: var(--accent-light); font-weight: 700; margin-top: 1px; flex-shrink: 0; }

/* ── PILL TAGS ── */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.pill { background: var(--bg-section); border: 1px solid var(--border); color: var(--text-muted); font-size: .8rem; padding: 5px 12px; border-radius: 40px; }

/* ── HIGHLIGHT BOX ── */
.highlight {
  background: var(--bg-section); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; margin: 20px 0; font-size: .9rem; color: var(--text-muted);
}
.highlight strong { color: var(--gold-light); }

/* ── DISCLAIMER ── */
.disclaimer {
  background: rgba(200,146,42,.06); border: 1px solid rgba(200,146,42,.18);
  border-radius: var(--radius); padding: 14px 18px; font-size: .8rem; color: var(--text-muted); margin: 20px 0;
}

/* ── PAGE HEADER ── */
.page-header { padding-top: calc(var(--nav-h) + 70px); padding-bottom: 70px; position: relative; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 80% 50%, rgba(27,138,107,.07) 0%, transparent 60%); }

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

/* ── FOOTER ── */
footer { background: var(--bg-card); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-top { padding: 60px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; max-width: 240px; margin-top: 14px; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { color: var(--text-muted); font-size: .875rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--text-main); }
.footer-bottom { padding: 18px 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { font-size: .72rem; background: var(--bg-section); border: 1px solid var(--border); padding: 4px 10px; border-radius: 4px; color: var(--text-muted); }
.badge-green { border-color: rgba(27,138,107,.4); color: var(--accent-light); }

/* ── GAME TILE ── */
.game-tile { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 14px; text-align: center; transition: all .2s; }
.game-tile:hover { border-color: rgba(27,138,107,.4); transform: translateY(-2px); }
.game-tile .gi { font-size: 1.9rem; margin-bottom: 8px; }
.game-tile .gn { font-size: .85rem; font-weight: 600; margin-bottom: 3px; }
.game-tile .gt { font-size: .75rem; color: var(--text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-row { gap: 24px; }
}
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: calc(var(--nav-h) + 52px); padding-bottom: 52px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.anim { animation: fadeUp .55s ease forwards; }
.d1 { animation-delay: .08s; opacity: 0; }
.d2 { animation-delay: .18s; opacity: 0; }
.d3 { animation-delay: .28s; opacity: 0; }
