/* RESPONSIVE SYSTEM */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    .hero-section {
        padding: 120px 0 80px;
    }
    .game-container iframe {
        height: 600px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-text {
        max-width: 100%;
        align-items: center;
    }
    .hero-text p {
        margin: 0 auto 30px;
    }
    .hero-visual {
        max-width: 80%;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .game-container iframe {
        height: 500px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .header-nav {
        display: none; /* In a real app, this would be a hamburger menu */
    }
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--text-primary);
        display: block;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .game-container {
        border-radius: 12px;
    }
    .game-container iframe {
        height: 400px;
    }
    .hero-section {
        padding: 100px 0 60px;
    }
    h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    .game-container iframe {
        height: 350px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero-visual {
        max-width: 100%;
    }
}