.slots-home-section {
    max-width: 100%;
    margin-top: 20px;
}

.slots-home-section .slots-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.slots-home-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.slot-home-card {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #1b2341;
    transition: transform .2s;
}

.slot-home-card:hover {
    transform: scale(1.04);
}

.slot-home-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    padding: 6px;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    .slots-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .slots-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .slot-home-card img {
        height: 160px;
    }
    .slots-home-section .slots-title {
        font-size: 20px;
    }
}

@media (max-width: 400px) {
    .slots-home-grid {
        gap: 6px;
    }
    .slot-home-card img {
        height: 130px;
    }
}
