/* Page-specific styles */

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 56px;
  text-align: center;
  background: linear-gradient(160deg, #f8faf2 0%, #edf2e0 60%, #e2ecd0 100%);
  border-bottom: 1px solid #dde8c8;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -56px;
  background-image: radial-gradient(circle, rgba(98,181,23,0.13) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  animation: hero-drift 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}
.hero-badge {
  display: inline-block;
  background: rgba(209,219,36,0.25);
  border: 1px solid #d1db24;
  color: #4a8c11;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  animation: fade-up 0.4s ease both;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #2a2a2a;
  position: relative;
  z-index: 1;
  animation: fade-up 0.45s 0.1s ease both;
}
.hero h1 .game-name {
  color: #62b517;
  position: relative;
}
.hero h1 .game-name::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: #d1db24;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: underline-grow 0.4s 0.5s ease forwards;
}
.hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #555;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
  position: relative;
  z-index: 1;
  animation: fade-up 0.45s 0.22s ease both;
}
.hero-visual {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  animation: fade-up 0.45s 0.3s ease both;
}
.hero-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
