.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

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

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.features {
  background: rgba(255, 255, 255, 0.01);
}

.features .card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.features .card:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.card-icon {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  width: 28px;
  opacity: 0.85;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.card p {
  opacity: 0.7;
  line-height: 1.6;
}

.stats {
  padding: 5rem 1.5rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  min-width: 180px;
  transition: border-color 0.25s ease;
}

.stat-item:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  opacity: 0.6;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-live {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 999px;
  margin-right: 0.5rem;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.cta {
  padding: 5rem 1.5rem;
}

.cta-box {
  max-width: 600px;
  margin: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem 2rem;
  backdrop-filter: blur(20px);
  transition: border-color 0.25s ease;
}

.cta-box:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-box p {
  opacity: 0.7;
  margin-bottom: 2rem;
}

.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.music-btn {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
  color: #fff;
}

.music-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.music-btn.playing {
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .stats-grid {
    gap: 1.5rem;
  }
  
  .stat-item {
    flex: 1 1 140px;
    min-width: 140px;
    padding: 1.5rem;
  }
  
  .music-player {
    bottom: 15px;
    right: 15px;
  }
  
  .music-btn {
    width: 45px;
    height: 45px;
  }
}
