body {
    text-align: center;
    font-family: Arial, sans-serif;
}

.wheel-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
}

#wheel {
    width: 100%;
    height: 100%;
    position: relative;
}

.wheel-segment {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: bottom center;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

/* Dynamic styling for each segment */
.wheel-segment:nth-child(1) {
    transform: rotate(0deg) translateY(-50%);
    background-color: #FFD700;
}
.wheel-segment:nth-child(2) {
    transform: rotate(72deg) translateY(-50%);
    background-color: #FF8C00;
}
/* Add styles for more segments, adjusting the rotation and colors */

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(3600deg); }
}
