/* Welcome partners — radial roulette */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.welcome-partners {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.welcome-roulette {
    position: relative;
    width: min(100%, 680px);
    margin: 0 auto;
}

.welcome-roulette__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 680px;
    margin: 0 auto;
    container-type: inline-size;
    container-name: welcome-wheel;
}

.welcome-roulette__halo {
    position: absolute;
    inset: 2%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(168, 85, 247, 0.28), transparent 52%),
        radial-gradient(circle at 30% 60%, rgba(34, 211, 238, 0.18), transparent 45%),
        radial-gradient(circle at 70% 40%, rgba(255, 45, 149, 0.14), transparent 42%);
    filter: blur(12px);
    pointer-events: none;
    animation: wp-halo-breathe 5.5s ease-in-out infinite;
}

.welcome-roulette__stage::before {
    content: '';
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow:
        0 0 24px rgba(168, 85, 247, 0.25),
        inset 0 0 40px rgba(34, 211, 238, 0.08);
    pointer-events: none;
    z-index: 1;
}

.welcome-roulette__stage::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    border: 1px dashed rgba(34, 211, 238, 0.22);
    pointer-events: none;
    z-index: 1;
    animation: wp-spin-rotate 18s linear infinite;
}

.welcome-roulette__spin {
    position: absolute;
    inset: 0;
    transform-origin: 50% 50%;
    will-change: transform;
    --spin-angle: 0deg;
}

.welcome-roulette__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.4));
}

.welcome-roulette__wedge {
    fill-opacity: 0.22;
    stroke: color-mix(in srgb, var(--wp-accent, #22d3ee) 85%, #fff);
    stroke-width: 2.4;
    stroke-opacity: 0.85;
    transition:
        fill-opacity 0.18s ease,
        stroke-opacity 0.18s ease,
        stroke-width 0.18s ease,
        filter 0.18s ease;
    filter: url(#wp-seg-glow) drop-shadow(0 0 8px color-mix(in srgb, var(--wp-accent, #22d3ee) 55%, transparent));
}

.welcome-roulette__wedge.is-lit {
    fill-opacity: 0.55;
    stroke-opacity: 1;
    stroke-width: 3.4;
    filter: url(#wp-seg-glow) drop-shadow(0 0 16px color-mix(in srgb, var(--wp-accent, #22d3ee) 80%, transparent));
}

.welcome-roulette__wedge.is-winner {
    fill-opacity: 0.7;
    stroke: #fff;
    stroke-opacity: 1;
    stroke-width: 3.8;
    filter: url(#wp-seg-glow) drop-shadow(0 0 22px color-mix(in srgb, var(--wp-accent, #22d3ee) 90%, transparent));
}

.welcome-roulette__ring-track,
.welcome-roulette__ring-inner {
    stroke: rgba(168, 85, 247, 0.35);
    stroke-width: 1.4;
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(168, 85, 247, 0.45));
}

.welcome-roulette__pods {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 4;
}

.welcome-roulette__pod {
    position: absolute;
    left: var(--pod-x, 50%);
    top: var(--pod-y, 50%);
    width: 26%;
    max-width: 140px;
    width: min(26cqw, 140px);
    transform:
        translate(-50%, -50%)
        rotate(calc(-1 * var(--spin-angle, 0deg)));
    transform-origin: 50% 50%;
    transition:
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.25s ease,
        opacity 0.35s ease;
    animation: wp-pod-float 4.2s ease-in-out infinite;
    animation-delay: var(--wp-float-delay, 0s);
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.welcome-roulette__pod:hover .welcome-roulette__pod-inner,
.welcome-roulette__pod:focus-visible .welcome-roulette__pod-inner {
    transform: scale(1.08);
    border-color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 0 26px color-mix(in srgb, var(--wp-accent) 35%, transparent),
        0 0 20px color-mix(in srgb, var(--wp-accent) 75%, transparent),
        0 0 40px color-mix(in srgb, var(--wp-accent) 45%, transparent),
        0 0 8px #fff;
}

.welcome-roulette__pod:focus-visible {
    outline: none;
}

.welcome-roulette.is-spinning .welcome-roulette__pods,
.welcome-roulette.is-picking .welcome-roulette__pods {
    pointer-events: none;
}

.welcome-roulette__pod-inner {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 86px;
    padding: 16px 14px;
    border-radius: 20px;
    clip-path: polygon(12% 0, 88% 0, 100% 18%, 100% 82%, 88% 100%, 12% 100%, 0 82%, 0 18%);
    background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--wp-accent) 45%, transparent), transparent 55%),
        linear-gradient(165deg, rgba(18, 22, 40, 0.88), rgba(6, 8, 18, 0.92));
    border: 2px solid color-mix(in srgb, var(--wp-accent) 80%, #fff);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 0 22px color-mix(in srgb, var(--wp-accent) 22%, transparent),
        0 0 14px color-mix(in srgb, var(--wp-accent) 55%, transparent),
        0 0 28px color-mix(in srgb, var(--wp-accent) 35%, transparent),
        0 12px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px) saturate(1.35);
    -webkit-backdrop-filter: blur(14px) saturate(1.35);
    animation: wp-pod-pulse 3.6s ease-in-out infinite;
    animation-delay: var(--wp-pulse-delay, 0s);
}

.welcome-roulette__pod-inner::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--wp-accent) 35%, transparent);
    pointer-events: none;
    opacity: 0.7;
}

.welcome-roulette__pod-inner::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--wp-accent) 80%, #fff), transparent);
    box-shadow: 0 0 8px color-mix(in srgb, var(--wp-accent) 70%, transparent);
    pointer-events: none;
}

.welcome-roulette__pod-logo {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 108px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 12px color-mix(in srgb, var(--wp-accent) 50%, transparent));
}

.welcome-roulette__pod-fallback {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-family: var(--font-brand, var(--font-display, inherit));
    font-size: 1.4rem;
    font-weight: 800;
    color: #f8fafc;
    background: color-mix(in srgb, var(--wp-accent) 40%, rgba(8, 12, 24, 0.7));
    box-shadow: 0 0 16px color-mix(in srgb, var(--wp-accent) 45%, transparent);
}

.welcome-roulette.is-spinning .welcome-roulette__pod {
    opacity: 0;
    animation: none;
    transition: opacity 0.28s ease, transform 0s;
}

.welcome-roulette.is-spinning .welcome-roulette__pod-inner {
    animation: none;
    transition: none;
}

.welcome-roulette.is-picking .welcome-roulette__pod {
    opacity: 1;
    animation: none;
}

.welcome-roulette__pod.is-lit {
    z-index: 4;
    filter: saturate(1.3) brightness(1.15);
    animation: none;
}

.welcome-roulette__pod.is-lit .welcome-roulette__pod-inner {
    animation: none;
    border-color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.35),
        inset 0 0 28px color-mix(in srgb, var(--wp-accent) 40%, transparent),
        0 0 22px color-mix(in srgb, var(--wp-accent) 80%, transparent),
        0 0 48px color-mix(in srgb, var(--wp-accent) 55%, transparent),
        0 0 8px #fff;
    transform: scale(1.12);
}

.welcome-roulette__pod.is-winner {
    z-index: 6;
    animation: none;
    transform:
        translate(-50%, -50%)
        rotate(calc(-1 * var(--spin-angle, 0deg)))
        translateY(-56px)
        scale(1.24);
    filter: saturate(1.4) brightness(1.2);
}

.welcome-roulette__pod.is-winner .welcome-roulette__pod-inner {
    animation: none;
    border-color: #fff;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.45),
        0 18px 44px rgba(0, 0, 0, 0.45),
        0 0 28px color-mix(in srgb, var(--wp-accent) 75%, transparent),
        0 0 56px color-mix(in srgb, var(--wp-accent) 55%, transparent),
        0 0 12px #fff;
}

.welcome-roulette.is-revealed .welcome-roulette__pod:not(.is-winner) {
    opacity: 0.28;
    filter: grayscale(0.4) brightness(0.7);
}

.welcome-roulette__core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    width: min(38%, 196px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    padding: 18px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #e9f7ff;
    background:
        radial-gradient(circle at 50% 35%, rgba(120, 80, 220, 0.45), transparent 48%),
        radial-gradient(circle at 50% 70%, rgba(34, 211, 238, 0.2), transparent 55%),
        linear-gradient(160deg, #1a1630 0%, #0b1020 45%, #120a22 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 0 28px rgba(168, 85, 247, 0.28),
        0 0 0 2px rgba(192, 132, 252, 0.55),
        0 0 18px rgba(168, 85, 247, 0.65),
        0 0 40px rgba(34, 211, 238, 0.35),
        0 16px 36px rgba(0, 0, 0, 0.5);
    animation: wp-core-glow 2.6s ease-in-out infinite;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.welcome-roulette__core:hover:not(:disabled) {
    transform: translate(-50%, -50%) scale(1.06);
    filter: brightness(1.12) saturate(1.15);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 0 34px rgba(192, 132, 252, 0.4),
        0 0 0 3px rgba(34, 211, 238, 0.7),
        0 0 26px rgba(192, 132, 252, 0.85),
        0 0 54px rgba(34, 211, 238, 0.5),
        0 18px 40px rgba(0, 0, 0, 0.55);
}

.welcome-roulette__core:disabled {
    cursor: default;
    opacity: 0.85;
    animation: none;
}

.welcome-roulette__core-orbit {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px dashed rgba(34, 211, 238, 0.45);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
    animation: wp-spin-rotate 10s linear infinite reverse;
    pointer-events: none;
}

.welcome-roulette__core-ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 2px solid transparent;
    background:
        linear-gradient(#0b1020, #0b1020) padding-box,
        conic-gradient(
            from var(--core-angle, 0deg),
            #22d3ee,
            #a855f7,
            #ff2d95,
            #22d3ee
        ) border-box;
    animation: wp-core-angle 2.8s linear infinite;
    pointer-events: none;
    box-shadow:
        0 0 16px rgba(168, 85, 247, 0.55),
        0 0 28px rgba(34, 211, 238, 0.35);
}

.welcome-roulette__core-sheen {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.28), transparent 36%),
        radial-gradient(circle at 70% 75%, rgba(34, 211, 238, 0.12), transparent 42%);
    pointer-events: none;
}

.welcome-roulette__core-label {
    position: relative;
    z-index: 1;
    font-family: 'Syne', var(--font-display, inherit);
    font-size: clamp(0.72rem, 1.7vw, 0.9rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f0f9ff;
    text-shadow:
        0 0 8px rgba(34, 211, 238, 0.85),
        0 0 18px rgba(168, 85, 247, 0.65),
        0 2px 8px rgba(0, 0, 0, 0.65);
}

.welcome-roulette.is-spinning .welcome-roulette__core-ring {
    animation-duration: 0.35s;
}

.welcome-roulette.is-spinning .welcome-roulette__core-orbit {
    animation-duration: 1.2s;
}

.welcome-roulette.is-spinning .welcome-roulette__core {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 0 36px rgba(34, 211, 238, 0.35),
        0 0 0 3px rgba(34, 211, 238, 0.75),
        0 0 30px rgba(168, 85, 247, 0.85),
        0 0 60px rgba(34, 211, 238, 0.55),
        0 16px 36px rgba(0, 0, 0, 0.5);
}

.welcome-roulette__hint {
    margin: 14px 0 0;
    padding: 12px 18px;
    text-align: center;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.75),
        0 0 20px rgba(255, 211, 106, 0.35);
    background: linear-gradient(90deg, rgba(8, 12, 22, 0.55), rgba(20, 28, 48, 0.65), rgba(8, 12, 22, 0.55));
    border: 1px solid rgba(255, 211, 106, 0.35);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.welcome-roulette__hint.is-ready {
    color: #fff8e1;
    border-color: rgba(255, 211, 106, 0.65);
    background: linear-gradient(90deg, rgba(40, 28, 8, 0.72), rgba(70, 48, 12, 0.78), rgba(40, 28, 8, 0.72));
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.4),
        0 0 28px rgba(255, 180, 40, 0.28);
}

/* Modal prize */
.welcome-roulette__modal[hidden] {
    display: none !important;
}

.welcome-roulette__modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.welcome-roulette__modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.welcome-roulette__modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 40%, rgba(255, 180, 40, 0.18), transparent 45%),
        rgba(4, 8, 16, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.welcome-roulette__prize {
    position: relative;
    z-index: 1;
    width: min(100%, 680px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 48px 40px 40px;
    border-radius: 34px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 50% -20%, color-mix(in srgb, var(--wp-accent, #ffd36a) 55%, transparent), transparent 58%),
        linear-gradient(165deg, rgba(28, 36, 58, 0.97), rgba(8, 12, 22, 0.97));
    border: 2px solid color-mix(in srgb, var(--wp-accent, #ffd36a) 65%, rgba(255, 255, 255, 0.3));
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.55),
        0 0 60px color-mix(in srgb, var(--wp-accent, #ffd36a) 40%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(24px) scale(0.92);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.welcome-roulette__modal.is-visible .welcome-roulette__prize {
    transform: translateY(0) scale(1);
}

.welcome-roulette__prize-fx {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.welcome-roulette__prize-ray {
    position: absolute;
    left: 50%;
    top: -20%;
    width: 140%;
    height: 140%;
    transform: translateX(-50%);
    background: conic-gradient(from 0deg, transparent 0 8%, rgba(255, 211, 106, 0.14) 10%, transparent 14%, transparent 28%, rgba(255, 255, 255, 0.08) 30%, transparent 34%);
    animation: wp-prize-rays 8s linear infinite;
    opacity: 0.85;
}

.welcome-roulette__prize-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd36a;
    box-shadow: 0 0 14px rgba(255, 211, 106, 0.9);
    animation: wp-prize-spark 2.8s ease-in-out infinite;
}

.welcome-roulette__prize-spark--1 { top: 18%; left: 14%; animation-delay: 0s; }
.welcome-roulette__prize-spark--2 { top: 22%; right: 16%; animation-delay: 0.6s; background: #fff; }
.welcome-roulette__prize-spark--3 { bottom: 28%; left: 18%; animation-delay: 1.1s; background: #5ce1ff; }
.welcome-roulette__prize-spark--4 { bottom: 24%; right: 20%; animation-delay: 1.7s; }

.welcome-roulette__prize-badge {
    position: relative;
    z-index: 1;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1208;
    background: linear-gradient(135deg, #ffe08a, #ff8a1f);
    box-shadow: 0 0 22px rgba(255, 180, 40, 0.45);
}

.welcome-roulette__prize-logo-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 32px 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--wp-accent, #ffd36a) 22%, transparent), transparent 70%),
        linear-gradient(160deg, #141820, #0a0e16);
    border: 1px solid color-mix(in srgb, var(--wp-accent, #ffd36a) 40%, rgba(255, 255, 255, 0.18));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 28px rgba(0, 0, 0, 0.35);
}

.welcome-roulette__prize-logo {
    display: grid;
    place-items: center;
    min-height: 140px;
}

.welcome-roulette__prize-logo-img,
.welcome-roulette__prize-logo img {
    display: block;
    max-width: 320px;
    max-height: 128px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 16px color-mix(in srgb, var(--wp-accent, #ffd36a) 40%, transparent));
}

.welcome-roulette__prize-logo-fallback {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    border-radius: 26px;
    font-family: var(--font-brand, inherit);
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    background: color-mix(in srgb, var(--wp-accent, #ffd36a) 50%, rgba(0, 0, 0, 0.35));
}

.welcome-roulette__prize-name {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-brand, var(--font-display, inherit));
    font-size: clamp(2rem, 4.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.welcome-roulette__prize-bonus {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.45rem, 3.4vw, 1.9rem);
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(90deg, #fff, #ffd36a, var(--wp-accent, #5ce1ff));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.welcome-roulette__prize-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    margin-top: 10px;
}

.welcome-roulette__again {
    flex: 1 1 160px;
    min-height: 60px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.welcome-roulette__again:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.65);
}

.welcome-roulette__claim {
    position: relative;
    flex: 1 1 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 16px 22px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #1a1008;
    border: 1.5px solid rgba(255, 220, 150, 0.65);
    background: linear-gradient(135deg, #ffd36a, #ff8a1f 55%, #ffb347);
    box-shadow: 0 12px 28px rgba(255, 120, 20, 0.42);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.welcome-roulette__claim:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
}

.welcome-roulette__claim-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65% 100%);
    transform: translateX(-120%);
    animation: wp-btn-shine 3s ease-in-out infinite;
    pointer-events: none;
}

/* Fullscreen footer ticker + note */
.welcome-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
}

.welcome-partners__jackpot--fullscreen {
    overflow: hidden;
    width: 100%;
    max-width: none;
    height: 48px;
    display: flex;
    align-items: center;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(120, 170, 255, 0.28);
    background: linear-gradient(90deg, rgba(10, 18, 40, 0.92), rgba(18, 36, 72, 0.9), rgba(10, 18, 40, 0.92));
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.welcome-partners__jackpot-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    white-space: nowrap;
    animation: wp-jackpot 28s linear infinite;
    padding-inline: 24px;
}

.welcome-partners__jackpot-track span {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff, #7ec8ff, #ffd36a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.welcome-partners__note--footer {
    margin: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    font-size: 0.8rem;
    line-height: 1.45;
    text-align: center;
    color: rgba(230, 236, 255, 0.78);
    background: rgba(4, 8, 16, 0.88);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.welcome-partners__note-badge {
    display: inline-block;
    margin-right: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 800;
    color: #ffd36a;
    background: rgba(255, 180, 40, 0.16);
}

body.welcome-modal-open {
    overflow: hidden;
}

@keyframes wp-halo-breathe {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

@keyframes wp-pod-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
}

@keyframes wp-pod-pulse {
    0%, 100% {
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 0 18px color-mix(in srgb, var(--wp-accent) 18%, transparent),
            0 0 12px color-mix(in srgb, var(--wp-accent) 40%, transparent),
            0 0 22px color-mix(in srgb, var(--wp-accent) 28%, transparent),
            0 12px 28px rgba(0, 0, 0, 0.42);
    }
    50% {
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.18),
            inset 0 0 26px color-mix(in srgb, var(--wp-accent) 30%, transparent),
            0 0 20px color-mix(in srgb, var(--wp-accent) 65%, transparent),
            0 0 36px color-mix(in srgb, var(--wp-accent) 42%, transparent),
            0 12px 28px rgba(0, 0, 0, 0.42);
    }
}

@keyframes wp-core-angle {
    from { --core-angle: 0deg; }
    to { --core-angle: 360deg; }
}

@keyframes wp-spin-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wp-core-glow {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 0 24px rgba(168, 85, 247, 0.25),
            0 0 0 2px rgba(192, 132, 252, 0.5),
            0 0 16px rgba(168, 85, 247, 0.55),
            0 0 34px rgba(34, 211, 238, 0.3),
            0 16px 36px rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            inset 0 0 32px rgba(192, 132, 252, 0.38),
            0 0 0 3px rgba(34, 211, 238, 0.65),
            0 0 26px rgba(192, 132, 252, 0.8),
            0 0 50px rgba(34, 211, 238, 0.48),
            0 16px 36px rgba(0, 0, 0, 0.5);
    }
}

@property --core-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes wp-jackpot {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes wp-btn-shine {
    0% { transform: translateX(-120%); }
    45%, 100% { transform: translateX(120%); }
}

@keyframes wp-prize-rays {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes wp-prize-spark {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.45; }
    50% { transform: translateY(-10px) scale(1.25); opacity: 1; }
}

@media (max-width: 900px) {
    .welcome-partners {
        max-width: 560px;
    }

    .welcome-roulette,
    .welcome-roulette__stage {
        max-width: 560px;
    }

    .welcome-roulette__core-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 560px) {
    .welcome-roulette__pod {
        width: min(30cqw, 112px);
    }

    .welcome-roulette__pod-inner {
        min-height: 64px;
        padding: 10px 8px;
        border-radius: 16px;
    }

    .welcome-roulette__pod-logo {
        max-width: 84px;
        max-height: 40px;
    }

    .welcome-roulette__core {
        width: min(40%, 150px);
        padding: 12px;
    }

    .welcome-roulette__prize {
        width: min(100%, 560px);
        padding: 36px 22px 28px;
        gap: 16px;
    }

    .welcome-roulette__prize-logo {
        min-height: 110px;
    }

    .welcome-roulette__prize-logo-img,
    .welcome-roulette__prize-logo img {
        max-width: 260px;
        max-height: 100px;
    }

    .welcome-roulette__prize-actions {
        flex-direction: column;
    }

    .welcome-roulette__again,
    .welcome-roulette__claim {
        width: 100%;
        flex: 1 1 auto;
    }

    .welcome-partners__jackpot--fullscreen {
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-roulette__halo,
    .welcome-roulette__pod,
    .welcome-roulette__pod-inner,
    .welcome-roulette__core-ring,
    .welcome-partners__jackpot-track,
    .welcome-roulette__claim-shine,
    .welcome-roulette__prize-ray,
    .welcome-roulette__prize-spark {
        animation: none !important;
    }
}
