@media (max-width: 992px) { 
    .brand-name {
        font-size: 16px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 9px 10px;
    }

    .hero-card h1 {
        font-size: 46px;
    }

    .hero-card p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    /* ✅ FIXED HEADER ALIGNMENT */
    .header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        flex-shrink: 0;
    }

    /* EXISTING MENU */
    .main-nav {
        display: none;
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        background: #0b0b0b;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-top: 1px solid rgba(212, 160, 23, 0.15);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        width: 100%;
    }

    /* HERO */
    .hero-card {
        padding: 34px 24px;
    }

    .hero-card h1 {
        font-size: 36px;
    }

    .hero-card p {
        font-size: 17px;
    }

    /* BRAND */
    .brand-name {
        font-size: 15px;
    }

    .powered-by-text {
        font-size: 12px;
    }

    /* BUTTON */
    .whats-new-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .brand {
        gap: 10px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-name {
        font-size: 14px;
        line-height: 1.3;
    }

    .hero-card h1 {
        font-size: 30px;
    }

    .hero-card p {
        font-size: 16px;
    }
}