.new-game-container {
    margin-bottom: 60px;
}

.section-title {
    font-size: 18px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title .more {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.new-game-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.new-game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.new-game-info {
    padding: 15px;
}

.game-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.game-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.status-tag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-right: 5px;
}

.status-new {
    background: #4CAF50;
    color: white;
}

.status-coming {
    background: #FF9800;
    color: white;
}

.reserve-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
    text-decoration: none;
}

.coming-soon {
    background: #FF9800;
}