/* --- LANG SWITCHER --- */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    gap: 10px;
    background: rgba(59, 73, 112, 0.85);
    /* Primary with opacity */
    padding: 10px 15px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-switcher a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.2s ease;
    padding: 2px 5px;
    border-radius: 2px;
}

.lang-switcher a:hover,
.lang-switcher a.active {
    opacity: 1;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}