div[id^="wait_comp_"] {
    display: none !important;
}

.wheel-root {
    --wheel-green: #0e7a5e;
    --wheel-green-2: #14a37f;
    --wheel-accent: #e8a33d;
    --wheel-accent-2: #f6c76b;

    --wheel-text: #282828;
    --wheel-muted: rgba(0, 0, 0, .62);
    --wheel-glass: rgba(255, 255, 255, .66);
    --wheel-line: rgba(130, 130, 130, .41);
    --wheel-radius: 26px;
    --wheel-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

.wheel-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--wheel-z, 99999);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background:
        radial-gradient(circle at 50% 28%, rgba(154, 188, 177, .55), rgba(102, 121, 116, .88) 70%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.wheel-overlay.wheel-show {
    display: flex;
}

.wheel-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    max-height: 96vh;
    overflow-y: auto;
    padding: 30px 24px 24px;
    border-radius: var(--wheel-radius);
    background: var(--wheel-glass);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    color: var(--wheel-text);
    font-family: var(--wheel-font);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .55),
        inset 0 1px 0 rgba(255, 255, 255, .10),
        0 0 80px -22px rgba(20, 163, 127, .65),
        0 0 60px -12px rgba(232, 163, 61, .45);
    animation: wheel-up .3s cubic-bezier(.2, .8, .3, 1) both;
}

.wheel-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(20, 163, 127, .95) 0%,
        rgba(246, 199, 107, .85) 48%,
        rgba(20, 163, 127, .35) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

@keyframes wheel-up {
    from { opacity: 0; transform: translateY(26px) scale(.97); }
    to   { opacity: 1; transform: none; }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .wheel-overlay { background: rgba(3, 17, 14, .92); }
    .wheel-box     { background: #0c2620; }
}

.wheel-x {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border: 1px solid var(--wheel-line);
    border-radius: 50%;
    cursor: pointer;
    background: rgba(255, 255, 255, .08);
    color: var(--wheel-text);
    font-family: "Arial";
    font-size: 21px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s;
}

.wheel-x:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .3);
}

.wheel-box h3 {
    margin: 0 0 6px;
    font-size: 23px;
    font-weight: 800;
    text-align: center;
    color: var(--wheel-text);
    line-height: 1.2;
    letter-spacing: -.01em;
}

.wheel-sub {
    margin: 0 0 18px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
    color: var(--wheel-muted);
}

.wheel-wrap {
    position: relative;
    width: 100%;
    max-width: 330px;
    margin: 0 auto 20px;
    aspect-ratio: 1 / 1;
}

.wheel-canvas,
.wheel-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wheel-svg {
    filter:
        drop-shadow(0 8px 22px rgba(0, 0, 0, .45))
        drop-shadow(0 0 26px rgba(20, 163, 127, .35));
}

.wheel-lbl {
    font-family: var(--wheel-font);
    font-weight: 700;
    fill: #fff;
}

.wheel-ico {
    filter: drop-shadow(0 .6px .8px rgba(0, 0, 0, .45));
}

.wheel-badge {
    font-family: var(--wheel-font);
    font-weight: 900;
    fill: #fff;
    letter-spacing: -.02em;
}

.wheel-pointer {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 19px solid var(--wheel-accent-2);
    filter: drop-shadow(0 3px 8px rgba(232, 163, 61, .8));
}

.wheel-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 23%;
    height: 23%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .32);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 6vw, 37px);
}

.wheel-field {
    margin-bottom: 12px;
}

.wheel-field input {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--wheel-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .07);
    color: var(--wheel-text);
    font: 500 16px/1.2 var(--wheel-font);
    -webkit-appearance: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
}

.wheel-field input::placeholder {
    color: rgba(240, 248, 245, .56);
}

.wheel-field input:focus {
    outline: 0;
    background: rgba(255, 255, 255, .11);
    border-color: var(--wheel-green);
    box-shadow: 0 0 0 3px rgba(14, 122, 94, .18);
}

.wheel-field.wheel-err input {
    border-color: #ff8a80;
    background: rgba(255, 90, 76, .12);
}

.wheel-btn {
    display: block;
    width: 100%;
    padding: 16px 18px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--wheel-accent-2), var(--wheel-accent));
    color: #16241f;
    font: 800 16px/1.2 var(--wheel-font);
    letter-spacing: .01em;
    box-shadow: 0 10px 34px -10px rgba(232, 163, 61, .85);
    transition: filter .15s, box-shadow .15s, opacity .15s;
}

.wheel-btn:hover:not(:disabled) {
    filter: brightness(1.06);
    box-shadow: 0 12px 40px -8px rgba(232, 163, 61, .95);
}

.wheel-btn:disabled {
    opacity: .55;
    cursor: default;
    box-shadow: none;
}

.wheel-note {
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.45;
    text-align: center;
    color: var(--wheel-muted);
}

.wheel-note:empty {
    display: none;
}

.wheel-note a {
    color: var(--wheel-muted);
    text-underline-offset: 2px;
}

.wheel-box .errors {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 90, 76, .14);
    border: 1px solid rgba(255, 138, 128, .45);
    color: #ffc9c4;
    font-size: 13.5px;
    line-height: 1.45;
    text-align: center;
}

.wheel-prize {
    margin: 0 0 16px;
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    background: rgba(232, 163, 61, .14);
    border: 1px dashed rgba(246, 199, 107, .7);
    color: var(--wheel-text);
    font-weight: 800;
    font-size: 17px;
    box-shadow: inset 0 0 30px -12px rgba(232, 163, 61, .8);
}

.wheel-desc {
    margin: 0 0 14px;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
    color: var(--wheel-muted);
}

.wheel-done {
    text-align: center;
    padding: 14px 0 6px;
}

.wheel-done .wheel-tick {
    font-size: 44px;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 18px rgba(20, 163, 127, .8));
}

@media (max-width: 420px) {
    .wheel-box { padding: 26px 18px 20px; }
    .wheel-box h3 { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .wheel-box { animation: none; }
}
