.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
}

.game-item {
    background-color: #f7d294;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 5px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.game-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}

.big-game-item {
    grid-column: span 3;
    background-color: #f7d294;
}