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

:root {
  --pink: #ff6eb4;
  --purple: #a855f7;
  --yellow: #fbbf24;
  --blue: #38bdf8;
  --green: #34d399;
  --bg: #0d0820;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}

/* PARTICLES */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.2; }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-120px) rotate(720deg); opacity: 0; }
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(168,85,247,0.3) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 80%, rgba(255,110,180,0.2) 0%, transparent 55%);
}

.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--yellow);
}

.title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(168,85,247,0.5);
}

.highlight {
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 400px;
}

.emoji-row {
  display: flex;
  gap: 0.5rem;
  font-size: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.emoji-item {
  animation: bounce 1.5s ease-in-out infinite;
  cursor: default;
  transition: transform 0.1s;
  display: inline-block;
}
.emoji-item:hover { transform: scale(1.4) rotate(15deg); }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.cta-btn {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(168,85,247,0.4);
}
.cta-btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 0 50px rgba(255,110,180,0.6);
}
.cta-btn:active { transform: scale(0.97); }

/* REASONS */
.reasons {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.reasons h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 20px;
}
.card:hover::before { opacity: 0.08; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.card-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.card h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* COUNTER */
.counter-section {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem 6rem;
}
.counter-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--blue);
}
.meter-wrap { max-width: 600px; margin: 0 auto 1rem; }
.meter-bar {
  height: 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--yellow));
  border-radius: 999px;
  transition: width 2s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 20px rgba(255,110,180,0.4);
}
.meter-label {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--yellow);
}
.meter-note { color: rgba(255,255,255,0.4); font-size: 0.85rem; margin-top: 0.5rem; }

/* CONFETTI CANVAS */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .title { font-size: 3.5rem; }
}
