/* Responsive Styles */

/* Extra Large Screens (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
}

/* Large Screens (992px - 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .games-container {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Medium Screens (768px - 991px) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    width: 100%;
  }
  
  .about-image {
    margin-top: var(--spacing-lg);
    order: -1;
  }
  
  .about-text .section-title {
    text-align: center;
  }
  
  .about-text .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
}

/* Small Screens (576px - 767px) */
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    flex-direction: column;
    background-color: rgba(5, 5, 16, 0.95);
    overflow: hidden;
    transition: height var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.active {
    height: auto;
    padding: var(--spacing-md) 0;
  }
  
  .nav-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-link {
    display: block;
    padding: var(--spacing-sm) 0;
  }
  
  .games-container {
    grid-template-columns: 1fr;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .age-content {
    flex-direction: column;
    text-align: center;
  }
  
  .age-icon {
    margin: 0 auto var(--spacing-md) auto;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: var(--spacing-sm);
    justify-content: center;
  }
}

/* Extra Small Screens (up to 575px) */
@media (max-width: 575px) {
  .container {
    width: 100%;
    padding: 0 var(--spacing-md);
  }
  
  #header .container {
    padding: var(--spacing-sm) var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: var(--spacing-xs) var(--spacing-sm);
    font-size: 0.9rem;
  }
  
  .game-card {
    margin: 0 var(--spacing-xs);
  }
  
  .legal-content {
    padding: var(--spacing-md);
  }
  
  .form-group input,
  .form-group textarea {
    padding: var(--spacing-xs);
  }
}