/* Responsive Styles */

/* Large Screens */
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* Medium Screens (Tablets) */
@media screen and (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content,
  .about-content {
    flex-direction: column;
  }
  
  .hero-text,
  .hero-image,
  .about-text,
  .about-image {
    flex: none;
    width: 100%;
  }
  
  .hero-image img,
  .about-image img {
    height: 350px;
  }
  
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-container {
    width: 100%;
    margin-bottom: var(--spacing-lg);
  }
}

/* Small Screens (Mobile) */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    flex-direction: column;
    background-color: var(--bg-secondary);
    top: 80px;
    left: 0;
    width: 100%;
    padding: var(--spacing-lg) 0;
    transform: translateY(-150%);
    transition: transform var(--transition-medium);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
  
  .nav-links li {
    margin: var(--spacing-xs) 0;
  }
  
  .hero-section,
  .about-section,
  .games-section,
  .disclaimer-section,
  .contact-section,
  .legal-section {
    padding: var(--spacing-xl) 0;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image img,
  .about-image img {
    height: 300px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-image img,
  .about-image img {
    height: 250px;
  }
  
  .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.8rem;
  }
}