.slot-games {
    padding: 40px 0 60px;
}
.slot-games__title {
    margin-bottom: 34px;
}
.slot-games__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.slot-games__card {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    transition: transform .25s ease, box-shadow .25s ease;
    display: block;
}
.slot-games__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.slot-games__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(139,233,253,.18);
}
.slot-games__card:hover img {
    transform: scale(1.04);
}
.slot-games__card-title {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 20px 12px 10px;
    background: linear-gradient(0deg, rgba(10,15,36,.9), rgba(10,15,36,0));
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    opacity: 0;
    transition: opacity .25s ease;
}
.slot-games__card:hover .slot-games__card-title { opacity: 1; }
.slot-games__card.is-hidden { display: none; }

.slot-games__cta {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .slot-games__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .slot-games__grid { grid-template-columns: 1fr; }
}
