/* =============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

  .container {
    padding: 0 24px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 60px 0;
  }

  .hero__desc {
    margin: 0 auto 24px;
  }

  .hero__disclaimer {
    margin: 0 auto 32px;
    max-width: 540px;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image-wrapper {
    max-width: 350px;
  }

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

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

  .story__content .section-title {
    text-align: center;
  }

  .story__content {
    text-align: center;
  }

  .story__text {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .story__content .btn {
    margin: 0 auto;
  }

  .story__image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .game-frame {
    height: 550px;
  }

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

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }

  .footer__brand {
    max-width: 100%;
  }

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

/* =============================================
   RESPONSIVE - TABLET SMALL (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .features__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    max-width: 100%;
    width: 100%;
  }

  .step__connector {
    transform: rotate(90deg);
  }

  .game-frame {
    height: 480px;
  }

  .game-info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

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

/* =============================================
   RESPONSIVE - MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
  :root {
    --section-gap: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .hero__inner {
    padding: 40px 0;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__desc {
    font-size: 16px;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__image-wrapper {
    max-width: 280px;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .game-frame {
    height: 400px;
  }

  .content-block,
  .legal-block,
  .contact-form-wrap {
    padding: 24px;
  }

  .legal-block {
    padding: 24px 20px;
  }

  .responsible-banner__inner {
    padding: 24px;
  }

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

  .page-hero__title {
    font-size: 1.8rem;
  }

  .content-cta {
    flex-direction: column;
  }

  .content-cta .btn {
    width: 100%;
  }

  .mobile-menu {
    max-width: 100%;
  }
}

/* =============================================
   RESPONSIVE - VERY SMALL (max-width: 360px)
   ============================================= */
@media (max-width: 360px) {
  .game-frame {
    height: 340px;
  }

  .hero__title {
    font-size: 1.6rem;
  }
}