.lang-switch {
    margin-left: 24px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4px 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.2s ease;
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: none;
    box-shadow: none;
}

.lang-switch .lang-active {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.lang-switch .lang-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 3px;
    font-weight: 300;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 2px 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 400;
}

.lang-switch a:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

/* Mobile Notice Bar Styles */

.mobile-notice-bar {
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 22px 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 1000;
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notice-icon {
    font-size: 1.2rem;
    color: #fff;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.notice-text {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.notice-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.notice-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.notice-link i {
    font-size: 0.8rem;
}

/* Only show on mobile devices */

@media (min-width: 769px) {
    .mobile-notice-bar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-notice-bar {
        display: block;
    }
}