.cy-language-switch {
    position: fixed;
    top: 84px;
    right: 24px;
    z-index: 2147483000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(10, 10, 10, .48);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .08em;
    text-decoration: none !important;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.cy-language-switch:hover,
.cy-language-switch:focus-visible {
    background: rgba(255, 255, 255, .96);
    color: #111;
    border-color: rgba(255, 255, 255, .96);
    transform: translateY(-1px);
    outline: none;
}

.cy-language-switch:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .cy-language-switch {
        top: 68px;
        right: 14px;
        min-width: 44px;
        height: 32px;
        padding: 0 12px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cy-language-switch {
        transition: none;
    }
}
