.promo-game {
    display: none;
    margin: 28px auto;
    font-family: Arial, Helvetica, sans-serif;
}

.promo-game-enabled .promo-game {
    display: block;
}

.promo-game__surprise {
    padding: 20px;
    border: 2px solid #e4b71d;
    border-radius: 10px;
    background: #fff8d9;
    text-align: center;
}

.promo-game__surprise h2 {
    margin: 0 0 14px;
    color: #222;
    font-size: 27px;
    line-height: 1.2;
}

.promo-game__surprise h2 span,
.promo-game__surprise strong {
    color: #cf1717;
}

.promo-game__surprise p:last-child {
    margin-bottom: 0;
}

.promo-game__spin-stage {
    box-sizing: border-box;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px 10px;
    border: 3px solid #cf1717;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .35);
    text-align: center;
}

.promo-game__attention {
    margin-bottom: 12px;
    color: #cf1717;
    font-size: 24px;
    font-weight: 700;
}

.promo-game__instruction {
    max-width: 680px;
    margin: 0 auto 15px;
    font-size: 20px;
    line-height: 1.4;
}

.promo-game__wheel {
    position: relative;
    width: min(380px, 92vw);
    margin: 0 auto;
}

.promo-game__wheel-disc {
    position: relative;
    width: 100%;
    line-height: 0;
}

.promo-game__wheel-disc img {
    display: block;
    width: 100%;
    height: auto;
}

.promo-game__wheel-discount {
    position: absolute;
    top: 15.5%;
    left: 55%;
    z-index: 2;
    display: flex;
    width: 25%;
    height: 16%;
    align-items: center;
    justify-content: center;
    transform: rotate(14deg);
    background: #b00000;
    color: #fff;
    font-size: clamp(22px, 8vw, 38px);
    font-weight: 400;
    line-height: 1;
}

.promo-game__wheel-disc.is-spinning {
    animation: promo-wheel-spin 4s ease-in-out forwards;
}

.promo-game__spin-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 35%;
    padding: 0;
    transform: translate(-50%, -50%);
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.promo-game__spin-button img {
    display: block;
    width: 100%;
    height: 100%;
}

.promo-game__spin-button span {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #111;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.promo-game__spin-button:focus-visible {
    outline: 4px solid #1769aa;
    outline-offset: 3px;
}

.promo-game__spin-button:disabled {
    cursor: default;
}

.promo-game__status {
    min-height: 1.4em;
    margin: 12px 0 0;
    color: #555;
    font-weight: 700;
}

.promo-game__result {
    position: fixed;
    inset: 0;
    z-index: 9999;
    box-sizing: border-box;
    padding: 0 12px;
    background: rgba(0, 0, 0, .65);
    text-align: center;
}

.promo-game__result[hidden] {
    display: none;
}

.promo-game__result-window {
    position: relative;
    top: 40%;
    max-width: 400px;
    margin: 0 auto;
    padding: 68px 18px 24px;
    transform: translateY(-50%);
    border-radius: 10px;
    background: #fff;
    animation: promo-popup-appear .7s ease both;
}

.promo-game__result-window::before {
    position: absolute;
    top: -55px;
    left: 50%;
    width: 110px;
    height: 110px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #71c341;
    content: "";
}

.promo-game__result-window::after {
    position: absolute;
    top: -17px;
    left: 50%;
    width: 50px;
    height: 20px;
    transform: translateX(-50%) rotate(-45deg);
    border-bottom: 5px solid #fff;
    border-left: 5px solid #fff;
    content: "";
}

.promo-game__result-window h2 {
    margin: 0 0 16px;
    font-size: 34px;
}

.promo-game__result-window p {
    margin-bottom: 22px;
    font-size: 22px;
    line-height: 1.35;
}

.promo-game__continue {
    padding: 12px 24px;
    border: 0;
    border-radius: 6px;
    background: #57a92b;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.promo-game-enabled .promo-order-form:not(.promo-order-form--revealed) {
    display: none;
}

@keyframes promo-wheel-spin {
    70% { transform: rotate(1787deg); }
    100% { transform: rotate(1760deg); }
}

@keyframes promo-popup-appear {
    0% { opacity: 0; transform: translateY(-70%) scale(.85); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

@media (max-width: 520px) {
    .promo-game__wheel {
        width: min(280px, 88vw);
    }

    .promo-game__spin-button span {
        font-size: 7px;
    }

    .promo-game__result-window h2 {
        font-size: 28px;
    }
}

@media (max-height: 520px) and (orientation: landscape) {
    .promo-game__result-window {
        top: 50%;
        padding-top: 45px;
    }

    .promo-game__result-window::before {
        top: -38px;
        width: 78px;
        height: 78px;
    }

    .promo-game__result-window::after {
        top: -13px;
        width: 38px;
        height: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-game__wheel-disc.is-spinning {
        animation-duration: .25s;
    }

    .promo-game__result-window {
        animation: none;
    }
}
