/* 语言切换器样式 */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    box-shadow: none;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.language-switch {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    border-radius: 6px;
    margin: 0;
    transition: all 0.2s;
    outline: none;
}
.language-switch:not(:last-child) {
    margin-right: 4px;
}
.language-switch:hover {
    background: rgba(0,180,255,0.12);
    color: #00b4ff;
    border-color: #00b4ff;
}
.language-switch.active {
    background: rgba(0,180,255,0.22);
    color: #00b4ff;
    border-color: #00b4ff;
    font-weight: bold;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .language-switcher {
        gap: 4px;
    }
    .language-switch {
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* 移除下拉相关样式 */
.language-dropdown, .current-language, .language-switcher:hover .current-language::after, .language-switcher:hover .language-dropdown {
    display: none !important;
}

/* 页面加载时的淡入效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 