/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

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

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .float-card-1 {
    left: 10px;
  }

  .float-card-2 {
    right: 10px;
  }

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

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

  .story-content .section-title {
    text-align: center;
  }

  .story-content {
    text-align: center;
  }

  .steps-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-connector {
    display: none;
  }

  .step-card {
    max-width: 100%;
    flex-basis: calc(33.33% - 12px);
  }

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

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

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

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

  .responsible-tips-grid {
    grid-template-columns: 1fr 1fr;
  }

  .support-resources {
    grid-template-columns: 1fr 1fr;
  }

  .game-section,
  .features-section,
  .story-section,
  .how-it-works,
  .responsible-banner,
  .content-section {
    padding: var(--section-gap-tablet) 0;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Nav */
  .nav-center {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-container {
    height: 64px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(32px, 7vw, 48px);
  }

  .hero-float-card {
    display: none;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-disclaimer {
    padding: 12px 16px;
  }

  /* Game */
  .game-wrapper {
    border-radius: var(--radius-lg);
  }

  .game-frame-container {
    border-radius: var(--radius-lg);
    padding-bottom: 75%;
  }

  .game-iframe {
    border-radius: var(--radius-lg);
  }

  .game-info-bar {
    gap: 12px;
  }

  .info-chip {
    padding: 8px 14px;
    font-size: 12px;
  }

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

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

  /* Steps */
  .step-card {
    flex-basis: 100%;
  }

  /* Story */
  .story-visual {
    max-width: 100%;
  }

  /* Responsible Banner */
  .responsible-card {
    padding: 28px 24px;
    gap: 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  /* Inner Pages */
  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero-sm {
    padding: 110px 0 50px;
  }

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

  .responsible-tips-grid {
    grid-template-columns: 1fr;
  }

  .support-resources {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 32px;
  }

  .game-section,
  .features-section,
  .story-section,
  .how-it-works,
  .responsible-banner,
  .content-section {
    padding: var(--section-gap-mobile) 0;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .game-frame-container {
    padding-bottom: 80%;
  }

  .info-chip {
    flex: 1;
    min-width: calc(50% - 8px);
    justify-content: center;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 15px;
  }
}