@media screen and (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text p {
    margin: 0 auto 40px;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .book-image {
    max-width: 300px;
  }

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

@media screen and (max-width: 768px) {
  :root {
    --spacing-desktop: var(--spacing-mobile);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(26, 18, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 40px;
    transition: right 0.4s ease;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
  }

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

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }
  
  .nav-container .btn-primary {
    display: none;
  }

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

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

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

  .footer-brand p {
    margin: 20px auto;
  }

  .reels-container {
    height: 300px;
  }

  .symbol {
    height: 100px;
    font-size: 2rem;
  }

  .slot-controls {
    flex-direction: column;
    gap: 20px;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
}