:root {
  --rad-green: #00ff41;
  --rad-green-dim: #00b32d;
  --toxic-yellow: #d4ff00;
  --bg-black: #000000;
  --bg-panel: #001a06;
  --danger-red: #ff2b2b;
  --border-glow: rgba(0, 255, 65, 0.35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at center, #001a00, #000000);
  color: var(--rad-green);
  font-family: "Courier New", Courier, monospace;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ---------- Radioactive animated background ---------- */
.radiation-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: repeating-radial-gradient(
    circle,
    rgba(0, 255, 65, 0.05) 0px,
    rgba(0, 255, 65, 0.05) 5px,
    transparent 6px,
    transparent 12px
  );
  animation: pulseGlow 6s infinite linear;
  overflow: hidden;
}

@keyframes pulseGlow {
  0% { opacity: 0.2; }
  50% { opacity: 0.45; }
  100% { opacity: 0.2; }
}

.rad-symbol {
  position: absolute;
  font-size: 12rem;
  color: var(--rad-green);
  opacity: 0.05;
  animation: spin-slow 40s linear infinite;
}
.rad-1 { top: -5%; left: -5%; animation-duration: 60s; }
.rad-2 { top: 40%; left: 70%; animation-duration: 45s; font-size: 16rem; }
.rad-3 { top: 75%; left: 10%; animation-duration: 55s; }
.rad-4 { top: 10%; left: 45%; animation-duration: 50s; font-size: 8rem; }
.rad-5 { top: 60%; left: 85%; animation-duration: 65s; font-size: 10rem; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.drip {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--rad-green), transparent);
  opacity: 0.25;
  animation: drip-fall 6s linear infinite;
}
.drip-1 { left: 15%; animation-delay: 0s; }
.drip-2 { left: 40%; animation-delay: 1.5s; }
.drip-3 { left: 65%; animation-delay: 3s; }
.drip-4 { left: 88%; animation-delay: 4.5s; }

@keyframes drip-fall {
  0% { transform: translateY(-20%); opacity: 0; }
  20% { opacity: 0.35; }
  100% { transform: translateY(220%); opacity: 0; }
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,255,65,0.03) 0px,
    rgba(0,255,65,0.03) 1px,
    transparent 2px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(4, 7, 3, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-glow);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-shadow: 0 0 8px var(--rad-green);
}

.brand-roach { font-size: 1.6rem; filter: drop-shadow(0 0 6px var(--rad-green)); }
.brand-coin { color: var(--toxic-yellow); }

.nav-links { display: flex; gap: 22px; align-items: center; font-size: 0.9rem; }
.nav-links a { transition: color 0.2s, text-shadow 0.2s; }
.nav-links a:hover { color: var(--toxic-yellow); text-shadow: 0 0 8px var(--toxic-yellow); }

.nav-cta {
  border: 1px solid var(--rad-green);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: 0 0 10px var(--border-glow);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 70px 20px 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,255,65,0.25), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.mascot-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.mascot-halo {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,65,0.5), transparent 70%);
  filter: blur(10px);
  animation: pulse-halo 2.4s ease-in-out infinite;
}

@keyframes pulse-halo {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.mascot {
  position: relative;
  font-size: 7rem;
  display: inline-block;
  filter: drop-shadow(0 0 25px var(--rad-green)) drop-shadow(0 0 45px var(--rad-green));
  animation: float-mascot 3.2s ease-in-out infinite;
}

@keyframes float-mascot {
  0%, 100% { transform: translateY(0) scale(1) rotate(-2deg); }
  50% { transform: translateY(-14px) scale(1.12) rotate(2deg); }
}

.hero-title { margin: 10px 0; }

.glitch {
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--rad-green);
  text-shadow:
    0 0 10px var(--rad-green),
    0 0 25px var(--rad-green),
    0 0 45px var(--rad-green-dim);
  position: relative;
  animation: flicker 4s infinite;
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.6; }
  95% { opacity: 1; }
  96% { opacity: 0.4; }
  97% { opacity: 1; }
}

.hero-tagline {
  font-size: 1.15rem;
  color: #b8ffb0;
  max-width: 640px;
  margin: 18px auto 20px;
  line-height: 1.6;
}

.ticker-pill {
  display: inline-block;
  border: 1px solid var(--toxic-yellow);
  color: var(--toxic-yellow);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  box-shadow: 0 0 14px rgba(212,255,0,0.35);
  margin-bottom: 30px;
}

/* ---------- Buttons ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 30px 0;
}

.btn {
  font-family: inherit;
  font-weight: bold;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: 0.5px;
}

.btn:hover { transform: translateY(-3px) scale(1.03); }

.btn-buy {
  background: var(--rad-green);
  color: #04070f;
  box-shadow: 0 0 20px var(--rad-green), 0 0 45px rgba(0,255,65,0.5);
}
.btn-buy:hover { box-shadow: 0 0 30px var(--rad-green), 0 0 60px var(--rad-green); }

.btn-chart {
  background: transparent;
  border-color: var(--toxic-yellow);
  color: var(--toxic-yellow);
  box-shadow: 0 0 14px rgba(212,255,0,0.3);
}
.btn-chart:hover { box-shadow: 0 0 26px rgba(212,255,0,0.6); }

.btn-tg {
  background: transparent;
  border-color: #2ea6ff;
  color: #7fd0ff;
  box-shadow: 0 0 14px rgba(46,166,255,0.3);
}
.btn-tg:hover { box-shadow: 0 0 26px rgba(46,166,255,0.6); }

/* ---------- Stats ---------- */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--border-glow);
  padding-top: 30px;
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--toxic-yellow);
  text-shadow: 0 0 10px rgba(212,255,0,0.6);
}
.stat-label { font-size: 0.8rem; color: #9fd89a; margin-top: 4px; }

/* ---------- Sections ---------- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 24px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--rad-green);
  text-shadow: 0 0 14px var(--border-glow);
  margin-bottom: 8px;
}

.section-sub { color: #9fd89a; margin-bottom: 40px; }

/* Why section */
.why-text {
  color: #b8ffb0;
  font-size: 1.05rem;
  max-width: 560px;
  margin: 10px auto;
  line-height: 1.6;
}

/* Gallery */
.meme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.meme-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 30px 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.meme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px var(--border-glow);
}
.meme-emoji { font-size: 2.6rem; margin-bottom: 12px; }
.meme-card p { color: #b8ffb0; font-size: 0.9rem; }

/* Tokenomics */
.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.token-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 26px 10px;
}
.token-card h3 {
  font-size: 1.8rem;
  color: var(--toxic-yellow);
  text-shadow: 0 0 12px rgba(212,255,0,0.5);
  margin: 0 0 8px;
}
.token-card p { color: #9fd89a; margin: 0; font-size: 0.85rem; }

.contract-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--border-glow);
  background: var(--bg-panel);
  border-radius: 999px;
  padding: 10px 20px;
  margin: 0 auto 50px;
  max-width: 100%;
}

.contract-label {
  color: var(--toxic-yellow);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contract-address {
  color: var(--rad-green);
  font-size: 0.85rem;
  word-break: break-all;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}
.bar {
  position: relative;
  height: 32px;
  background: rgba(0,255,65,0.08);
  border: 1px solid var(--border-glow);
  border-radius: 6px;
  overflow: hidden;
}
.bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: calc(var(--pct) * 1%);
  background: linear-gradient(90deg, var(--rad-green-dim), var(--rad-green));
  box-shadow: 0 0 12px var(--rad-green);
}
.bar span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 12px;
  font-size: 0.8rem;
  color: #04070f;
  font-weight: bold;
  mix-blend-mode: difference;
  color: #d8ffd0;
}

/* Roadmap */
.roadmap-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}
.road-phase {
  background: var(--bg-panel);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 24px 20px;
  position: relative;
}
.road-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rad-green);
  color: #04070f;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 0 14px var(--rad-green);
}
.road-phase h3 { color: var(--toxic-yellow); margin: 0 0 8px; font-size: 1rem; }
.road-phase p { color: #b8ffb0; font-size: 0.88rem; margin: 0; line-height: 1.5; }

/* Final CTA */
.final-cta { padding-bottom: 90px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-glow);
  padding: 30px 24px 40px;
  text-align: center;
  color: #6fa96a;
  font-size: 0.78rem;
  line-height: 1.6;
}
.footer-small { margin-top: 6px; opacity: 0.7; }

@media (max-width: 640px) {
  .nav-links { gap: 12px; font-size: 0.78rem; }
  .br-desktop { display: none; }
}
