.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.lang-switch {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    gap: 10px;
    background: rgba(11, 17, 33, 0.6);
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.lang-switch a {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.5;
    transition: all 0.3s;
}

.lang-switch a.active {
    opacity: 1;
    color: var(--accent-red);
}

.lang-switch a:hover:not(.active) {
    opacity: 0.8;
}
