/* PepeGold Protocol — Retro 90s Chaos CSS */

@import url('https://fonts.googleapis.com/css2?family=VT323&family=Pixelify+Sans:wght@400;700&display=swap');

:root {
  --gold: #FFD700;
  --gold-dark: #DAA520;
  --lime: #00FF00;
  --cyan: #00FFFF;
  --pink: #FF1493;
  --black: #000000;
  --white: #FFFFFF;
  --bg: #0a0a0a;
  --bg2: #111111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Comic Sans MS', 'Trebuchet MS', cursive;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border: 2px solid var(--black); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  border-bottom: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--gold);
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--black), 0 0 10px var(--gold);
  white-space: nowrap;
}

.nav-logo span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--cyan);
  text-decoration: none;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: color 0.1s;
}

.nav-links a:hover { color: var(--lime); }

.nav-cta {
  background: var(--lime);
  color: var(--black);
  border: 3px solid var(--black);
  padding: 0.4rem 1rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  animation: navPulse 1.5s steps(2) infinite;
  white-space: nowrap;
}

@keyframes navPulse {
  0%, 100% { box-shadow: 3px 3px 0 var(--black); }
  50% { box-shadow: 3px 3px 0 var(--gold), 0 0 12px var(--lime); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 6rem 1.5rem 3rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  animation: heroBg 6s steps(3) infinite;
  z-index: 0;
}

@keyframes heroBg {
  0%   { background: linear-gradient(135deg, #001a00 0%, #0a0a0a 50%, #001a1a 100%); }
  33%  { background: linear-gradient(135deg, #1a0010 0%, #0a0a0a 50%, #001a00 100%); }
  66%  { background: linear-gradient(135deg, #001a1a 0%, #0a0a0a 50%, #1a0010 100%); }
  100% { background: linear-gradient(135deg, #001a00 0%, #0a0a0a 50%, #001a1a 100%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* Floating decorations */
.star {
  position: absolute;
  font-size: 1.5rem;
  animation: blink 0.8s steps(2) infinite;
  z-index: 1;
  pointer-events: none;
}
.star:nth-child(1)  { top: 15%; left: 8%;  animation-delay: 0s;    color: var(--gold); }
.star:nth-child(2)  { top: 20%; right: 10%; animation-delay: 0.3s; color: var(--lime); }
.star:nth-child(3)  { top: 60%; left: 5%;  animation-delay: 0.6s;  color: var(--cyan); }
.star:nth-child(4)  { top: 70%; right: 7%; animation-delay: 0.2s;  color: var(--pink); }
.star:nth-child(5)  { top: 40%; left: 3%;  animation-delay: 0.9s;  color: var(--gold); }
.star:nth-child(6)  { top: 80%; left: 20%; animation-delay: 0.4s;  color: var(--lime); }
.star:nth-child(7)  { top: 30%; right: 5%; animation-delay: 0.7s;  color: var(--cyan); }
.star:nth-child(8)  { top: 85%; right: 15%; animation-delay: 0.1s; color: var(--pink); }

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.3); }
}

/* Spinning coin */
.spin-coin {
  position: absolute;
  font-size: 2rem;
  animation: spinCoin 1s steps(4) infinite;
  pointer-events: none;
  z-index: 1;
}
.spin-coin:nth-child(1) { top: 25%; left: 15%; animation-delay: 0s; }
.spin-coin:nth-child(2) { top: 55%; right: 18%; animation-delay: 0.5s; }
.spin-coin:nth-child(3) { top: 75%; left: 10%; animation-delay: 0.25s; font-size: 1.5rem; }

@keyframes spinCoin {
  0%   { transform: rotateY(0deg); }
  25%  { transform: rotateY(90deg) scaleX(0.1); }
  50%  { transform: rotateY(180deg); }
  75%  { transform: rotateY(270deg) scaleX(0.1); }
  100% { transform: rotateY(360deg); }
}

/* Under construction badge */
.under-construction {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  border: 3px solid var(--black);
  padding: 0.3rem 0.6rem;
  font-family: 'VT323', monospace;
  font-size: 0.85rem;
  transform: rotate(-5deg);
  animation: constructionBlink 1s steps(2) infinite;
  z-index: 3;
}

@keyframes constructionBlink {
  0%, 100% { background: var(--gold); }
  50%       { background: var(--pink); }
}

/* Pepe SVG hero illustration */
.hero-pepe {
  width: min(280px, 55vw);
  height: auto;
  margin-bottom: 1.5rem;
  image-rendering: pixelated;
  filter: drop-shadow(0 0 20px var(--lime)) drop-shadow(4px 4px 0 var(--black));
  animation: pepeBounce 2s steps(4) infinite;
}

@keyframes pepeBounce {
  0%, 100% { transform: translateY(0); }
  25%  { transform: translateY(-8px); }
  50%  { transform: translateY(-3px); }
  75%  { transform: translateY(-10px); }
}

.hero h1 {
  font-family: 'Comic Sans MS', 'Trebuchet MS', cursive;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: bold;
  color: var(--gold);
  text-shadow: 4px 4px 0 var(--black), 6px 6px 0 var(--gold-dark), 0 0 30px var(--gold);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero-sub {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: clamp(1rem, 3vw, 1.8rem);
  color: var(--cyan);
  text-shadow: 2px 2px 0 var(--black);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-primary {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  border: 4px solid var(--black);
  padding: 1rem 2rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  animation: ctaPulse 1.2s steps(2) infinite;
  min-height: 54px;
  line-height: 1.2;
  box-shadow: 5px 5px 0 var(--black);
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--black);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--black);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 5px 5px 0 var(--black); background: var(--lime); }
  50%       { box-shadow: 5px 5px 0 var(--black), 0 0 20px var(--lime); background: #33ff33; }
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 3px solid var(--white);
  padding: 0.8rem 1.5rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  cursor: pointer;
  text-decoration: none;
  min-height: 50px;
  line-height: 1.2;
  margin-left: 1rem;
  transition: all 0.1s;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Ticker tape */
.ticker {
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}

.ticker-inner {
  display: inline-block;
  animation: ticker 20s linear infinite;
  font-family: 'VT323', monospace;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== SECTION COMMON ===== */
section {
  padding: 4rem 1.5rem;
}

.section-title {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 3px 3px 0 var(--black);
}

/* ===== QUICK PITCH ===== */
.pitch-section {
  background: var(--bg2);
  position: relative;
  overflow: visible;
}

.pitch-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.pitch-box {
  border: 4px solid var(--black);
  padding: 1.5rem 2rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.pitch-box:nth-child(1) {
  background: var(--lime);
  color: var(--black);
  transform: rotate(-3deg);
  box-shadow: 6px 6px 0 var(--black);
}
.pitch-box:nth-child(2) {
  background: var(--pink);
  color: var(--white);
  transform: rotate(2.5deg);
  box-shadow: 6px 6px 0 var(--black);
  top: 10px;
}
.pitch-box:nth-child(3) {
  background: var(--cyan);
  color: var(--black);
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--black);
  top: -5px;
}

.pitch-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  animation: blink 1.5s steps(2) infinite;
}

.pitch-box p {
  font-family: 'Comic Sans MS', cursive;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
}

/* ===== STAKING INCENTIVES ===== */
.incentives-section {
  background: var(--black);
}

.incentives-section .section-title {
  color: var(--gold);
}

.incentives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

@media (max-width: 900px) {
  .incentives-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .incentives-grid { grid-template-columns: 1fr; }
}

.incentive-card {
  border: 4px solid;
  padding: 1.5rem 1rem;
  text-align: center;
  background: var(--bg2);
  position: relative;
  transition: transform 0.1s;
}

.incentive-card:hover { transform: translateY(-4px); }

.incentive-card:nth-child(1) { border-color: var(--lime); }
.incentive-card:nth-child(2) { border-color: var(--cyan); }
.incentive-card:nth-child(3) { border-color: var(--pink); }
.incentive-card:nth-child(4) { border-color: var(--gold); }

.incentive-pepe {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  image-rendering: pixelated;
}

.incentive-card h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.incentive-card:nth-child(1) h3 { color: var(--lime); }
.incentive-card:nth-child(2) h3 { color: var(--cyan); }
.incentive-card:nth-child(3) h3 { color: var(--pink); }
.incentive-card:nth-child(4) h3 { color: var(--gold); }

.incentive-card p {
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}

.incentives-cta {
  text-align: center;
}

.incentives-cta p {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.btn-deposit {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  border: 5px solid var(--lime);
  padding: 1.2rem 3rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  animation: depositBlink 0.8s steps(2) infinite;
  min-height: 60px;
  box-shadow: 6px 6px 0 var(--black);
}

@keyframes depositBlink {
  0%, 100% { background: var(--pink); border-color: var(--lime); }
  50%       { background: #ff50a0; border-color: var(--white); box-shadow: 0 0 30px var(--pink), 6px 6px 0 var(--black); }
}

.btn-deposit:hover {
  transform: scale(1.05);
}

/* ===== HOW TO STAKE ===== */
.steps-section {
  background: var(--bg2);
}

.steps-section .section-title { color: var(--cyan); }

.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: var(--bg);
  border: 3px solid;
  padding: 1.5rem;
  width: 180px;
  min-width: 160px;
  flex: 1;
  text-align: center;
  position: relative;
}

.step-card:nth-child(1) { border-color: var(--lime); }
.step-card:nth-child(2) { border-color: var(--gold); }
.step-card:nth-child(3) { border-color: var(--cyan); }
.step-card:nth-child(4) { border-color: var(--pink); }
.step-card:nth-child(5) { border-color: var(--gold); }

.step-num {
  font-family: 'VT323', monospace;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-card:nth-child(1) .step-num { color: var(--lime); }
.step-card:nth-child(2) .step-num { color: var(--gold); }
.step-card:nth-child(3) .step-num { color: var(--cyan); }
.step-card:nth-child(4) .step-num { color: var(--pink); }
.step-card:nth-child(5) .step-num { color: var(--gold); }

.step-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.step-card p {
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.4;
}

.step-loading {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--lime);
  margin: 0.5rem auto 0;
  animation: stepLoad 0.8s steps(4) infinite;
}

@keyframes stepLoad {
  0%  { box-shadow: 0 0 0 var(--lime), 12px 0 0 transparent, 24px 0 0 transparent; }
  33% { box-shadow: 0 0 0 transparent, 12px 0 0 var(--lime), 24px 0 0 transparent; }
  66% { box-shadow: 0 0 0 transparent, 12px 0 0 transparent, 24px 0 0 var(--lime); }
}

@media (max-width: 700px) {
  .steps-list { flex-direction: column; align-items: stretch; }
  .step-card { width: 100%; }
}

/* ===== TOKENOMICS ===== */
.tokenomics-section {
  background: var(--black);
  text-align: center;
}

.tokenomics-section .section-title { color: var(--gold); }

.tokenomics-inner {
  max-width: 700px;
  margin: 0 auto;
}

.donut-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 2rem;
}

.donut-wrap canvas {
  image-rendering: pixelated;
}

.donut-legend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.9rem;
}

.legend-swatch {
  width: 18px;
  height: 18px;
  border: 2px solid var(--black);
  flex-shrink: 0;
  image-rendering: pixelated;
}

.tokenomics-tagline {
  font-family: Impact, 'Arial Black', sans-serif;
  font-size: 1.4rem;
  color: var(--lime);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 var(--black);
}

/* ===== COMMUNITY WALL ===== */
.community-section {
  background: var(--bg2);
}

.community-section .section-title { color: var(--pink); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial {
  border: 3px solid;
  padding: 1.2rem;
  position: relative;
  background: var(--bg);
}

.testimonial:nth-child(1) { border-color: var(--lime);  transform: rotate(-2deg); }
.testimonial:nth-child(2) { border-color: var(--gold);  transform: rotate(1.5deg); font-size: 1.05rem; }
.testimonial:nth-child(3) { border-color: var(--cyan);  transform: rotate(-1deg); font-size: 0.9rem; }
.testimonial:nth-child(4) { border-color: var(--pink);  transform: rotate(2deg); font-size: 1.1rem; }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.pepe-avatar {
  width: 48px;
  height: 48px;
  image-rendering: pixelated;
  border: 2px solid var(--black);
  flex-shrink: 0;
}

.testimonial-user {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: var(--gold);
}

.testimonial blockquote {
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--black);
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .section-title { color: var(--cyan); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 3px solid var(--gold);
  overflow: hidden;
}

.faq-question {
  background: var(--bg2);
  color: var(--white);
  font-family: 'Comic Sans MS', cursive;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.1s;
}

.faq-question:hover { background: #1a1a1a; }

.faq-toggle {
  font-family: 'VT323', monospace;
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  background: var(--bg);
  color: #ccc;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.95rem;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 1.2rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 1rem 1.2rem;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  color: var(--pink);
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--pink);
  text-align: center;
  padding: 5rem 1.5rem;
}

.final-cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--black);
  font-weight: bold;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.final-cta p {
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--black);
  margin-bottom: 2rem;
}

.btn-mega {
  display: inline-block;
  background: var(--lime);
  color: var(--black);
  border: 5px solid var(--black);
  padding: 1.3rem 2.5rem;
  font-family: 'Comic Sans MS', cursive;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  animation: megaPulse 1s steps(2) infinite;
  box-shadow: 6px 6px 0 var(--black);
  min-height: 60px;
}

@keyframes megaPulse {
  0%, 100% { box-shadow: 6px 6px 0 var(--black); transform: scale(1); }
  50%       { box-shadow: 6px 6px 0 var(--black), 0 0 40px var(--lime); transform: scale(1.03); }
}

.btn-mega:hover { transform: scale(1.05); }

.final-disclaimer {
  margin-top: 1.5rem;
  font-family: 'VT323', monospace;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  border-top: 4px solid var(--gold);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--cyan);
  text-decoration: none;
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: color 0.1s;
}

.footer-links a:hover { color: var(--gold); }

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.8rem;
}

.footer-legal a:hover { color: var(--white); }

.footer-tagline {
  font-family: 'VT323', monospace;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.footer-made {
  font-size: 0.85rem;
  color: #555;
  font-family: 'Comic Sans MS', cursive;
}

/* ===== WEBRING BADGE ===== */
.webring {
  display: inline-block;
  border: 2px solid var(--gold);
  padding: 0.2rem 0.5rem;
  font-family: 'VT323', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 1rem;
  letter-spacing: 1px;
  animation: blink 1.5s steps(2) infinite;
}

/* ===== GLITCH TEXT ===== */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch1 3s steps(1) infinite;
  clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
}

.glitch::after {
  color: var(--pink);
  animation: glitch2 3s steps(1) infinite;
  clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%);
}

@keyframes glitch1 {
  0%, 90%, 100% { transform: translateX(0); }
  91% { transform: translateX(-4px); }
  93% { transform: translateX(4px); }
  95% { transform: translateX(-2px); }
}

@keyframes glitch2 {
  0%, 92%, 100% { transform: translateX(0); }
  93% { transform: translateX(4px); }
  96% { transform: translateX(-3px); }
}

/* ===== STATS COUNTER ===== */
.stats-bar {
  background: var(--bg2);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 1.5rem;
}

.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-family: 'VT323', monospace;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.stat-item p {
  font-family: 'Comic Sans MS', cursive;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== MARQUEE DIVIDER ===== */
.marquee-divider {
  background: var(--bg);
  overflow: hidden;
  padding: 0.5rem 0;
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
}

.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
  font-family: 'VT323', monospace;
  font-size: 1.2rem;
  color: var(--pink);
  letter-spacing: 3px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .pitch-box { transform: none !important; top: 0 !important; }
}

@media (max-width: 480px) {
  .btn-secondary { margin-left: 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .donut-legend { grid-template-columns: 1fr; }
}

/* ===== CONFETTI CANVAS ===== */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  display: none;
}
