.slot_games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 13px;
    align-items: center;
    position: relative;
    margin-bottom: 13px;
    /* Убрано max-width и margin: 0 auto */
    width: 100%;
    margin: 0;
    padding: 0 15px;
}

.main_slider {
    position: relative;
    width: 100%;
    /* Убрано max-width и margin: 0 auto */
    margin: 0;
}

.main_slider_items {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 25px;
}

.main_slider_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    justify-content: center;
    align-items: center;
}

.main_slider_item.current {
    opacity: 1;
    z-index: 3;
}

.main_slider_item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 25px;
}

.main_slider_dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 4;
}

.main_slider_dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0;
    background: #777;
    cursor: pointer;
    opacity: .5;
    transition: opacity .4s ease-in-out;
}

.main_slider_dot.current {
    background-color: #016FED;
    opacity: 1;
}

/* Z-блоки */
.zslot_games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 13px;
    align-items: center;
    position: relative;
    margin-bottom: 13px;
    /* Убрано max-width и margin: 0 auto */
    width: 100%;
    margin: 0;
    padding: 0 15px;
}

.zmain_slider {
    position: relative;
    width: 100%;
    /* Убрано max-width и margin: 0 auto */
    margin: 0;
}

.zmain_slider_items {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-radius: 25px;
}

.zmain_slider_item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zmain_slider_item.current {
    opacity: 1;
    z-index: 3;
}

.zmain_slider_item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 25px;
}

.zmain_slider_dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 7px;
    z-index: 4;
}

.zmain_slider_dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 0;
    background: #777;
    cursor: pointer;
    opacity: .5;
    transition: opacity .4s ease-in-out;
}

.zmain_slider_dot.current {
    background-color: #016FED;
    opacity: 1;
}

@media(max-width: 850px) {
    .zslot_games {
        grid-template-columns: repeat(1, 1fr);
    }
    .zmain_slider {
        display: none;
    }
    .main_slider_items {
        height: 180px;
    }
}

@media(max-width: 650px) {
    .slot_games {
        grid-template-columns: repeat(1, 1fr);
    }
    .main_slider_items {
        height: 160px;
    }
}
