/*

Custom style

You can override the default class or style here

This file will not be overwritten by the updater

*/
/* ========== Default Game Card Style ========== */
.grid-item .list-game {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

/* ========== Hover 1: Scale + Shadow ========== */
.grid-item .list-game:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ========== Hover 2: Image Zoom In ========== */
.grid-item .list-thumbnail img {
    transition: transform 0.4s ease;
}

.grid-item:hover .list-thumbnail img {
    transform: scale(1.15);
}

/* ========== Hover 3: Overlay + Title Highlight ========== */
.grid-item .list-game {
    position: relative;
}

.grid-item .list-game::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .list-game::after {
    opacity: 1;
}

.grid-item .list-title {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.grid-item:hover .list-title {
    color: #ffd700; /* gold color highlight */
}

/* ========== Hover 4: Glow Effect ========== */
.grid-item:hover .list-game {
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.6);
}
