/* Bottom Navigation Bar Styles */
.bottom-nav-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    background: rgba(30, 30, 30, 0.95);
    border-top: 1px solid #4a4a4a;
    border: 1px solid #c0a060;
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0;
    gap: 10px;
}

.bottom-nav-bar .nav-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: background 0.3s ease, transform 0.2s ease;
    font-weight: bold;
    font-family: var(--player-font, 'Cinzel Decorative'), cursive, Arial, sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 1em;
    line-height: 1;
}

.bottom-nav-bar .nav-button:hover {
    background: rgba(192, 160, 96, 0.1);
    transform: translateY(-2px);
}

.bottom-nav-bar .nav-button:active {
    transform: translateY(0);
}

.bottom-nav-bar .nav-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    object-fit: cover;
    filter: drop-shadow(0 0 0px rgba(192, 160, 96, 0.0));
    opacity: 1;
}

.bottom-nav-bar .logout-button {
    background: #a03030;
    border: 1px solid #c04040;
    border-radius: 6px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.4);
    filter: grayscale(100%);
    transition: background 0.3s ease, filter 0.3s ease;
    padding: 5px 10px;
    max-width: 100px;
}

.bottom-nav-bar .logout-button:hover {
    background: #c04040;
    filter: grayscale(0%);
}

.bottom-nav-bar .logout-icon {
    width: 36px;
    height: 36px;
}
