/**
 * Little Fire - 多语言按钮样式
 */

/* 语言切换按钮容器 */
.lang-switch {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

/* 语言按钮 */
.lang-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lang-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.lang-btn:active {
    transform: translateY(0);
}

