:root {
  --bg: #060807;
  --bg-2: #0d100e;
  --card: #141815;
  --accent: #39ff14;
  --accent-2: #ff2e2e;
  --accent-3: #00b8ff;
  --text: #eafff0;
  --muted: #8fa89a;
  --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, .brand span, .step-num, .stat-num, .ticker {
  font-family: 'Bangers', cursive;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--accent);
  color: #06110a;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-tg {
  background: var(--accent-2);
  color: #fff;
  padding: 10px 22px;
  box-shadow: 0 0 20px rgba(255, 46, 46, 0.4);
}

/* ---------- CA Banner ---------- */
.ca-banner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  color: #06110a; font-weight: 600; font-size: .9rem; text-align: center;
}
.ca-banner-warn { font-weight: 800; letter-spacing: .3px; }
.ca-banner code {
  background: rgba(6, 17, 10, 0.9); color: var(--accent);
  padding: 4px 10px; border-radius: 6px; font-size: .82rem; word-break: break-all;
}
.ca-banner-copy {
  background: #06110a; color: #fff; border: none; border-radius: 6px;
  padding: 5px 14px; cursor: pointer; font-weight: 700; font-size: .82rem;
}
.ca-banner-copy:hover { background: var(--accent-3); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 8, 7, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); }
.brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.brand span { font-size: 1.6rem; }
.nav-links { margin-left: auto; display: flex; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative; text-align: center; padding: 80px 24px 0; overflow: hidden;
  background: radial-gradient(1200px 500px at 50% -10%, rgba(57, 255, 20, 0.18), transparent 70%), var(--bg);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 46, 46, 0.22), transparent 60%);
  top: -100px; left: 50%; transform: translateX(-50%); filter: blur(40px); z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-img {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  border: 6px solid var(--accent); box-shadow: 0 0 60px rgba(57,255,20,0.4);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero h1 { font-size: clamp(3.5rem, 11vw, 7rem); margin: 24px 0 8px; line-height: 1; color: var(--accent); text-shadow: 0 0 30px rgba(57,255,20,0.5); }
.tagline { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--muted); max-width: 620px; margin: 0 auto 28px; }
.sol { color: var(--accent); font-weight: 700; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Ticker ---------- */
.ticker-strip {
  margin-top: 60px; background: var(--accent); color: #06110a; overflow: hidden;
  white-space: nowrap; transform: rotate(-2deg) scale(1.05);
  border-top: 3px solid #06110a; border-bottom: 3px solid #06110a;
}
.ticker { display: inline-block; padding: 12px 0; font-size: 1.5rem; letter-spacing: 2px; animation: scroll 18s linear infinite; }
.ticker span { margin: 0 18px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin-bottom: 20px; text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.about, .about p, .about .lead { text-align: center; margin-left: auto; margin-right: auto; }
.about .lead { margin-bottom: 20px; }
.about p { color: var(--muted); max-width: 720px; }
.tokenomics { background: var(--bg-2); }

/* ---------- Stat grid ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 16px; text-align: center; transition: transform .15s, border-color .15s; }
.stat-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.stat-num { font-size: 2.6rem; color: var(--accent); }
.stat-label { color: var(--muted); margin-top: 6px; font-weight: 500; }

/* ---------- Contract ---------- */
.contract { text-align: center; margin-top: 20px; }
.contract-label { display: block; color: var(--muted); margin-bottom: 10px; font-weight: 600; }
.contract-box { display: inline-flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 10px 10px 10px 20px; max-width: 100%; flex-wrap: wrap; justify-content: center; }
.contract-box code { color: var(--accent); font-size: .95rem; word-break: break-all; }
.copy-btn { background: var(--accent-3); color: #06110a; border: none; border-radius: 8px; padding: 8px 16px; cursor: pointer; font-weight: 700; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.step { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 30px 24px; transition: transform .15s; }
.step:hover { transform: translateY(-6px); }
.step-num { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent); color: #06110a; border-radius: 50%; font-size: 1.6rem; margin-bottom: 16px; }
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .95rem; }
.buy-cta { text-align: center; margin-top: 40px; }

/* ---------- Trackers ---------- */
.trackers { background: var(--bg-2); }
.track-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 30px; }
.track-btn { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 28px; color: var(--text); text-decoration: none; font-weight: 600; transition: transform .15s, border-color .15s, color .15s; }
.track-btn:hover { transform: translateY(-4px); border-color: var(--accent); color: var(--accent); }

/* ---------- Community ---------- */
.community { text-align: center; }
.community-img { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 5px solid var(--accent-2); margin-bottom: 20px; }
.community .lead { margin-bottom: 30px; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 440px; margin: 0 auto; }
.social-btn { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px 12px; text-decoration: none; display: flex; flex-direction: column; gap: 6px; transition: transform .15s, border-color .15s; }
.social-btn:hover { transform: translateY(-6px); border-color: var(--accent-2); }
.social-name { font-weight: 700; color: var(--text); }
.social-count { color: var(--muted); font-size: .9rem; }

/* ---------- Footer ---------- */
.footer { background: #030503; padding: 60px 0 40px; text-align: center; border-top: 1px solid var(--border); }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 2px solid var(--accent); }
.disclaimer { color: var(--muted); font-size: .85rem; max-width: 720px; margin: 0 auto 20px; }
.copyright { color: var(--muted); font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .stat-grid, .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid, .steps, .social-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; }
}
