@media (max-width: 1200px) {
  :root {
    --space-section: 80px;
  }

  .hero-content {
    gap: var(--space-2xl);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .container {
    padding: 0 var(--space-lg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    max-width: 550px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-disclaimer {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-slot-preview {
    max-width: 450px;
  }

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

  .rewards-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .rewards-visual {
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .leaderboard-header,
  .leaderboard-row {
    grid-template-columns: 50px 1fr 100px 90px;
    padding: var(--space-sm) var(--space-md);
  }
}

@media (max-width: 768px) {
  :root {
    --space-section: 60px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stats-grid {
    gap: var(--space-xl);
  }

  .stat-item {
    min-width: 100px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .leaderboard-header,
  .leaderboard-row {
    grid-template-columns: 40px 1fr 80px;
    font-size: 0.8rem;
  }

  .leaderboard-header .wins-col,
  .leaderboard-row .wins {
    display: none;
  }

  .reward-days {
    gap: 4px;
  }

  .cta-box {
    padding: var(--space-2xl) var(--space-lg);
  }

  .responsible-banner {
    flex-direction: column;
    text-align: center;
  }

  .toast-container {
    right: var(--space-md);
    left: var(--space-md);
  }

  .toast {
    max-width: 100%;
  }

  .hero-slot-preview {
    max-width: 100%;
  }

  .orbit-ring {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 0.95rem;
  }

  .slot-reels {
    gap: var(--space-sm);
  }

  .slot-reel {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}