    .ynw-stage {
        display: flex; justify-content: center; align-items: center;
        margin: 18px 0 8px;
        min-height: 320px;
    }
    .ynw-wheel-wrap {
        position: relative;
        width: min(320px, 100%);
        aspect-ratio: 1 / 1;
        height: auto;
        max-width: 100%;
    }
    .ynw-wheel {
        width: 100%; height: 100%;
        border-radius: 50%;
        background: conic-gradient(
            #2DBE7A 0deg 120deg,
            #F5C16C 120deg 240deg,
            #FF6B6B 240deg 360deg
        );
        box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 0 0 6px rgba(255,255,255,0.08);
        transition: transform 3.4s cubic-bezier(0.18, 0.85, 0.22, 1);
        transform: rotate(0deg);
        position: relative;
    }
    .ynw-wheel--two {
        background: conic-gradient(
            #2DBE7A 0deg 180deg,
            #FF6B6B 180deg 360deg
        );
    }
    .ynw-wheel::before, .ynw-wheel::after, .ynw-wheel-labels {
        position: absolute; inset: 0;
        pointer-events: none;
    }
    .ynw-wheel-label {
        position: absolute;
        top: 50%; left: 50%;
        transform-origin: 0 0;
        color: #04102B; font-weight: 900;
        font-size: 1.15rem; letter-spacing: 0.06em;
        text-shadow: 0 1px 0 rgba(255,255,255,0.35);
        white-space: nowrap;
    }
    .ynw-pointer {
        position: absolute;
        top: -10px; left: 50%; transform: translateX(-50%);
        width: 0; height: 0;
        border-left: 14px solid transparent;
        border-right: 14px solid transparent;
        border-top: 26px solid var(--calc-accent);
        z-index: 3;
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
    }
    .ynw-hub {
        position: absolute;
        top: 50%; left: 50%; transform: translate(-50%, -50%);
        width: 64px; height: 64px;
        border-radius: 50%;
        background: var(--pk-ink-2);
        border: 4px solid var(--calc-accent);
        display: flex; align-items: center; justify-content: center;
        color: var(--calc-accent);
        font-size: 1.4rem;
        z-index: 2;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }
    .ynw-eight {
        display: flex; justify-content: center; align-items: center;
        width: 100%;
    }
    .ynw-eight__ball {
        width: 280px; height: 280px;
        max-width: 90vw; max-height: 90vw;
        border-radius: 50%;
        background: radial-gradient(circle at 32% 28%, #3a3a3a, #050505 60%);
        box-shadow: 0 18px 48px rgba(0,0,0,0.55), inset 0 0 0 4px rgba(255,255,255,0.06);
        display: flex; align-items: center; justify-content: center;
        position: relative;
    }
    .ynw-eight__triangle {
        width: 60%; height: 60%;
        border-radius: 50%;
        background: radial-gradient(circle at 50% 50%, #1B3A8C, #07153D);
        color: #cfe1ff;
        display: flex; align-items: center; justify-content: center;
        text-align: center;
        padding: 14px;
        font-weight: 700;
        font-size: 0.95rem;
        line-height: 1.2;
        font-family: 'Georgia', serif;
        box-shadow: inset 0 0 22px rgba(0,0,0,0.6);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .ynw-eight--shake { animation: ynw-shake 0.6s ease-in-out 2; }
    @keyframes ynw-shake {
        0%,100% { transform: translate(0,0) rotate(0); }
        20% { transform: translate(-8px, 4px) rotate(-3deg); }
        40% { transform: translate(8px, -4px) rotate(3deg); }
        60% { transform: translate(-6px, -3px) rotate(-2deg); }
        80% { transform: translate(6px, 3px) rotate(2deg); }
    }
    .pk-btn--xl { padding: 14px 28px; font-size: 1.05rem; min-width: 200px; justify-content: center; }
    .pk-btn--xl[disabled] { opacity: 0.55; cursor: not-allowed; }
    .ynw-result__answer {
        font-size: 3.4rem; font-weight: 900;
        margin: 6px 0 4px; letter-spacing: 0.04em;
        background: linear-gradient(135deg, var(--calc-accent-2), var(--calc-accent));
        -webkit-background-clip: text; background-clip: text; color: transparent;
        text-align: center;
    }
    .ynw-result__answer[data-flavor="yes"] { background: #2DBE7A; -webkit-background-clip: text; background-clip: text; color: transparent; }
    .ynw-result__answer[data-flavor="no"]  { background: #FF6B6B; -webkit-background-clip: text; background-clip: text; color: transparent; }
    .ynw-result__answer[data-flavor="maybe"] { background: #F5C16C; -webkit-background-clip: text; background-clip: text; color: transparent; }
    .ynw-result__answer[data-flavor="eight"] { font-size: 1.6rem; }
    .ynw-result__echo {
        text-align: center;
        color: var(--pk-fg-mut);
        font-style: italic;
        margin: 0;
    }
    .ynw-history { margin-top: 18px; }
    .ynw-history__label {
        font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
        text-transform: uppercase; color: var(--pk-fg-mut);
        margin: 0 0 8px;
    }
    .ynw-history__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
    .ynw-history__list li {
        background: rgba(0,0,0,0.30);
        border: 1px solid rgba(255,255,255,0.10);
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 0.88rem;
        display: flex; gap: 10px; align-items: baseline;
    }
    .ynw-history__pill {
        font-weight: 800; font-size: 0.78rem;
        padding: 2px 8px; border-radius: 999px;
        flex-shrink: 0;
    }
    .ynw-history__pill[data-flavor="yes"] { background: rgba(45,190,122,0.18); color: #2DBE7A; }
    .ynw-history__pill[data-flavor="no"] { background: rgba(255,107,107,0.18); color: #FF6B6B; }
    .ynw-history__pill[data-flavor="maybe"] { background: rgba(245,193,108,0.18); color: #F5C16C; }
    .ynw-history__pill[data-flavor="eight"] { background: rgba(77,111,255,0.18); color: #4D6FFF; }
    .ynw-history__q { color: var(--pk-fg-mut); font-style: italic; flex: 1; }
    .pk-btn {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 10px 16px; border-radius: 10px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        color: var(--pk-fg); font-weight: 700; font-size: 0.85rem;
        cursor: pointer;
        transition: background .15s ease, border-color .15s ease, transform .08s ease;
    }
    .pk-btn--primary {
        background: linear-gradient(135deg, var(--calc-accent-2), var(--calc-accent));
        border-color: transparent; color: #04102B;
    }
    .pk-btn--primary:active { transform: translateY(1px); }
    /* Confetti canvas overlay — covers viewport but never blocks clicks. */
    .ynw-confetti {
        position: fixed; inset: 0;
        pointer-events: none;
        z-index: 9999;
    }
    @media (max-width: 480px) {
        .ynw-stage { min-height: 0; }
        .ynw-wheel-wrap { width: min(300px, 100%); }
        .ynw-hub { width: 50px; height: 50px; font-size: 1.1rem; border-width: 3px; }
        .ynw-pointer {
            border-left-width: 11px; border-right-width: 11px; border-top-width: 22px;
            top: -8px;
        }
        .ynw-wheel-label { font-size: 0.92rem; letter-spacing: 0.04em; }
        .ynw-eight__ball { width: min(260px, 80vw); height: min(260px, 80vw); }
        .ynw-result__answer { font-size: 2.6rem; }
        .ynw-result__answer[data-flavor="eight"] { font-size: 1.3rem; }
        .pk-btn--xl { padding: 12px 20px; font-size: 1rem; min-width: 0; width: 100%; }
    }
