/* Tablet Adjustments */
@media screen and (max-width: 1024px) {
  :root {
    --spacing-section: 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
  }

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

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

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
  :root {
    --spacing-section: 60px;
  }

  .nav-links {
    display: none; /* In a full build, this would toggle a mobile menu */
  }

  .hero {
    padding-top: 120px;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

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

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

  .content-block {
    padding: 1.5rem;
  }
}