.hot-list-container {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hot-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.hot-tab {
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.hot-tab.active {
    background: #4CAF50;
    color: white;
}

.hot-game-item {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #eee;
}

.rank-number {
    font-size: 24px;
    font-weight: bold;
    color: #999;
    width: 40px;
}

.rank-number.top-3 {
    color: #FF6B6B;
}

.hot-game-info {
    flex: 1;
    margin: 0 15px;
}

.hot-game-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.hot-game-meta {
    font-size: 12px;
    color: #666;
}

.hot-game-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.hot-game-stats {
    text-align: right;
    margin-left: 15px;
}

.download-count {
    font-size: 14px;
    color: #FF6B6B;
    font-weight: bold;
}

.trend-icon {
    font-size: 12px;
    color: #4CAF50;
}