* { margin:0; padding:0; box-sizing:border-box; }
body {
  background: #0d0d1a;
  color: #e0e0e0;
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top:0; left:0; width:100%; height:100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(125,179,5,0.015) 2px,
    rgba(125,179,5,0.015) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0d0d1a; }
::-webkit-scrollbar-thumb { background: #7cb305; border-radius: 4px; }

.font-archivo { font-family: 'Archivo Black', sans-serif; }
.font-comic { font-family: 'Comic Neue', cursive; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(124,179,5,0.4), 0 0 20px rgba(124,179,5,0.2); }
  50% { box-shadow: 0 0 20px rgba(124,179,5,0.8), 0 0 40px rgba(124,179,5,0.4); }
}

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

@keyframes float-emoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes count-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes confetti-fall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes progress-stripe {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}

.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.ticker-scroll { animation: ticker-scroll 20s linear infinite; }
.float-emoji { animation: float-emoji 3s ease-in-out infinite; }

.gradient-text {
  background: linear-gradient(135deg, #7cb305, #a0d911, #d4ed6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(124,179,5,0.3));
}

.glossy-btn {
  background: linear-gradient(180deg, #a0d911 0%, #7cb305 50%, #5a8a00 100%);
  border: 1px solid #a0d911;
  color: #0d0d1a;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.glossy-btn:hover {
  background: linear-gradient(180deg, #b8e63a 0%, #a0d911 50%, #7cb305 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(124,179,5,0.4);
}

.video-card {
  background: #1a1a2e;
  border: 1px solid rgba(124,179,5,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(124,179,5,0.5);
  box-shadow: 0 8px 30px rgba(124,179,5,0.15);
}

.progress-bar-animated {
  background-image: linear-gradient(
    45deg,
    rgba(255,255,255,0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255,255,255,0.15) 50%,
    rgba(255,255,255,0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  animation: progress-stripe 1s linear infinite;
}

.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  animation: confetti-fall 3s ease-in forwards;
  z-index: 99999;
  pointer-events: none;
}

.nav-pill {
  background: rgba(124,179,5,0.1);
  border: 1px solid rgba(124,179,5,0.2);
  padding: 8px 16px;
  border-radius: 999px;
  color: #a0d911;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 14px;
}
.nav-pill:hover, .nav-pill.active {
  background: rgba(124,179,5,0.25);
  border-color: #a0d911;
  color: #d4ed6b;
}

.category-pill {
  background: rgba(124,179,5,0.15);
  color: #a0d911;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.star-green { color: #a0d911; }
.star-empty { color: #333; }

.hero-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  border: 1px solid rgba(124,179,5,0.3);
  border-radius: 16px;
  overflow: hidden;
}