/* Tablet (min-width: 768px) */
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }

  section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 160px;
  }

  .hero-split {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-left {
    text-align: left;
    flex: 1;
    padding-right: 40px;
  }

  .hero-left h1 {
    font-size: 3.5rem;
  }

  .hero-left p.lead {
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-right {
    flex: 1;
  }

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

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

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

/* Desktop (min-width: 1024px) */
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  section {
    padding: 120px 0;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
  }

  .mobile-menu-btn {
    display: none;
  }

  .header .btn {
    display: inline-flex;
  }
  
  .hero-left h1 {
    font-size: 4rem;
  }

  .game-wrapper {
    height: 650px;
    aspect-ratio: auto;
  }
}