:root {
  --bg: #0d0b14;
  --bg-2: #15111f;
  --card: #1c1729;
  --accent: #ffcf33;
  --accent-2: #ff5ca8;
  --accent-3: #7b5cff;
  --text: #f4f1fa;
  --muted: #a79fc0;
  --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 {
  font-family: 'Luckiest Guy', cursive;
  letter-spacing: 1px;
  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: 999px;
  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: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1320;
  box-shadow: 0 10px 30px rgba(255, 207, 51, 0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-tg {
  background: var(--accent-3);
  color: #fff;
  padding: 10px 22px;
  box-shadow: 0 8px 24px rgba(123, 92, 255, 0.4);
}

/* ---------- Official 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: #1a1320;
  font-weight: 600;
  font-size: .9rem;
  text-align: center;
}
.ca-banner-warn { font-weight: 800; letter-spacing: .3px; }
.ca-banner code {
  background: rgba(26, 19, 32, 0.9);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .82rem;
  word-break: break-all;
}
.ca-banner-copy {
  background: #1a1320;
  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(13, 11, 20, 0.8);
  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.4rem; }
.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(123, 92, 255, 0.25), transparent 70%), var(--bg);
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 168, 0.25), 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 20px 60px rgba(0,0,0,0.5);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero h1 { font-size: clamp(3rem, 9vw, 6rem); margin: 24px 0 8px; line-height: 1; }
.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: #1a1320;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-2deg) scale(1.05);
  border-top: 3px solid #1a1320;
  border-bottom: 3px solid #1a1320;
}
.ticker {
  display: inline-block;
  padding: 12px 0;
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.2rem;
  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(2rem, 5vw, 3.2rem); margin-bottom: 20px; text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 720px; }
.about .lead { margin-bottom: 20px; }
.about p { color: var(--muted); max-width: 720px; }
.about, .about p, .about .lead { text-align: center; margin-left: auto; margin-right: auto; }

.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.4rem; 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: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

/* ---------- 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: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1a1320;
  border-radius: 50%;
  font-size: 1.4rem;
  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: #08060d; 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, .social-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stat-grid, .steps, .social-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 50px; }
}
