/* Base navbar styles */
.navbar {
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.3rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 50px;
}

/* Brand/Logo */
.navbar-brand {
    padding: 0.25rem 0;
}

.navbar-brand img {
    height: 35px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    color: var(--text-color) !important;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem !important;
    font-weight: 500;
    opacity: 0.9;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    opacity: 1;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }
    
    /* Show mobile nav on mobile */
    .mobile-nav {
        display: flex !important;
        flex-direction: column;
    }
    
    .navbar-collapse {
        background: rgba(20, 20, 20, 0.98);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 0.25rem;
        font-size: 0.95rem;
        text-align: left;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Player page specific styles */
.player-page .navbar {
    background-color: rgba(0, 0, 0, 0.9);
    min-height: 45px;
}

/* Update the container-fluid margin in play.php */
.player-page .container-fluid {
    margin-top: 50px !important;
}

/* Dropdown hover effects */
.dropdown-item {
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    transform: translateX(5px);
} 