/* style.css — v3 Massive Win Celebration */

.hero-v3 {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.win-celebration {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 20px;
}

.hero-v3 .hero-title {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, #ff3366, #ffd700, #00ffea, #ff3366);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-v3-shine 5s linear infinite;
}

@keyframes hero-v3-shine {
  to { background-position: 200% center; }
}

.hero-v3 .hero-subtitle {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 3rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-v3 .hero-btn-primary {
  background: var(--accent-color, #ff3366);
  color: white;
  padding: 1.4rem 4rem;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 80px;
  box-shadow: 0 15px 50px rgba(255,51,102,0.6);
  transition: all 0.4s ease;
}

.hero-v3 .hero-btn-primary:hover {
  transform: translateY(-10px) scale(1.08);
}

/* Конфетти — стили контейнера (сам скрипт в render.php) */
.confetti-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}