﻿.game-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

.game-card-image {
    position: relative;
    overflow: hidden;
}

    .game-card-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.game-card:hover .game-card-image img {
    transform: scale(1.05);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-content {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.game-genre {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.game-description {
    color: #6c757d;
    margin-bottom: 1rem;
}

.game-platforms .badge {
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.game-filters {
    margin-bottom: 2rem;
}

    .game-filters .btn {
        margin: 0 0.25rem 0.5rem 0.25rem;
    }
