.lh-scope {
    --lh-bg: linear-gradient(110deg, #1e283f, rgba(20,27,46,.72));
    --lh-bg-hover: linear-gradient(90deg, #2d3c5e, #1b2642);
    --lh-green: linear-gradient(267.05deg, #089e4e 0%, #31bc69 99.28%);
    --lh-shadow: 0 6px 18px rgba(14,161,81,.30);
    --lh-text: #fff;
    --lh-muted: rgba(255,255,255,.76);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.lh-scope img {
    max-width: 100%;
    height: auto;
}

.lh-scope .lh-banners {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    width: 100%;
}

.lh-scope .banners__photo {
    position: relative;
    width: 57.8%;
    aspect-ratio: 1087 / 452;
    min-height: 280px;
    overflow: visible;
}

.lh-scope .banners__sliders,
.lh-scope .banners__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.lh-scope .banners__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
}

.lh-scope .banners__slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.lh-scope .banners__slide a,
.lh-scope .banners__sm a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    border-radius: var(--cs-r-img, 20px);
    color: var(--lh-text);
    background:
        radial-gradient(circle at 80% 25%, rgba(49,188,105,.38), transparent 32%),
        radial-gradient(circle at 15% 80%, rgba(27,241,255,.22), transparent 34%),
        var(--lh-bg);
}

.lh-scope .banners__slide a::after,
.lh-scope .banners__sm a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9,15,30,.78), rgba(9,15,30,.12) 60%, rgba(9,15,30,.06));
    pointer-events: none;
}

.lh-scope .banners__slide img,
.lh-scope .banners__sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.lh-scope .banners__offer {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px;
    color: var(--lh-text);
}

.lh-scope .banners__offer strong {
    display: block;
    max-width: 320px;
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: .33px;
    text-shadow: 0 3px 5px rgba(9,15,30,.22);
}

.lh-scope .banners__offer__title > span {
    display: block;
    max-width: 260px;
    color: var(--lh-muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.lh-scope .banners__href {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 29px;
}

.lh-scope .banners__btn,
.lh-scope .btn-more__detals,
.lh-scope .banners__btn_white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--cs-r-btn, 10px);
    font-weight: 600;
    text-transform: uppercase;
    transition: transform .2s ease, opacity .2s ease;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    max-width: none;
}

.lh-scope .banners__btn {
    min-width: 70px;
    min-height: 40px;
    padding: 0 20px;
    background: var(--lh-green);
    box-shadow: var(--lh-shadow);
    color: #fff;
    font-size: 13px;
}

.lh-scope .btn-more__detals {
    min-width: 72px;
    min-height: 40px;
    padding: 0 20px;
    background: rgba(255,255,255,.20);
    color: #fff;
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(0,0,0,.20);
}

.lh-scope .banners__btn:hover,
.lh-scope .btn-more__detals:hover {
    transform: scale(1.05);
}

.lh-scope .banners__arrows {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 5;
    display: flex;
    gap: 6px;
    padding: 5px;
    border-radius: 12px;
    background: rgba(255,255,255,.16);
    opacity: 0;
    transition: opacity .25s;
}

.lh-scope .banners__photo:hover .banners__arrows {
    opacity: 1;
}

.lh-scope .banners-button-prev,
.lh-scope .banners-button-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 8px;
    background: rgba(255,255,255,.20);
    color: rgba(255,255,255,.68);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.lh-scope .banners-button-prev:hover,
.lh-scope .banners-button-next:hover {
    background: rgba(255,255,255,.28);
    color: #fff;
    transform: translateY(-1px);
}

.lh-scope .banners-button-prev svg,
.lh-scope .banners-button-next svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    pointer-events: none;
}

.lh-scope .banners-button-prev svg {
    margin-left: -1px;
}

.lh-scope .banners-button-next svg {
    margin-right: -1px;
}

.lh-scope .swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: -20px;
    z-index: 4;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.lh-scope .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    opacity: .5;
}

.lh-scope .swiper-pagination-bullet-active {
    opacity: 1;
}

.lh-scope .banners__sm {
    position: relative;
    width: 20.3%;
    aspect-ratio: 362 / 429;
    min-height: 280px;
}

.lh-scope .banners__sm .banners__offer {
    padding: 28px 24px;
}

.lh-scope .banners__sm strong {
    max-width: 220px;
    font-size: 24px;
}

.lh-scope .banners__btn_white {
    width: 100%;
    max-width: 260px;
    min-height: 50px;
    padding: 0 18px;
    background: #fff;
    color: #090f1e !important;
    box-shadow: 0 10px 35px rgba(0,0,0,.20);
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lh-scope .lh-categories {
    padding-top: 25px;
}

.lh-scope .categories__fl {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.lh-scope .categories__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 92px;
    padding: 15px 20px;
    overflow: hidden;
    border-radius: var(--cs-r-card, 12px);
    background: var(--lh-bg);
    color: #fff;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.lh-scope .categories__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--lh-bg-hover);
    opacity: 0;
    transition: opacity .2s ease;
}

.lh-scope .categories__card:hover::before {
    opacity: 1;
}

.lh-scope .categories__card_wrap {
    position: relative;
    z-index: 2;
    min-width: 0;
    color: #fff;
}

.lh-scope .categories__card_wrap strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
}

.lh-scope .categories__card_wrap span {
    display: block;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.lh-scope .categories__card_img {
    position: relative;
    z-index: 2;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    object-fit: contain;
    transition: transform .25s ease;
}

.lh-scope .categories__card_img--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lh-green);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    box-shadow: var(--lh-shadow);
}

.lh-scope .categories__card:hover .categories__card_img {
    transform: translateZ(10px) rotate(-10deg);
}

.lh-scope .lh-news {
    padding-top: 25px;
    width: 100%;
}

.lh-scope .games-info__cnt {
    position: relative;
    width: 100%;
    margin-top: 25px;
    padding: 30px 30px 70px;
    border: 1px solid #4b5058;
    border-radius: 12px;
    background: var(--lh-bg);
}

.lh-scope .games-info__cnt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    display: block;
    height: 4px;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    background: linear-gradient(90deg, #1bf1ff 0%, #0855c4 100%);
    background-size: 200% auto;
}

.lh-scope .games-info__cnt > h1 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    line-height: 29px;
    text-transform: none;
}

.lh-scope .post_list--items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0 40px;
}

.lh-scope .games-vin__box {
    width: 24%;
    height: auto;
}

.lh-scope .games-vin__info {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    transition: transform .2s ease, background .2s ease;
}

.lh-scope .games-vin__info:hover {
    background: #050914;
    transform: translateY(-2px);
}

.lh-scope .games-vin__info img {
    width: 100%;
    height: 184px;
    object-fit: cover;
    border-radius: 6px;
}

.lh-scope .games-vin__info h3 {
    margin: 15px 0 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
    text-transform: none;
}

.lh-scope .games-vin__info p {
    margin: 10px 0 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

@media (max-width: 1399px) {
    .lh-scope .games-vin__box {
        width: 32.333%;
    }

    .lh-scope .games-vin__info h3 {
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 1200px) {
    .lh-scope .games-vin__box {
        width: 49%;
    }
}

@media (max-width: 970px) {
    .lh-scope .post_list--items {
        justify-content: center;
    }

    .lh-scope .games-vin__box {
        width: 100%;
        max-width: 300px;
    }

    .lh-scope .games-info__cnt {
        padding: 24px 15px 30px;
    }
}

@media (max-width: 1024px) {
    .lh-scope .lh-banners {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lh-scope .banners__photo {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 340px;
    }

    .lh-scope .banners__sm {
        width: 100%;
        min-height: 220px;
    }

    .lh-scope .categories__fl {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    /* Reference keeps the two small banners side by side on phones */
    .lh-scope .lh-banners {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lh-scope .banners__photo {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .lh-scope .banners__sm {
        min-height: 0;
        aspect-ratio: 8 / 7;
    }

    .lh-scope .banners__offer {
        padding: 20px 16px;
    }

    .lh-scope .banners__offer strong {
        font-size: 20px;
    }

    /* Small banners are now ~half width — scale their content down to fit */
    .lh-scope .banners__sm .banners__offer {
        padding: 16px 14px;
    }

    .lh-scope .banners__sm .banners__offer strong {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .lh-scope .banners__sm .banners__offer__title > span {
        font-size: 12px;
    }

    .lh-scope .banners__sm .banners__btn_white {
        min-height: 38px;
        max-width: 100%;
        padding: 0 10px;
        font-size: 12px;
    }

    .lh-scope .banners__href {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 18px;
    }

    .lh-scope .banners__btn,
    .lh-scope .btn-more__detals {
        min-height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .lh-scope .banners__btn_white {
        min-height: 42px;
        font-size: 13px;
    }

    .lh-scope .banners__arrows {
        opacity: 1;
    }

    .lh-scope .categories__fl {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lh-scope .categories__card {
        min-height: 84px;
    }
}
