@charset "utf-8";

/* 语言选择器样式 */
.language-select {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #4CAF50;
    background-color: white;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    height: 34px;
    outline: none;
}

.language-select:hover {
    border-color: #45a049;
}

.language-select:focus {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* 游戏分类按钮样式 */
.game-categories {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0 15px;
    width: 100%;
    max-width: 800px;
    margin-left: -15px;
    margin-right: auto;
}

.category-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 5px;
    margin: 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: #e9e9e9;
}

.category-btn.active {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    border-color: #45a049;
}


