/* Fix dropdown overflow */
.glass-navbar {
    overflow: visible !important;
}

/* Dropdown style Gold Premium Soft Glow */
.navbar .dropdown-menu {
    position: absolute !important;
    z-index: 9999;
    transform: translateY(12px);
    min-width: 180px;
    border-radius: 14px;
    background: rgba(30, 25, 15, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 100, 0.35);
    box-shadow: 0px 10px 35px rgba(255, 200, 80, 0.45);
    overflow: visible !important;
    animation: fadeDrop .25s ease-out;
}

@keyframes fadeDrop {
    from { opacity: 0; transform: translateY(0px); }
    to { opacity: 1; transform: translateY(12px); }
}

.dropdown-item {
    color: #ffd97b !important;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(255, 210, 90, 0.15);
    color: #fff !important;
    border-radius: 8px;
}
