:root {
    --primary-text-color: #000;
    --secondary-text-color: #333;
    --theme-text-color: #1fc2f0;
    --primary-button-bg: #224ba8;
    --bonus-slider-modal-bg: #fff;
    --bonus-slider-form-bg: #d5d5d5;
    --bonus-slider-form-text-color: #454545;
    --bonus-slider-form-border-top-color: #b7b7b7;
    --bonus-slider-control-button-bg: #fff;
    --bonus-slider-control-button-color: #525252;
    --bonus-slider-activation-button-hover-bg: #06a0b1;
    --bonus-slider-close-hover-bg: #202020;
    --claim-item-type-bg: #42acec;
    --claim-item-type-color: #fff;
    --claim-type-exp-countdown-bg: transparent;
    --claim-type-exp-countdown-data-section-bg: #3ea2df;
    --claim-item-bg: #fff;
    --claim-item-border: #42acec;
    --claim-item-color: #009fd6;
    --claim-item-titile-free-spin-note-color: #3cb8dd;
    --bonus-progress-progress-bg: #ddd;
    --bonus-progress-progress-bar-success-bg: linear-gradient(to right, #a4c165 0%, #6dcf67 100%);
    --claim-info-modal-h4-color: #fff;
    --claim-item-button-color: #fff;
    --claim-item-activation-button-bg: #3cb8dd;
    --claim-item-activation-button-hover-bg: #256fa3;
    --claim-item-activation-btn-bg: #3cb8dd;
    --claim-item-activation-btn-hover-bg: #256fa3;
    --claim-item-a-activation-button-color: #fff;
    --claim-item-claim-button-bg: linear-gradient(to bottom, #00ff23 0%, #009d16 100%);
    --claim-item-claim-button-border-color: #e4ff23;
    --claim-item-claim-button-color: #000;
    --claim-item-claim-button-hover-bg: linear-gradient(to top, #00ff23 0%, #009d16 100%);
    --claim-item-info-button-bg: #a0a0a0;
    --claim-item-info-button-color: #fff;
    --claim-item-info-button-hover-bg: #dcdcdc;
    --claim-info-modal-modal-body-info-section-highlighted-section-bg: #e7e7e7;
    --claim-info-modal-modal-body-info-section-highlighted-section-color: #000;
    --claim-info-modal-modal-body-info-section-highlighted-section-with-separator-border: #0003;
    --claim-info-modal-modal-body-info-section-highlighted-section-turnover-calc-note-span-color: #d35f00;
    --claim-info-modal-modal-body-info-section-title-border: 1px solid #292835;
    --combine-promo-info-warning-color: #db7500;
    --combine-promo-info-value-text-color: #000;
    --contact-us-list-li-h6-color: #237dbf;
    --contact-us-list-a-color: #08abdc;
    --contact-us-list-a-hover-color: #08abdc;
    --announcement-outer-cntr-bg: #e5e5e5;
    --announcement-outer-cntr-color: #0e203e;
    --announcement-cntr-data-section-announcements-bg: #cdd6dc;
    --home-progressive-jackpot-bg: linear-gradient(#000d10, #004652, #000d10);
}

#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 {
    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: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    transition: background .18s ease;
    cursor: pointer;
}

#cst-shadow-host .cst-dot.is-active {
    border-color: var(--theme-text-color);
    background: var(--theme-text-color);
}

#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(--theme-text-color);
    border-radius: 8px;
    background: linear-gradient(to bottom, var(--theme-text-color), var(--primary-button-bg));
    color: var(--claim-item-button-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(31, 194, 240, .45);
    filter: brightness(1.15);
    transform: translateY(-3px) scale(1.03);
}

#cst-shadow-host .cst-btn:active {
    box-shadow: 0 2px 7px rgba(31, 194, 240, .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(--claim-item-button-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(31, 194, 240, .3);
    border-left: 4px solid var(--theme-text-color);
    border-radius: 5px;
    background: linear-gradient(90deg, #0e203e, var(--primary-button-bg));
    box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
    color: var(--claim-item-type-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(31, 194, 240, .5); }
    50% { box-shadow: 0 3px 10px rgba(0, 0, 0, .45), 0 0 0 7px rgba(31, 194, 240, 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;
    }
}
