
.wheel-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    margin: 0 auto;
}

#wheelCanvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-center {
    position: absolute;
    width: 15%;
    height: 15%;
    background: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    border: 5px solid #ffd700;
}

.arrow {
    position: absolute;
    top: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3vmin solid transparent;
    border-right: 3vmin solid transparent;
    border-top: 6vmin solid #ff4757;
    z-index: 11;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
}

.wheel-win-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5100;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.wheel-win-modal-content {
    background: white;
    padding: 12px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: modal-appear 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 300px;

}

@keyframes modal-appear {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.wheel-win-modal h2 {
    font-size: 32px;
    font-weight: 400;
}

#wheel-win-modalPrize {
    font-size: 24px;
}


