.lang-switch {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    z-index: 9999;
}

.lang-switch button {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;

    color: white;
    font-size: 14px;
    padding: 6px 10px;

    transition: all 0.2s ease;
}

.lang-switch button:hover {
    opacity: 0.7;
}

/* 🔵 активный язык */
.lang-switch button.active {
    background: white;
    color: #1e5eff;
    border-radius: 4px;
}

/* Blocktext */
p {
  text-align: justify;
  hyphens: auto;
}