/* Responsive Styles */

/* Large Screens */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

/* Medium Screens */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .about-content,
  .vip-content,
  .tournaments-content {
    flex-direction: column;
  }
  
  .about-image,
  .vip-image,
  .tournament-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .tournament-stats {
    justify-content: center;
  }
}

/* Small Screens */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .games-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .disclaimer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .disclaimer-icon {
    margin-bottom: 1rem;
  }
}

/* Extra Small Screens */
@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 1.5rem;
  }
  
  .hero {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .tournament-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .game-wrapper {
    padding: 1rem;
  }
  
  .related-games-grid {
    grid-template-columns: 1fr;
  }
}

/* Game Page Iframe Responsive */
@media (max-width: 992px) {
  .game-iframe-container {
    padding-bottom: 75%; /* Adjust aspect ratio for tablets */
  }
}

@media (max-width: 576px) {
  .game-iframe-container {
    padding-bottom: 100%; /* Square aspect for mobile */
  }
}