.language-switcher {
    position: fixed;
    top: 40px;
    right: 90px;
    z-index: 1100;
}

.language-options {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-option {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 2px 6px;
    border-radius: 3px;
}

.lang-option:hover {
    color: rgba(255, 255, 255, 0.9);
}

.lang-option.active {
    color: #fff;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    user-select: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher {
        top: 20px;
        right: 55px;
    }
    
    .language-options {
        padding: 4px 10px;
        gap: 5px;
    }
    
    .lang-option {
        font-size: 11px;
        padding: 1px 3px;
        letter-spacing: 0.3px;
    }
    
    .lang-divider {
        font-size: 10px;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .language-switcher {
        top: 15px;
        right: 45px;
    }
    
    .language-options {
        padding: 3px 8px;
        gap: 4px;
    }
    
    .lang-option {
        font-size: 10px;
        padding: 1px 2px;
    }
    
    .lang-divider {
        font-size: 9px;
    }
}

/* Dark background pages */
.bg-dark-blue .language-options {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Subtle hover effect */
@keyframes languagePulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.language-options:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}