:root {
    --default: transparent;
    --body-theme-bg: #777;
    --announcement-cntr-bg: #ff9600;
    --announcement-cntr-color: #000;
    --announcement-cntr-section-announcement-bg: #1e1e1e;
    --announcement-cntr-section-announcement-color: #fff;
    --announcement-cntr-list-li-color: #ff9600;
    --banner-bg: #020518;
    --banner-carousel-indicators-li-border: 1px solid #fff;
    --banner-carousel-indicators-active-bg: #fe9b00;
    --banner-carousel-indicators-active-border: #fe9b00;
    --download-apk-content-bg: #151515;
    --download-apk-details-title-color: #fff;
    --download-apk-details-desc-color: #dbdbdb;
    --download-apk-details-btn-color: #fff;
    --download-apk-details-btn-bg: linear-gradient(to bottom, #f3dd7f 0%, #b88416 100%);
    --download-apk-details-btn-back-color: #fff;
    --download-apk-details-btn-back-bg: #444;
    --download-apk-details-btn-back-bs: none;
    --download-apk-color: #fff;
    --download-apk-section-i-color: #faa302;
    --download-apk-btn-color: #fefefe;
    --download-apk-btn-bg: linear-gradient(to bottom, #faa302 0%, #cf7300 100%);
    --download-apk-btn-hover-color: #fefefe;
    --download-popup-modal-body-span-color: #fff;
    --download-popup-modal-header-title-color: #ff9600;
    --home-progressive-jackpot-bg: linear-gradient(#331e00, #ff9600, #331e00);
    --home-progressive-jackpot-color: #fff;
    --home-progressive-jackpot-outer-cntr-bg: #000;
    --home-progressive-jackpot-inner-cntr-bg: linear-gradient(#6e4100, #251600);
    --home-progressive-jackpot-border-cntr-bg: #0009;
    --home-progressive-jackpot-border-cntr-border: 3px solid #ff9600;
    --home-progressive-jackpot-jackpot-cntr-bg: linear-gradient(#ff9600, #321f04);
    --home-progressive-jackpot-jackpot-inner-cntr-bg: #000;
    --home-progressive-jackpot-jackpot-border-cntr-border: 3px dotted #613a03;
    --home-progressive-jackpot-jackpot-currency-color: #ff9600;
    --home-progressive-jackpot-jackpot-play-text-color: #fd6f16;
    --home-progressive-jackpot-jackpot-play-text-label-color: #009fc5;
    --lottery-result-cntr-bg: #3b3a3a;
    --lottery-result-cntr-color: #fff;
    --lottery-result-cntr-title-bg: #ff9600;
    --lottery-result-cntr-title-color: #000;
    --lottery-result-cntr-numbers-bg: #272727;
    --sports-platform-title-color: #fff;
    --sports-matches-cntr-bg: #1e1e1e;
    --sport-match-item-bg: #d77c00;
    --sport-match-item-color: #fff;
    --sport-match-item-even-bg: #de7800;
    --sport-match-item-even-color: #fff;
    --sport-match-item-info-cntr-bg: #9a5300;
}

#cst-shadow-host,
#cst-shadow-host * {
    box-sizing: border-box;
}

#cst-shadow-host .cst-overlay {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: rgba(0, 0, 0, .6);
}

#cst-shadow-host .cst-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#cst-shadow-host .cst-banner,
#cst-shadow-host .cst-wrap {
    width: 90%;
    max-width: 400px;
}

#cst-shadow-host .cst-banner {
    position: relative;
}

#cst-shadow-host .cst-slides {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    touch-action: pan-y;
}

#cst-shadow-host .cst-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
}

#cst-shadow-host .cst-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

#cst-shadow-host .cst-popup-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#cst-shadow-host .cst-slider-btn {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 15%;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
    text-shadow: 0 1px 3px #000;
    opacity: .65;
    transition: opacity .18s ease;
    cursor: pointer;
}

#cst-shadow-host .cst-slider-btn[hidden],
#cst-shadow-host .cst-dots[hidden] {
    display: none;
}

#cst-shadow-host .cst-prev {
    left: 0;
}

#cst-shadow-host .cst-next {
    right: 0;
}

#cst-shadow-host .cst-slider-btn:hover,
#cst-shadow-host .cst-slider-btn:focus-visible {
    outline: 0;
    opacity: 1;
}

#cst-shadow-host .cst-slider-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

#cst-shadow-host .cst-slider-btn:active {
    opacity: .4;
}

#cst-shadow-host .cst-dots {
    position: absolute;
    bottom: 9px;
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

#cst-shadow-host .cst-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: var(--banner-carousel-indicators-li-border);
    border-radius: 50%;
    background: transparent;
    transition: background .18s ease;
    cursor: pointer;
}

#cst-shadow-host .cst-dot.is-active {
    border-color: var(--banner-carousel-indicators-active-border);
    background: var(--banner-carousel-indicators-active-bg);
}

#cst-shadow-host .cst-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

#cst-shadow-host .cst-slide-status {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}

#cst-shadow-host .cst-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

#cst-shadow-host .cst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
}

#cst-shadow-host .cst-btn {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 12px 5px;
    border: 2px solid var(--announcement-cntr-bg);
    border-radius: 8px;
    background: var(--download-apk-btn-bg);
    color: var(--download-apk-btn-color);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

#cst-shadow-host .cst-btn:hover,
#cst-shadow-host .cst-btn:focus-visible {
    box-shadow: 0 6px 16px rgba(255, 150, 0, .45);
    filter: brightness(1.15);
    transform: translateY(-3px) scale(1.03);
}

#cst-shadow-host .cst-btn:active {
    box-shadow: 0 2px 7px rgba(255, 150, 0, .35);
    filter: brightness(.95);
    transform: scale(.96);
}

#cst-shadow-host .cst-btn::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(134deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: skewX(-25deg);
    animation: cst-shine 2s infinite;
    content: "";
}

#cst-shadow-host .cst-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .45);
    animation: cst-close-pulse 1.5s ease-in-out infinite;
}

#cst-shadow-host .cst-close:hover,
#cst-shadow-host .cst-close:focus-visible {
    filter: brightness(1.2);
    transform: rotate(90deg) scale(1.1);
}

#cst-shadow-host .cst-close:active {
    filter: brightness(.9);
    transform: rotate(90deg) scale(.86);
}

#cst-shadow-host .cst-close::before,
#cst-shadow-host .cst-close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: var(--download-apk-btn-color);
    animation: none;
    content: "";
}

#cst-shadow-host .cst-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#cst-shadow-host .cst-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

#cst-shadow-host .cst-caption {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(255, 150, 0, .3);
    border-left: 4px solid var(--announcement-cntr-bg);
    border-radius: 5px;
    background: linear-gradient(90deg, #1e1e1e, #2b210f);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
    color: var(--announcement-cntr-section-announcement-color);
    font-size: 11px;
    text-align: center;
    text-shadow: 0 1px 3px #000;
}

@keyframes cst-shine {
    from { left: -100%; }
    to { left: 150%; }
}

@keyframes cst-close-pulse {
    0%, 100% { box-shadow: 0 3px 10px rgba(0, 0, 0, .45), 0 0 0 0 rgba(255, 150, 0, .5); }
    50% { box-shadow: 0 3px 10px rgba(0, 0, 0, .45), 0 0 0 7px rgba(255, 150, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    #cst-shadow-host .cst-btn {
        transition: none;
    }

    #cst-shadow-host .cst-btn::before {
        animation: none;
    }

    #cst-shadow-host .cst-close {
        animation: none;
    }

    #cst-shadow-host .cst-slide,
    #cst-shadow-host .cst-slider-btn,
    #cst-shadow-host .cst-dot {
        transition: none;
    }
}
