.bodyWallpaper {
    background-color: #000;
    background-image: var(--custom-lucky-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    position: absolute;
    width: 100%;
    min-height: 100vh;
}
.bodyWallpaper::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, 0.5);
}
.bodyWrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: var(--custom-lucky-bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    max-width: 640px;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.175);
}

.controlBtn {
    display: inline-block;
    transition: 0.3s ease;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}
.controlBtn:hover {transform: scale(1.05);filter:brightness(1.25);}
.controlBtn:active {transform: scale(0.95);filter:brightness(0.85);}

.wheelBody {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
}
.spinWheel::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: var(--custom-wheel);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

.winNotification {
    padding: 0.375rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.75);
}

.spinStart {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    transition: 0.3s ease;
}

.spinStart:not(:disabled):hover {
    filter: brightness(1.25);
}
.spinStart:not(:disabled):active {
    transform: translateY(4px);
}

.spinStart:disabled {
    opacity: 0.75;
}