.wheelArea02 .gameWheelWrap {
    padding: 5px;
}

.wheelArea02 .wheel {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 5s ease-in-out;
    overflow: visible;
}

.wheelArea02 .wheel span {
    position: absolute;
    left: 50%;
    width: 0.5%;
    height: 100%;
    transform-origin: left center;
    transform: rotate(calc(var(--deg) * var(--i)));
    background: #0cddb7;
    filter: brightness(0.5);
    z-index: 2;
}

.wheelArea02 .spinBtn {
    border: 0.2em solid #0a1b18;
    position: absolute;
    inset: 35%;
    background-image: url(/spin-fever/image/wheel02/center-btn.gif);
    background-size: 103%;
    background-position: center center;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    user-select: none;
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.wheelArea02 .segments div {
    inset: 0;
}

.wheelArea02 .segment-image {
    width: 38%;
}

.inner span {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    transform-origin: left center;
    background: #1fc7a8;
    filter: brightness(0.5);
    z-index: 6;
}

.inner span.winning {
    background: linear-gradient(to bottom, #ffeb3b, #ffc107);
    transition: all 0.5s ease-in-out;
}

.keyWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 500px;
    margin: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.keyBlk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    max-width: 240px;
    width: 100%;
    margin: 5px auto 0;
    color: #FFF;
    font-size: 16px;
    background-color: #0b1a3d;
    border-radius: 10px;
    padding: 5px;
}

.keyIcon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 120px;
    margin: 0px;
    border-radius: 6px 0 0 6px;
}

.keyInfo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0 5px;
    border-radius: 0 6px 6px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.keyInfo p {
    width: 100%;
    font-size: 15px;
    line-height: 18px;
    margin: 0;
    color: #d1d1d1;
    font-weight: 500;
    padding: 5px 0;
}