.game-card {
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gameName {
    color: #ff8515;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .game-card img {
        height: 150px;
    }

    .gameName {
        font-size: 1.1rem;
    }
}

.btn-default {
    background-color: #ff8515;
    padding: 8px 20px;
    border: none;
    transition: background-color 0.3s ease;
    color: #fff;
}

.btn-default:hover {
    background-color: #ff8515;
}

.search-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

