﻿.spin-wheel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.wheel-container {
    position: relative;
    width: 327px;
    height: 327px;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.wheel-pointer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 40px;
    background: #B524FF;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
    z-index: 5;
}

.wheelSquare {
    display: flex;
    justify-content: center;
}

.pointer {
    position: absolute;
    top: -7px;
    left: 43%;
    z-index: 10;
}