:root {
    /* ⭐ Warna Gold Baru - Kombinasi #ffb301, #ffd800, #fdf001 */
    --gold-primary: #ffb301;
    --gold-light: #ffd800;
    --gold-lighter: #fdf001;
    --gold-dark: #e6a000;
    --gold-gradient: linear-gradient(135deg, #ffb301, #ffd800, #fdf001, #ffd800, #ffb301);
    --gold-glow: 0 0 50px rgba(255, 179, 1, 0.25);
    --gold-glow-strong: 0 0 80px rgba(253, 240, 1, 0.35);
    --gold-border: rgba(255, 179, 1, 0.25);
}

.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: var(--gold-primary, #ffb301);
    border-color: var(--gold-primary, #ffb301);
}

.btn-icon-menu {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid var(--gold-border, rgba(255, 179, 1, 0.25));
    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: var(--gold-primary, #ffb301);
    box-shadow: var(--gold-glow, 0 0 50px rgba(255, 179, 1, 0.25));
    color: var(--gold-primary, #ffb301);
}

.logo-link img {
    max-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 179, 1, 0.25));
}

.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 var(--gold-border, rgba(255, 179, 1, 0.15));
}

.dropdown-menu .dropdown-item {
    color: #e5e5e5;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item.auth {
    color: #ff0000;
    font-weight: 700;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item.auth:hover {
    color: #ff0000;
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(255, 179, 1, 0.08);
    color: var(--gold-primary, #ffb301);
}

.dropdown-menu .dropdown-item.active {
    background: rgba(255, 179, 1, 0.12);
    color: var(--gold-primary, #ffb301);
}

.dropdown-divider {
    border-color: var(--gold-border, rgba(255, 179, 1, 0.08));
}

@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 var(--gold-border, rgba(255, 179, 1, 0.08));
    border-bottom: 1px solid var(--gold-border, rgba(255, 179, 1, 0.08));
    gap: 50px;
    font-weight: 600;
}

.ticker-content span {
    color: var(--gold-primary, #ffb301);
}

/* =========================
   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;
    }
}