/* ========================================
   RESPONSIVE STYLES
   Mobile-first approach with breakpoints
   ======================================== */

/* ---- Tablets and below: 1024px ---- */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

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

    .hero__title {
        font-size: 2.8rem;
    }

    .hero__text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__disclaimer {
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .hero__visual {
        order: -1;
    }

    .hero__artifact {
        width: 200px;
        height: 200px;
    }

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

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

    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-section,
    .features,
    .stats-section,
    .story-section,
    .cta-section {
        padding: 70px 0;
    }

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

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

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

    .cta-card {
        padding: 60px 40px;
    }

    .cta-card__title {
        font-size: 2rem;
    }

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

/* ---- Below 768px ---- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 60px;
    }

    .hero__inner {
        padding: 40px 20px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__text {
        font-size: 1rem;
    }

    .hero__scroll {
        display: none;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

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

    .stat-card {
        padding: 30px;
    }

    .stat-card__number {
        font-size: 2rem;
    }

    .game-section,
    .features,
    .stats-section,
    .story-section,
    .cta-section,
    .content-section {
        padding: 50px 0;
    }

    .game-frame-wrapper {
        border-radius: var(--radius-md);
    }

    .game-frame-border {
        border-radius: var(--radius-md);
    }

    .game-container {
        border-radius: var(--radius-md);
    }

    .corner--tl { border-radius: var(--radius-md) 0 0 0; }
    .corner--tr { border-radius: 0 var(--radius-md) 0 0; }
    .corner--bl { border-radius: 0 0 0 var(--radius-md); }
    .corner--br { border-radius: 0 0 var(--radius-md) 0; }

    .game-info {
        gap: 16px;
    }

    .game-info__divider {
        display: none;
    }

    .story-quote {
        font-size: 1.1rem;
        padding: 20px 24px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-card__title {
        font-size: 1.6rem;
    }

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

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

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

    .resource-cards {
        grid-template-columns: 1fr;
    }

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

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

    .footer__links {
        gap: 40px;
    }

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

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

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

    .nav-list {
        gap: 20px;
    }

    .content-title {
        font-size: 1.5rem;
    }
}

/* ---- Below 480px ---- */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__badge {
        font-size: 0.7rem;
    }

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

    .hero__actions .btn {
        width: 100%;
    }

    .hero__artifact {
        width: 160px;
        height: 160px;
    }

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

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

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

    .stat-card__number {
        font-size: 1.7rem;
    }

    .cta-card__title {
        font-size: 1.4rem;
    }

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

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

    .legal-content h2 {
        font-size: 1.2rem;
    }

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