*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #333;
    gap: 20px;
}

.controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: #444;
    padding: 15px;
    border-radius: 8px;
    color: white;
}

.controls textarea {
    width: 300px;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #555;
    background-color: #f0f0f0;
}

.controls button {
    padding: 10px 20px;
    background-color: #db7093;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.controls button:hover {
    background-color: #d63e92;
}


.container{
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .spinBtn{
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.1em;
    border: 4px solid rgba(0,0,0,0.75);
    cursor: pointer;
    user-select: none;
}
.container .spinBtn::before{
    content: '';
    position: absolute;
    top: -28px;
    width: 20px;
    height: 30px;
    background: #fff;
    clip-path: polygon(50% 0%, 15% 100%, 86% 100%);
}
.container .wheel{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 5px #333, 0 0 0 15px #fff, 0 0 0 18px #111;
    transition: transform 5s ease-in-out;
}
.container .wheel .number{
    position: absolute;
    width: 50%;
    height: 50%;
    background: var(--clr);
    transform-origin: bottom right;
    clip-path: polygon(0 0, 56% 0, 100% 100%, 0 56%);
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
}
.container .wheel .number span{
    position: relative;
    transform: rotate(45deg);
    font-size: 1.5em;
    font-weight: 700;
    color: white;
    text-shadow: 2px 3px 2px rgba(0,0,0,0.2);
    padding: 0 5px;
    word-break: break-all;
    text-align: center;
}