/* ==========================================================================
   MOBIL ÉS RESZPONZÍV OPTIMALIZÁCIÓ
   ========================================================================== */

@media (max-width: 768px) {
    /* Navbar javítások */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0; 
        width: 100%;
        background-color: rgba(15, 15, 19, 0.98);
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin-left: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    .discord-btn {
        justify-content: center;
        width: 80%;
        margin: 0 auto;
    }

    /* Hero szekció javítások */
    .hero-title {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
    }

    /* Visszaszámláló javítás */
    .countdown-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }
    .countdown-box {
        min-width: 65px !important;
        padding: 10px !important;
    }
    .countdown-box span {
        font-size: 1.8rem !important;
    }

    /* Grid-ek és kártyák */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .features-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .feature-item.feature-with-bg {
        height: auto;
        min-height: 250px;
    }
    
    /* Fórum javítások */
    .forum-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .forum-icon {
        margin-bottom: 15px;
    }
    .forum-stats, .forum-latest {
        display: none !important;
    }

    /* Footer javítások */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem !important;
    }
    .logo h1 {
        font-size: 1.8rem;
    }
}
