.lang-switcher-topbar .lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: linear-gradient(135deg, #051829 0%, #0a2d4a 100%);
    color: #ffc934;
    text-decoration: none;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.lang-switcher-topbar .lang-btn:hover {
    background: linear-gradient(135deg, #fdc900 0%, #ffd700 100%);
    color: #051829;
    border-color: #fdc900;
    box-shadow: 0 4px 10px rgba(253, 201, 0, 0.3);
    transform: translateY(-2px) scale(1.1);
}

.lang-switcher-topbar .lang-btn i {
    font-size: 20px;
    line-height: 1;
}
