/* Tablet Adjustments */
@media (max-width: 1024px) {
  :root {
    --container-pad: 24px;
    --section-space: 80px;
  }

  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .game-iframe-wrapper {
    height: 600px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
    --section-space: 60px;
  }

  h1 { font-size: 2.25rem; }
  
  .header {
    padding: 10px 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--sec-bg);
    flex-direction: column;
    padding: 100px 30px;
    transition: 0.4s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  /* Hamburger Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    min-height: 80vh;
    padding-top: 100px;
  }

  .hero-bg {
    background-image: linear-gradient(to bottom, rgba(11, 15, 20, 0.8) 0%, var(--base-bg) 100%), 
                      url('images/stadium-hero-bg.webp');
  }

  .hero-actions {
    flex-direction: column;
  }

  .game-iframe-wrapper {
    height: 450px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}