/* Tablet Adjustments (<= 1024px) */
@media screen and (max-width: 1024px) {
  :root {
    --spacing-desktop: var(--spacing-tablet);
  }

  .hero-grid {
    gap: 2rem;
  }
  
  .hero-visual {
    height: 400px;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile Adjustments (<= 768px) */
@media screen and (max-width: 768px) {
  :root {
    --spacing-desktop: var(--spacing-mobile);
  }

  /* Header & Nav */
  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background: var(--secondary-bg);
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
  }

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

  .nav-container .btn-primary {
    display: none;
  }

  /* Layout */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }
  
  .hero-visual {
    height: 300px;
    order: -1;
  }

  .game-wrapper {
    padding: 0.5rem;
  }

  .game-frame-container {
    aspect-ratio: auto;
    height: 400px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .content-block {
    padding: 1.5rem;
  }
}