.header-wrapper {
    background: linear-gradient(180deg, #0a0a0a, #000000);
}

.header {
    padding: 15px 0;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

header hr {
    margin: 5px 0;
    color: #FFD700;
    border-color: #FFD700;
}

.btn-icon-menu {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(227, 27, 35, 0.12);
    color: #e5e7eb;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-icon-menu:hover {
    border-color: #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.logo-link img {
    max-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.15));
}

.live-dot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 14px;
    color: #9ca3af;
}

.live-dot span {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.2s infinite;
}

ul.dropdown-menu.dropdown-menu-dark.show {
    background: radial-gradient(circle at top, #0a0a0a, #000000);
    border: 1px solid rgba(227, 27, 35, 0.08);
}

.dropdown-menu .dropdown-item {
    color: #e5e5e5;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700;
}

.dropdown-menu .dropdown-item.active {
    background: rgba(255, 215, 0, 0.12);
    color: #FFD700;
}

.dropdown-divider {
    border-color: rgba(227, 27, 35, 0.05);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.ticker-content {
    display: flex;
    padding: 8px 0;
    font-size: 14px;
    color: #d7d7d7;
    border-top: 1px solid rgba(227, 27, 35, 0.08);
    border-bottom: 1px solid rgba(227, 27, 35, 0.08);
    gap: 50px;
    font-weight: 600;
}

.ticker-content span {
    color: #FFD700;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .header-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        padding: 5px 0;
    }

    .logo-link img {
        max-height: 40px;
    }

    .live-dot {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 14px;
    }

    .logo-link img {
        max-height: 36px;
    }

    .btn-icon-menu {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .live-dot {
        font-size: 10px;
    }
}