/* Responsive Styles */
@media (max-width: 1200px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    padding: 4rem 2rem;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .about-section {
    flex-direction: column-reverse;
    padding: 4rem 2rem;
  }
  
  .about-image {
    padding-right: 0;
    margin-top: 2rem;
  }
  
  .about-content {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .games-section h2 {
    font-size: 2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .game-card h3 {
    font-size: 1.3rem;
  }
  
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-link {
    margin: 0.5rem 0;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    border-radius: 12px;
    margin-bottom: 1rem;
  }
  
  .newsletter-button {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
  }
  
  .contact-container,
  .policy-container {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 0.75rem 1.5rem;
  }
  
  .game-image {
    height: 180px;
  }
  
  .policy-content h2 {
    font-size: 1.3rem;
  }
}

/* Special handling for game pages on smaller screens */
@media (max-width: 768px) {
  .game-iframe-container {
    height: 400px;
  }
  
  .game-iframe {
    height: 100%;
  }
}

@media (max-width: 576px) {
  .game-iframe-container {
    height: 300px;
  }
}