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

:root {
  --bg: #080a10;
  --bg-card: #121620;
  --bg-surf: #1a1f2e;
  --bg-surf2: #242b3d;
  --accent: #0090ff;
  --accent2: #33a6ff;
  --accent-red: #ff4d4d;
  --neon: #00d4ff;
  --success: #00e676;
  --text: #ffffff;
  --text2: #8a96ab;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 8px 24px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-surf);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; display: block; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--text2); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  color: var(--text);
  background: var(--bg-surf2);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  box-shadow: 0 0 16px rgba(0,144,255,0.35);
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; box-shadow: 0 0 24px rgba(0,144,255,0.5) !important; }

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

@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-surf);
    flex-direction: column; align-items: stretch;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 2px;
  }
  nav.open { display: flex; }
  nav a { padding: 10px 14px; }
}

/* ─── MAIN LAYOUT ─── */
main { position: relative; z-index: 1; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 90px 24px 80px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,144,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,144,255,0.15); border: 1px solid rgba(0,144,255,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: var(--accent2);
  margin-bottom: 28px; letter-spacing: 0.5px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 1.15rem; color: var(--text2);
  max-width: 620px; margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(0,144,255,0.4);
}
.btn-primary:hover { background: var(--accent2); box-shadow: 0 0 36px rgba(0,144,255,0.6); transform: translateY(-1px); }
.btn-secondary {
  background: var(--bg-surf2);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-surf); border-color: rgba(255,255,255,0.15); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(0,144,255,0.25); transform: translateY(-2px); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(0,144,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.card p { color: var(--text2); font-size: 0.95rem; }

/* ─── SECTION TITLES ─── */
.section { padding: 72px 0; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.section-sub { color: var(--text2); max-width: 580px; margin-bottom: 48px; }

/* ─── STATS BAR ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 48px 0;
}
.stat-item {
  background: var(--bg-card);
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-size: 2rem; font-weight: 900;
  color: var(--accent); font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text2); margin-top: 6px; }

/* ─── IMAGE BLOCK ─── */
.page-image {
  width: 100%; max-height: 400px;
  object-fit: cover; border-radius: 16px;
  border: 1px solid var(--border);
  margin: 40px 0;
}

/* ─── TABLE ─── */
table {
  width: 100%; border-collapse: collapse;
  background: var(--bg-card); border-radius: 12px;
  overflow: hidden; margin: 28px 0;
  border: 1px solid var(--border);
}
th {
  background: var(--bg-surf); color: var(--text);
  font-weight: 700; font-size: 14px;
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  color: var(--text2); font-size: 14px;
}
tr:last-child td { border-bottom: none; }
td:first-child { color: var(--text); font-weight: 500; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* ─── LISTS ─── */
.styled-ul, .styled-ol {
  padding-left: 0; list-style: none; margin: 20px 0;
}
.styled-ul li, .styled-ol li {
  padding: 8px 0 8px 28px;
  position: relative; color: var(--text2); font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.styled-ul li:last-child, .styled-ol li:last-child { border-bottom: none; }
.styled-ul li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--accent); font-size: 12px; top: 10px;
}
.styled-ol { counter-reset: item; }
.styled-ol li { counter-increment: item; }
.styled-ol li::before {
  content: counter(item);
  position: absolute; left: 0;
  background: var(--accent); color: #fff;
  width: 18px; height: 18px;
  border-radius: 50%; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  top: 10px;
}

/* ─── HIGHLIGHT BOX ─── */
.highlight-box {
  background: linear-gradient(135deg, rgba(0,144,255,0.1), rgba(0,212,255,0.05));
  border: 1px solid rgba(0,144,255,0.25);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 32px 0;
}
.highlight-box.success { background: rgba(0,230,118,0.08); border-color: rgba(0,230,118,0.25); }
.highlight-box.warning { background: rgba(255,77,77,0.08); border-color: rgba(255,77,77,0.25); }

/* ─── FAQ ─── */
.faq-section { margin: 60px 0 40px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 12px;
  overflow: hidden; background: var(--bg-card);
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 0.95rem;
  user-select: none;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-surf2); }
.faq-question::after {
  content: '+'; font-size: 22px; color: var(--accent);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--text2); font-size: 0.93rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-surf) 0%, var(--bg-surf2) 100%);
  border: 1px solid rgba(0,144,255,0.2);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  position: relative; overflow: hidden;
  margin: 60px 0 0;
}
.cta-banner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 300px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.cta-banner p { color: var(--text2); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ─── AGE WARNING ─── */
.age-warning {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,77,77,0.1); border: 1px solid rgba(255,77,77,0.25);
  border-radius: 8px; padding: 12px 18px;
  font-size: 13px; color: var(--accent-red);
  margin: 32px 0;
}
.age-badge {
  background: var(--accent-red); color: #fff;
  font-weight: 900; font-size: 13px;
  border-radius: 6px; padding: 2px 8px;
  flex-shrink: 0;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 20px 0;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text2);
}
.breadcrumb a { color: var(--text2); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); }

/* ─── FOOTER ─── */
footer {
  background: var(--bg-surf);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
  margin-top: 80px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text2); font-size: 14px; line-height: 1.7; margin-top: 16px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 16px; }
.footer-col a {
  display: block; color: var(--text2);
  text-decoration: none; font-size: 14px;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--text2);
}
.footer-bottom a { color: var(--text2); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
.ext-links { display: flex; gap: 24px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero { padding: 60px 24px 56px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
}

/* ─── PROSE CONTENT ─── */
.prose h2 { font-size: 1.5rem; font-weight: 800; margin: 48px 0 16px; letter-spacing: -0.3px; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 12px; color: var(--accent2); }
.prose p { color: var(--text2); margin-bottom: 18px; line-height: 1.8; }
.prose p strong { color: var(--text); }
.prose a { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

/* ─── NEON MONO ─── */
.mono { font-family: 'JetBrains Mono', monospace; }
.text-accent { color: var(--accent); }
.text-neon { color: var(--neon); }
.text-success { color: var(--success); }
.text-muted { color: var(--text2); }

/* ─── STEPS ─── */
.steps { counter-reset: step; margin: 36px 0; }
.step-item {
  display: flex; gap: 20px;
  margin-bottom: 28px;
  counter-increment: step;
}
.step-num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
  box-shadow: 0 0 16px rgba(0,144,255,0.4);
}
.step-content h4 { font-weight: 700; margin-bottom: 6px; }
.step-content p { color: var(--text2); font-size: 0.93rem; }

/* ─── PAYMENT ICONS GRID ─── */
.payment-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 28px 0;
}
.payment-chip {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 18px;
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  color: var(--text2);
}
.payment-chip.crypto { border-color: rgba(0,212,255,0.25); color: var(--neon); }
