.cbo-root,
.cbo-top-wrap {
    --cbo-content-max: 880px;
    --cbo-side-width: 220px;
    --cbo-side-edge: 8px;
    --cbo-gap: 10px;
    --cbo-gap-side: 8px;
    --cbo-gap-bottom: 3px;
    --cbo-radius: 6px;
    --cbo-radius-sm: 10px;
    --cbo-pill: 999px;
    --cbo-bg: #fff;
    --cbo-white: #fff;
    --cbo-ui: rgba(0, 0, 0, .68);
    --cbo-ui-hover: rgba(0, 0, 0, .84);
    --cbo-overlay: rgba(0, 0, 0, .66);
    --cbo-shadow: 0 10px 26px rgba(0, 0, 0, .1);
    --cbo-shadow-strong: 0 24px 70px rgba(0, 0, 0, .34);
    --cbo-top-min-h: 104px;
    --cbo-top-min-h-mobile: 82px;
    --cbo-top-item-min-h: 82px;
    --cbo-bottom-offset: 16px;
    --cbo-bottom-offset-mobile: 12px;
    --cbo-z-side: 900;
    --cbo-z-bottom: 901;
    --cbo-z-ui: 902;
    --cbo-z-popup: 9999;
    --cbo-speed: .18s ease;
}

.cbo-root,
.cbo-root *,
.cbo-root *::before,
.cbo-root *::after {
    box-sizing: border-box;
}

.cbo-root,
.cbo-root .cbo-fixed-wrap {
    color: inherit;
    font-family: inherit;
    line-height: 1.4;
}

.cbo-root img,
.cbo-popup img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
}

.cbo-top-item,
.cbo-side-item,
.cbo-bottom-item,
.cbo-popup-link {
    display: block;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

.cbo-top-layer,
.cbo-bottom-layer,
.cbo-popup-step {
    display: none;
    width: 100%;
}

.cbo-top-layer.is-active,
.cbo-bottom-layer.is-active,
.cbo-popup[data-step="choice"] .cbo-popup-step-choice,
.cbo-popup[data-step="image"] .cbo-popup-step-image,
.cbo-popup.is-image-step .cbo-popup-step-image {
    display: block;
}

.cbo-top-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--cbo-radius);
    background: var(--cbo-bg);
    box-shadow: var(--cbo-shadow);
}

.cbo-top-stage {
    position: relative;
    width: 100%;
    min-height: var(--cbo-top-min-h);
}

.cbo-top-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--cbo-gap);
    width: 100%;
    margin: 0 auto;
    padding: var(--cbo-gap);
}

.cbo-top-grid-desktop .cbo-top-item {
    flex: 0 0 calc((100% - 4 * var(--cbo-gap)) / 5);
    max-width: calc((100% - 4 * var(--cbo-gap)) / 5);
}

.cbo-top-grid-mobile .cbo-top-item {
    flex: 0 0 calc((100% - 2 * var(--cbo-gap)) / 3);
    max-width: calc((100% - 2 * var(--cbo-gap)) / 3);
}

.cbo-top-item {
    position: relative;
    min-height: var(--cbo-top-item-min-h);
    overflow: hidden;
    border-radius: var(--cbo-radius-sm);
    background: var(--cbo-bg);
}

.cbo-side {
    position: fixed;
    top: 50%;
    z-index: var(--cbo-z-side);
    display: none;
    width: var(--cbo-side-width);
    gap: var(--cbo-gap-side);
    align-items: start;
    transform: translateY(-50%);
    pointer-events: auto;
}

.cbo-side-left {
    left: var(--cbo-side-edge);
}

.cbo-side-right {
    right: var(--cbo-side-edge);
}

.cbo-side-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--cbo-gap-side);
    width: 100%;
}

.cbo-side-wide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--cbo-gap-side);
    width: 100%;
}

.cbo-side-card {
    position: relative;
    width: 100%;
}

.cbo-side-card.is-hidden {
    display: none !important;
}

.cbo-side-item img,
.cbo-bottom-gif {
    border-radius: var(--cbo-radius);
    box-shadow: var(--cbo-shadow);
}

.cbo-top-wrap {
    width: calc(100% - 16px);
    max-width: var(--cbo-content-max);
    margin: 0 auto 12px;
    padding: 0;
}

.cbo-bottom-wrap {
    position: fixed;
    left: 50%;
    bottom: env(safe-area-inset-bottom, 0);
    z-index: var(--cbo-z-bottom);
    width: min(100% - 16px, var(--cbo-content-max));
    max-width: 100%;
    transform: translateX(-50%);
}

.cbo-bottom-stage,
.cbo-bottom-layer,
.cbo-bottom-content,
.cbo-bottom-item,
.cbo-bottom-item img,
.cbo-bottom-gif {
    width: 100%;
}

.cbo-bottom-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--cbo-gap-bottom);
    align-items: center;
}

.cbo-bottom-content[data-count="1"]>.cbo-bottom-item:nth-child(1),
.cbo-bottom-content[data-count="3"]>.cbo-bottom-item:nth-child(1) {
    grid-column: 1 / -1;
    justify-self: center;
}

.cbo-bottom-content[data-count="3"]>.cbo-bottom-item:nth-child(2),
.cbo-bottom-content[data-count="3"]>.cbo-bottom-item:nth-child(3) {
    grid-column: auto;
    width: 100%;
}

.cbo-bottom-bar {
    position: absolute;
    inset: 0;
    height: 0;
    pointer-events: none;
}

.cbo-bottom-wrap.closed .cbo-bottom-stage,
.cbo-bottom-wrap.closed .cbo-bottom-close,
.cbo-bottom-wrap.open .cbo-bottom-open {
    display: none;
}

.cbo-close,
.cbo-bottom-btn,
.cbo-popup-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--cbo-ui);
    color: var(--cbo-white);
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background-color var(--cbo-speed), transform var(--cbo-speed), border-color var(--cbo-speed);
}

.cbo-close {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 3;
    min-width: 18px;
    min-height: 18px;
    border-radius: var(--cbo-pill);
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.cbo-bottom-btn {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.2;
    pointer-events: auto;
    touch-action: manipulation;
}

.cbo-bottom-close {
    position: absolute;
    top: -28px;
    right: 0;
    z-index: var(--cbo-z-ui);
}

.cbo-bottom-open {
    position: fixed;
    left: 50%;
    bottom: env(safe-area-inset-bottom, 8px);
    z-index: var(--cbo-z-ui);
    transform: translateX(-50%);
}

.cbo-close:hover,
.cbo-bottom-btn:hover,
.cbo-popup-close:hover {
    background: var(--cbo-ui-hover);
}

.cbo-close:focus-visible,
.cbo-bottom-btn:focus-visible,
.cbo-popup-close:focus-visible,
.cbo-popup-choice-btn:focus-visible,
.cbo-popup-link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .9);
    outline-offset: 2px;
}

.cbo-top-item.is-disabled,
.cbo-side-item.is-disabled,
.cbo-bottom-item.is-disabled {
    cursor: default;
}

.cbo-root .cbo-popup {
    position: fixed;
    inset: 0;
    z-index: var(--cbo-z-popup);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.cbo-popup.is-open {
    display: flex;
}

.cbo-popup-backdrop {
    position: absolute;
    inset: 0;
    background: var(--cbo-overlay);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cbo-popup-box {
    position: relative;
    z-index: 1;
    width: min(88vw, 420px);
    border-radius: 18px;
    animation: sonicCboPopupIn .22s ease both;
}

.cbo-popup-choice-card,
.cbo-popup-link {
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: inherit;
    box-shadow: var(--cbo-shadow-strong);
}

.cbo-popup-link {
    background: var(--cbo-bg);
}

.cbo-popup-link img {
    max-width: none;
    margin: 0;
    border-radius: inherit;
}

.cbo-popup-choice-card {
    position: relative;
    padding: 30px 18px 22px;
    border-radius: var(--cbo-radius);
    border: 1px solid rgba(255, 255, 255, .2);
    background: radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .35), transparent 24%), radial-gradient(circle at 86% 16%, rgba(255, 222, 0, .28), transparent 27%), radial-gradient(circle at 50% 110%, rgba(0, 212, 255, .18), transparent 34%), linear-gradient(135deg, #15001f 0%, #3c005f 46%, #05000e 100%);
    text-align: center;
    isolation: isolate;
}

.cbo-popup-choice-card::before,
.cbo-popup-choice-card::after,
.cbo-popup-choice-btn::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cbo-popup-choice-card::before {
    inset: -60%;
    z-index: -1;
    background: conic-gradient(from 0deg, transparent 0 18%, rgba(255, 255, 255, .34) 24%, transparent 34% 100%);
    animation: sonicCboPopupSpin 3.4s linear infinite;
}

.cbo-popup-choice-card::after {
    inset: 3px;
    z-index: -1;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 204, 0, .2), rgba(255, 0, 76, .08), rgba(0, 212, 255, .13)), rgba(5, 0, 14, .32);
}

.cbo-popup-choice-badge,
.cbo-popup-choice-title,
.cbo-popup-choice-sub,
.cbo-popup-choice-note,
.cbo-popup-choice-actions {
    position: relative;
    z-index: 2;
}

.cbo-popup-choice-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-bottom: 12px;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: var(--cbo-pill);
    background: linear-gradient(135deg, #ffdd00, #ff8a00);
    color: #3b1600;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .8px;
    box-shadow: 0 8px 22px rgba(255, 153, 0, .35);
}

.cbo-popup-choice-title {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 1000;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .6px;
    background: linear-gradient(180deg, #fff799, #ffe100 45%, #ff8a00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .2);
}

.cbo-popup-choice-sub {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.cbo-popup-choice-note {
    margin-top: 10px;
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .25px;
}

.cbo-popup-choice-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
}

.cbo-popup-choice-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 13px 16px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: var(--cbo-pill);
    color: #fff;
    font-size: 20px;
    font-weight: 1000;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .45px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .34);
    animation: sonicCboPopupPulse .72s infinite alternate ease-in-out;
    transition: transform var(--cbo-speed), filter var(--cbo-speed);
    will-change: transform, filter;
}

.cbo-popup-choice-btn::before {
    inset: 0;
    background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, .38) 45%, transparent 62% 100%);
    transform: translateX(-120%);
    animation: sonicCboPopupShine 2.4s infinite ease-in-out;
}

.cbo-popup-choice-btn:hover,
.cbo-popup-choice-btn:focus {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px) scale(1.035);
}

.cbo-popup-choice-bec88 {
    background: linear-gradient(135deg, #f9003a, #ff7a00 55%, #ffe600);
    text-shadow: 0 2px 0 rgba(120, 0, 0, .36);
}

.cbo-popup-choice-ta88 {
    background: linear-gradient(135deg, #004cff, #00cfff 56%, #00f285);
    text-shadow: 0 2px 0 rgba(0, 20, 120, .36);
    animation-delay: .16s;
}

.cbo-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .32);
    appearance: none;
    -webkit-appearance: none;
}

.cbo-popup-close:hover {
    border-color: #fff;
    transform: scale(1.05);
}

@keyframes sonicCboPopupPulse {
    from {
        filter: brightness(1);
        box-shadow: 0 14px 32px rgba(0, 0, 0, .42), 0 0 0 rgba(255, 255, 255, 0);
    }

    to {
        filter: brightness(1.25);
        box-shadow: 0 18px 42px rgba(0, 0, 0, .48), 0 0 22px rgba(255, 255, 255, .78);
    }
}

@keyframes sonicCboPopupShine {
    0% {
        transform: translateX(-130%);
    }

    42%,
    100% {
        transform: translateX(130%);
    }
}

@keyframes sonicCboPopupSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sonicCboPopupIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 769px) {
    .cbo-top-layer[data-mode="desktop"].is-active {
        display: block;
    }

    .cbo-top-layer[data-mode="mobile"] {
        display: none !important;
    }
}

@media (min-width: 1180px) {
    .cbo-side {
        display: grid;
    }
}

@media (min-width: 1180px) and (max-width: 1365px) {
    .cbo-side {
        --cbo-side-width: 184px;
        --cbo-side-edge: 4px;
    }
}

@media (max-width: 1179px) {
    .cbo-side {
        display: none !important;
    }
}

@media (max-width: 932px) and (orientation: landscape) {
    .cbo-bottom-wrap {
        width: min(720px, calc(100% - var(--cbo-bottom-offset-mobile)));
    }

    .cbo-bottom-item img,
    .cbo-bottom-gif {
        max-height: 72px;
        object-fit: contain;
    }

    .cbo-bottom-close {
        top: -24px;
        right: 0;
    }

    .cbo-bottom-btn {
        padding: 3px 7px;
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .cbo-top-wrap {
        margin-bottom: 10px;
        padding: 0 8px;
    }

    .cbo-top-stage {
        min-height: var(--cbo-top-min-h-mobile);
    }

    .cbo-top-layer[data-mode="desktop"] {
        display: none !important;
    }

    .cbo-top-layer[data-mode="mobile"].is-active {
        display: block;
    }

    .cbo-bottom-wrap {
        width: calc(100% - var(--cbo-bottom-offset-mobile));
    }

    .cbo-bottom-close {
        right: 6px;
    }

    .cbo-bottom-content {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .cbo-root .cbo-popup {
        padding: 14px;
    }

    .cbo-popup-box {
        width: min(92vw, 380px);
        border-radius: 14px;
    }

    .cbo-popup-choice-card {
        padding: 24px 14px 18px;
    }

    .cbo-popup-choice-card::after {
        border-radius: 11px;
    }

    .cbo-popup-choice-badge {
        min-height: 28px;
        margin-bottom: 10px;
        padding: 5px 12px;
        font-size: 11px;
    }

    .cbo-popup-choice-title {
        font-size: 23px;
        letter-spacing: .35px;
    }

    .cbo-popup-choice-sub {
        margin-top: 8px;
        font-size: 13px;
    }

    .cbo-popup-choice-note {
        margin-top: 8px;
        font-size: 11px;
    }

    .cbo-popup-choice-actions {
        gap: 10px;
        margin-top: 16px;
    }

    .cbo-popup-choice-btn {
        min-height: 48px;
        padding: 11px 12px;
        font-size: 17px;
        letter-spacing: .25px;
    }

    .cbo-popup-close {
        top: 8px;
        right: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .cbo-popup-box,
    .cbo-popup-choice-card::before,
    .cbo-popup-choice-btn,
    .cbo-popup-choice-btn::before {
        animation: none;
    }

    .cbo-popup-choice-btn,
    .cbo-popup-close {
        transition: none;
    }
}