/* Language Switcher Styles */
#language-switcher {
    position: fixed;
    top: 20px;
    right: 30px;
    z-index: 99999;
    display: flex;
    gap: 8px;
    background: rgba(31, 34, 40, 0.95);
    padding: 8px 12px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#language-switcher button {
    background: transparent;
    border: none;
    color: #ddd;
    font-family: 'Inter Display', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 18px;
    transition: all 0.3s ease;
    opacity: 0.5;
}

#language-switcher button:hover {
    opacity: 1;
    background: rgba(139, 92, 246, 0.1);
}

#language-switcher button.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #4F46E5 100%);
    color: #0b0c0e;
    opacity: 1;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

@media (max-width: 880px) {
    #language-switcher {
        top: auto;
        right: auto;
        bottom: 20px;
        left: 15px;
        padding: 6px 10px;
    }
    
    #language-switcher button {
        font-size: 12px;
        padding: 5px 10px;
    }
}
