/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(233, 69, 96, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
  animation: spin-slow 60s linear infinite;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-ball {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--accent-cyan));
  margin: 0 auto 30px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
}

.hero h1 .word-red {
  color: var(--accent-red);
}

.hero p.hero-tagline {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating decorative orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-orb:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--accent-red);
  top: 10%; left: -5%;
  animation: float 8s ease-in-out infinite;
}

.hero-orb:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--accent-cyan);
  top: 60%; right: -3%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-orb:nth-child(3) {
  width: 150px; height: 150px;
  background: var(--accent-gold);
  bottom: 10%; left: 20%;
  animation: float 7s ease-in-out infinite 2s;
}

/* ===== Games Grid ===== */
.games-section {
  background: var(--bg-medium);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.game-card {
  position: relative;
}

.game-card-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-red);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.game-card-info {
  padding: 24px;
}

.game-card-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.game-card-info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.game-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 212, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* ===== About ===== */
.about-section {
  text-align: center;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Fredoka One', cursive;
  font-size: 2.5rem;
  color: var(--accent-cyan);
}

.stat-label {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 4px;
}

/* ===== Contact ===== */
.contact-section {
  background: var(--bg-medium);
  text-align: center;
}

.contact-email {
  font-size: 1.3rem;
  color: var(--accent-cyan);
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p.hero-tagline {
    font-size: 1.1rem;
  }

  .about-stats {
    gap: 30px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}
