/* Hero Section CSS - Based on Next.js Original */

.hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-section .hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(18, 22, 31, 0.3) 0%,
    rgba(18, 22, 31, 0.5) 50%,
    rgba(18, 22, 31, 0.8) 100%
  );
}

.hero-section .container-md {
  z-index: 2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero-section .hero-banner {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-section .hero-banner .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-section .hero-banner .text-center img {
  display: block;
  margin: 0 auto;
}

.hero-section .download-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-section .download-title {
  font-family: 'KOF Fighters', 'Arial Black', sans-serif;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
  letter-spacing: 0.1em;
}

.hero-section .download-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.hero-section .download-btn {
  display: block;
  transition: all 0.3s ease;
  transform: scale(1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-section .download-btn:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.hero-section .download-btn img {
  width: 180px;
  height: auto;
  max-width: 100%;
}

/* Visually Hidden */
.visually-hidden-h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section .download-buttons {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .hero-section .download-btn img {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .hero-section .download-buttons {
    gap: 2.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-section .download-btn img {
    width: 140px;
  }
}
