
        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            box-sizing: border-box;
        }
        .centered_body{
            display: flex !important;
            justify-content: center !important;
            align-items: center !important; 
        }
        .ya-client-iframe { 
            width: 100%; 
            aspect-ratio: 1.0119904076738608; 
            max-width: 100%; 
            max-height: 100%; 
            position: relative;
            display: block;
        }
        .original_frame{
        width: 422px !important;
        height: 417px !important;
    }
        
        .wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    aspect-ratio: 1;
    margin: 0 auto;
    position: relative;
}

.wheel-pointer {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #48FF00;
}
        
        .wheel {
            width: 82.09%;
            height: 74.7%;
            border: 3px solid #1248BC;
            border-radius: 50%;
            background-color: white;
            aspect-ratio: 1;
            position: relative;
        }
        
        .wheel-svg {
            width: 100%;
            height: 100%;
        }
        
        .wheel-slice {
            stroke: #fff;
            stroke-width: 1;
        }
        
        .wheel {
    width: 82.09%;
    height: 74.7%;
    border: none;
    border-radius: 50%;
    background-color: white;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.wheel:hover {
    transform: scale(1.02);
}

.wheel.spinning {
    cursor: not-allowed;
    animation: none;
}

.wheel-label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-style: italic;
    font-size: 10px;
    font-weight: bold;
    fill: white;
    text-anchor: middle;
    dominant-baseline: central;
}

@keyframes wheelSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(var(--random-rotation, 1800deg));
    }
}

.wheel.spin-animation {
    animation: wheelSpin 8s cubic-bezier(0.17, 0.67, 0.12, 0.99) forwards;
    animation-fill-mode: forwards;
}

.wheel.spin-animation .wheel-svg {
    animation: wheelSpin 8s cubic-bezier(0.17, 0.67, 0.12, 0.99) forwards;
    animation-fill-mode: forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 0.8;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) scale(0.2);
    }
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 1.5s ease-out forwards;
}



.wheel.spinning {
    cursor: not-allowed;
    pointer-events: none;
}

.coupon-display {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: #fff;
    border: 1px solid #44CB0E;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coupon-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: #44CB0E;
    text-align: center;
    line-height: 1.2;
}

.hidden {
    display: none !important;
}.hidden {
    display: none !important;
}

.wheel-instruction {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IBM Plex Sans', sans-serif;
    font-style: italic;
    font-size: 12px;
    font-weight: 700;
    color: #44CB0E;
    text-align: center;
}
        