/* Home Page Specific Styles */

/* Hero Section */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: -80px;
  padding-top: 80px;
  background: url('https://i.pinimg.com/736x/30/14/8d/30148dd3a68c4fc14b6602b4f2609cad.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 18, 0.315);
  z-index: 1;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 20px var(--primary-glow);
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 0 15px var(--primary-glow);
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgb(255, 255, 255);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
#features {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 255, 255, 0.05), transparent 70%);
  pointer-events: none;
}

.features-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.features-text {
  flex: 1;
}

.features-text h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-shadow: 0 0 5px var(--primary-glow);
}

.features-text h3:first-child {
  margin-top: 0;
}

.features-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.features-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.neon-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 20px var(--primary-glow);
  pointer-events: none;
}

/* Games Section */
#games {
  background-color: var(--bg-color);
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.game-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--primary-glow);
}

.game-image {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

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

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(16, 21, 34, 0.9), transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.game-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.play-button {
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
}

/* Disclaimer Section */
#disclaimer {
  background-color: var(--card-bg);
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#disclaimer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: 0 0 10px var(--primary-glow);
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(0, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.1);
}

.age-restriction {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.age-badge {
  background: var(--primary-color);
  color: var(--bg-color);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--primary-glow);
}

.age-restriction p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin: 0;
}

.disclaimer-text {
  text-align: center;
}

.disclaimer-text p {
  color: var(--text-color);
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.disclaimer-text strong {
  color: var(--primary-color);
  text-shadow: 0 0 5px var(--primary-glow);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .features-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .age-restriction {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .disclaimer-text p {
    font-size: 1rem;
  }
}