/* ============================================================
   PIXOSWIFTRC — RESPONSIVE.CSS
   Mobile-first responsive rules
   ============================================================ */

/* ── TABLET (≤ 1100px) ── */
@media (max-width: 1100px) {
  .container {
    padding-inline: 28px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }

  .hero-inner {
    gap: 40px;
  }

  .slot-machine-body {
    width: 220px;
  }
}

/* ── MEDIUM (≤ 900px) ── */
@media (max-width: 900px) {
  :root {
    --section-gap-desktop: var(--section-gap-tablet);
  }

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

  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    order: 0;
    margin-bottom: 20px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-subtext {
    max-width: 100%;
    margin-inline: auto;
  }

  .section-subtitle {
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 44px 36px;
  }

  .game-iframe {
    height: 500px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── SMALL (≤ 768px) ── */
@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header-inner {
    height: 64px;
  }

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

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav-row {
    flex-direction: column;
    gap: 12px;
  }

  .legal-nav-row .btn {
    text-align: center;
    justify-content: center;
  }

  .rg-resources {
    flex-direction: column;
  }

  .rg-resource-link {
    text-align: center;
  }

  .hero-section {
    padding-top: 60px;
    padding-bottom: var(--section-gap-mobile);
    min-height: auto;
  }

  .page-hero {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .game-iframe {
    height: 420px;
  }

  .cta-banner-inner {
    padding: 36px 24px;
  }

  .slot-machine-body {
    width: 200px;
    padding: 18px;
  }

  .reel-display span {
    font-size: 1.5rem;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .hero-badge {
    font-size: 0.75rem;
  }
}

/* ── EXTRA SMALL (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .feature-card {
    padding: 28px 20px;
  }

  .game-iframe {
    height: 360px;
  }

  .cta-banner-inner {
    padding: 28px 20px;
  }

  .slot-machine-body {
    width: 180px;
  }

  .footer-bottom-inner {
    gap: 14px;
  }

  .rules-symbol-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 16px;
  }

  .section-subtitle {
    margin-bottom: 36px;
  }
}