    :root {
        --lg-heritage-red: #ea1917;
        --lg-active-red: #ea1917;
        --lg-warm-grey: #f0ece4;
        --lg-white: #FFFFFF;
        --lg-black: #000000;

        --lg-text: #111111;
        --lg-muted: #6b7280;
        --lg-border: rgba(0, 0, 0, .10);

        --lg-radius: 24px;
        --lg-shadow: 0 24px 70px rgba(0, 0, 0, .28);
    }

    .lg-spin-root {
        position: fixed;
        inset: 0;
        z-index: 99999;
        display: none;
    }

    .lg-spin-root.is-open {
        display: block;
    }

    .lg-spin-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .55);
    }

    .lg-spin-modal {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: min(92vw, 480px);
        border-radius: var(--lg-radius);
        box-shadow: var(--lg-shadow);
        padding: 18px 18px 16px;
        text-align: center;
        color: var(--lg-text);
        font-family: "LG Smart", Roboto, Arial, sans-serif;
        background: #f0ece4;
        border: 1px solid rgba(0, 0, 0, .08);
    }

    .lg-spin-x {
        position: absolute;
        right: 10px;
        top: 8px;
        width: 38px;
        height: 38px;
        border: none;
        background: transparent;
        font-size: 26px;
        line-height: 38px;
        cursor: pointer;
        color: #333;
    }

    .lg-spin-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 6px;
    }

    .lg-spin-badge {
        display: inline-flex;
        gap: 8px;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .75);
        border: 1px solid rgba(0, 0, 0, .08);
        backdrop-filter: blur(6px);
    }

    .lg-spin-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--lg-heritage-red);
        box-shadow: 0 0 0 4px rgba(165, 0, 52, 0.1);
    }

    .lg-spin-badge-text {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .2px;
    }

    .lg-spin-pin {
        position: absolute;
        left: 50%;
        top: 40px;
        transform: translateX(-50%) rotate(180deg);
        width: 0;
        height: 0;
        border-left: 11px solid transparent;
        border-right: 11px solid transparent;
        border-bottom: 20px solid var(--lg-heritage-red);
        filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .22));

    }

    .lg-spin-wheel-wrap {
        width: 400px;
        height: 400px;
        max-width: 88vw;
        max-height: 88vw;
        margin: 8px auto 10px;
        position: relative;
    }

    #lg-spin-canvas {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        display: block;
    }

    .lg-spin-center {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 76px;
        height: 76px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .75);
        border: 1px solid rgba(0, 0, 0, .08);
        box-shadow: 0 14px 28px rgba(0, 0, 0, .14);
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(6px);
    }

    .lg-spin-center-inner {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ea1917, #ffffff);
        border: 1px solid rgba(165, 0, 52, .25);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lg-spin-gift {
        font-size: 33px;
    }

    .lg-spin-title {
        margin: 8px 0 4px;
        font-size: 22px;
        font-weight: 800;
    }

    .lg-spin-subtitle {
        margin: 0 0 12px;
        color: var(--lg-muted);
        font-size: 14px;
    }

    .lg-spin-result {
        text-align: left;
        border-radius: 16px;
        padding: 12px;
        margin: 0 0 12px;
        background: rgba(255, 255, 255, .75);
        border: 1px solid rgba(0, 0, 0, .08);
        backdrop-filter: blur(6px);
    }

    .lg-spin-result-label {
        font-size: 12px;
        color: var(--lg-muted);
        margin-bottom: 6px;
        font-weight: 700;
        letter-spacing: .2px;
    }

    .lg-spin-result-code {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        border-radius: 14px;
        background: #fff;
        border: 1px dashed #ea1917;
        font-weight: 900;
        letter-spacing: .6px;
    }

    .lg-spin-copy {
        border: none;
        background: var(--lg-heritage-red);
        color: #fff;
        border-radius: 999px;
        padding: 8px 12px;
        cursor: pointer;
        font-weight: 800;
    }

    .lg-spin-result-note {
        margin-top: 8px;
        font-size: 12px;
        color: var(--lg-muted);
    }

    .lg-spin-btn {
        width: 100%;
        border: none;
        color: #fff;
        border-radius: 999px;
        padding: 12px 14px;
        font-weight: 900;
        cursor: pointer;
        background: linear-gradient(90deg, #ea1917, #ea1917);
        box-shadow: 0 12px 24px rgba(165, 0, 52, .22);
    }

    .lg-spin-btn:disabled {
        opacity: .55;
        cursor: not-allowed;
    }

    .lg-spin-close {
        width: 100%;
        margin-top: 10px;
        border: 1px solid rgba(0, 0, 0, .22);
        background: rgba(255, 255, 255, .75);
        color: #111;
        border-radius: 999px;
        padding: 11px 14px;
        font-weight: 900;
        cursor: pointer;
        backdrop-filter: blur(6px);
    }