:root {
  --bg: #05070f;
  --panel: rgba(255,255,255,0.04);
  --border: rgba(124,245,200,0.15);
  --accent: #7cf5c8;
  --gold: #ffd166;
  --text: #e8ecf8;
  --muted: #8b93b0;
  --font-head: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.bg-grid {
  position: fixed; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(124,245,200,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,245,200,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 75%);
}
.orb { position: fixed; border-radius: 50%; filter: blur(120px); z-index: -1; opacity: .35; animation: float 14s ease-in-out infinite; }
.orb-1 { width: 480px; height: 480px; background: #0e3b2e; top: -120px; left: -120px; }
.orb-2 { width: 420px; height: 420px; background: #123a5c; bottom: -100px; right: -100px; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: #3b2e0e; top: 40%; left: 60%; animation-delay: -9s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-40px); } }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: .3s; }
.nav.scrolled { background: rgba(5,7,15,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-weight: 800; color: var(--text); text-decoration: none; letter-spacing: .08em; font-size: 1.05rem; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 500; transition: .2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta { background: var(--accent); color: #04121b !important; padding: 10px 18px; border-radius: 10px; font-weight: 700 !important; }
.nav-cta:hover { box-shadow: 0 0 24px rgba(124,245,200,.4); }

.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: url('cover.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(5,7,15,.1), rgba(5,7,15,.85) 70%),
    linear-gradient(180deg, rgba(5,7,15,.55), rgba(5,7,15,.2) 40%, var(--bg) 96%);
}
.hero-hud { position: absolute; width: 70px; height: 70px; border: 2px solid rgba(124,245,200,.5); }
.hud-tl { top: 90px; left: 28px; border-right: none; border-bottom: none; }
.hud-tr { top: 90px; right: 28px; border-left: none; border-bottom: none; }
.hud-bl { bottom: 28px; left: 28px; border-right: none; border-top: none; }
.hud-br { bottom: 28px; right: 28px; border-left: none; border-top: none; }
.hero-content { position: relative; padding: 100px 24px 60px; max-width: 900px; }
.badge {
  display: inline-block; padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(124,245,200,.08);
  color: var(--accent); font-size: .8rem; font-weight: 600; letter-spacing: .2em;
  margin-bottom: 26px; animation: pulse 2.6s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(124,245,200,.25); } 50% { box-shadow: 0 0 0 12px rgba(124,245,200,0); } }
.hero h1 {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  letter-spacing: .06em; line-height: 1.05; color: #fff;
  text-shadow: 0 0 40px rgba(124,245,200,.35);
}
.tagline { margin-top: 22px; color: #cdd6ee; font-size: clamp(1rem, 2.4vw, 1.3rem); line-height: 1.6; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; color: var(--accent); animation: bounce 2s infinite; font-size: .9rem; }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

.btn { display: inline-block; padding: 16px 30px; border-radius: 14px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: .25s; border: 1px solid transparent; }
.btn-primary { background: linear-gradient(135deg, var(--accent), #35d0a5); color: #04121b; box-shadow: 0 8px 30px rgba(124,245,200,.25); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(124,245,200,.4); }
.btn-ghost { border-color: var(--border); color: var(--text); background: rgba(255,255,255,.03); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.btn-big { font-size: 1.1rem; padding: 18px 40px; }

.section { max-width: 1100px; margin: 0 auto; padding: 100px 24px; }
.section-head { text-align: center; margin-bottom: 54px; }
.section-tag { color: var(--accent); font-family: monospace; letter-spacing: .2em; font-size: .8rem; }
.section-head h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.4rem); margin-top: 12px; color: #fff; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 34px 28px; backdrop-filter: blur(10px); transition: .3s; }
.card:hover { transform: translateY(-6px); border-color: rgba(124,245,200,.45); box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 30px rgba(124,245,200,.08); }
.card-icon { font-size: 2.4rem; margin-bottom: 18px; }
.card h3 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 12px; color: #fff; }
.card p { color: var(--muted); line-height: 1.65; font-size: .95rem; }

.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 760px; margin: 0 auto; }
.price-card { position: relative; background: var(--panel); border: 1px solid var(--border); border-radius: 24px; padding: 40px 32px; text-align: center; backdrop-filter: blur(10px); transition: .3s; }
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { border-color: rgba(255,209,102,.5); background: linear-gradient(160deg, rgba(255,209,102,.08), rgba(255,255,255,.03)); }
.price-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #241a03; font-weight: 800; font-size: .72rem; letter-spacing: .12em; padding: 6px 16px; border-radius: 999px; }
.price-label { color: var(--muted); letter-spacing: .25em; font-size: .75rem; font-weight: 700; }
.price { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: #fff; margin: 14px 0 22px; }
.price-card ul { list-style: none; color: var(--muted); display: grid; gap: 10px; font-size: .95rem; }
.buy-cta { text-align: center; margin-top: 40px; }

.preview-banner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 30px; background: var(--panel); border: 1px solid var(--border); border-radius: 24px; padding: 46px; backdrop-filter: blur(10px); overflow: hidden; }
.preview-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(124,245,200,.06) 50%, transparent 70%); animation: shine 4s infinite; }
@keyframes shine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.preview-info h2 { font-family: var(--font-head); margin: 10px 0 14px; color: #fff; }
.preview-info p { color: var(--muted); margin-bottom: 24px; max-width: 520px; line-height: 1.65; }
.preview-status { display: flex; align-items: center; gap: 10px; color: var(--gold); font-weight: 700; letter-spacing: .15em; font-size: .85rem; white-space: nowrap; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .25; } }

.social-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.social { display: flex; align-items: center; gap: 10px; padding: 16px 28px; border-radius: 16px; border: 1px solid var(--border); background: var(--panel); color: var(--text); text-decoration: none; font-weight: 600; transition: .25s; backdrop-filter: blur(8px); }
.social span { font-size: 1.3rem; }
.social:hover { transform: translateY(-4px); }
.tiktok:hover { border-color: #ff0050; box-shadow: 0 10px 30px rgba(255,0,80,.25); }
.instagram:hover { border-color: #e1306c; box-shadow: 0 10px 30px rgba(225,48,108,.25); }
.youtube:hover { border-color: #ff0000; box-shadow: 0 10px 30px rgba(255,0,0,.25); }
.discord:hover { border-color: #5865f2; box-shadow: 0 10px 30px rgba(88,101,242,.25); }

.hint { color: var(--muted); font-size: .9rem; margin-top: 18px; }
.center { text-align: center; }

.footer { border-top: 1px solid var(--border); padding: 40px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer p { color: var(--muted); font-size: .9rem; }

.preview-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.preview-wrap { padding: 40px 24px; text-align: center; }
.preview-card { max-width: 640px; background: var(--panel); border: 1px solid var(--border); border-radius: 28px; padding: 60px 40px; backdrop-filter: blur(12px); }
.preview-emoji { font-size: 4.5rem; margin-bottom: 20px; animation: float 4s ease-in-out infinite; }
.preview-card h1 { font-family: var(--font-head); color: #fff; font-size: clamp(1.6rem, 5vw, 2.6rem); margin: 16px 0 26px; line-height: 1.2; }
.preview-card p { color: var(--muted); line-height: 1.7; margin: 26px 0 30px; }
.progress { height: 8px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; max-width: 380px; margin: 0 auto; }
.progress-bar { height: 100%; width: 40%; background: linear-gradient(90deg, var(--accent), var(--gold)); border-radius: 999px; animation: load 2.4s ease-in-out infinite; }
@keyframes load { 0% { width: 8%; margin-left: 0; } 50% { width: 70%; margin-left: 15%; } 100% { width: 8%; margin-left: 92%; } }

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .preview-banner { flex-direction: column; text-align: center; padding: 34px 24px; }
  .hero-hud { display: none; }
}
