/* Language Switcher Button Styles */
.ru-lang-sw {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9999;
    background: #111111;
    padding: 6px 16px;
    border: 1px solid #333333;
    border-radius: 24px;
    font-family: Georgia, serif;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.admin-bar .ru-lang-sw {
    top: 47px;
}

@media (max-width: 479px) {
    .ru-lang-sw {
        right: auto;
        left: 15px;
    }
}

.ru-lang-sw a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
}

.ru-lang-sw .sep {
    color: rgba(255, 255, 255, 0.25);
    margin: 0 10px;
    font-size: 11px;
}

.ru-lang-sw .active {
    color: #f39c12;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(243, 156, 18, 0.4);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #222;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
