h2 {    
    margin-top: 40px;
    font-size: 20px;
    color: #333;
}

.game-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;            
}

.top10-section {
    max-width: 1280px;
    margin: 40px auto;
    padding: 0;
    font-family: 'Malgun Gothic', sans-serif;
}

.top10-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #222;
    border-left: 4px solid #6699ff;
    padding-left: 10px;
}

.game-card-container {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 8px;
    justify-content: center;
    width: 1280px;
    margin: 0 auto;            
}

.game-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    font-family: 'Malgun Gothic', sans-serif;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.game-card:hover {
    transform: translateY(-3px);
}

.game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.game-info {
    padding: 6px;
}

.game-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-meta {
    font-size: 12px;
    color: #666;
}