.wheel-wrap {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wheel-arrow-img {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.8));
}

.wheel-marker {
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 18px solid #ff9900;
    z-index: 10;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.7));
}

.wheel-marker::after {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #ff9900;
}

.wheel {
    position: relative;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #0a0a0c;
    border: 3px solid #1f1f24;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.9), 0 0 0 1px #08080a;
    overflow: hidden;
    transition: transform 5s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.wheel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg,
        #14141a 0deg 3deg,
        #101015 3deg 6deg
    );
    opacity: 0.6;
}

.wheel::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid #1a1a20;
    pointer-events: none;
}

.wheel-sector {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #ff9900 0deg,
        #d47c00 0deg,
        transparent 0deg,
        transparent 360deg
    );
    transition: background 0.35s ease;
    z-index: 2;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #0b0b0c;
    border: 2px solid #1f1f24;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(0, 0, 0, 0.7);
}

.wheel-chance-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6f6f75;
    font-weight: 600;
}

.wheel-chance-value {
    font-size: 28px;
    font-weight: 800;
    color: #ff9900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255, 153, 0, 0.28);
}

.wheel.spinning {
    transition: transform 5s cubic-bezier(0.1, 0.8, 0.1, 1);
}

.btn-spin {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ff9900 0%, #d47c00 100%);
    border: 1px solid #ffb340;
    color: #121212;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 2px 0 #7a4a00;
    transition: opacity 0.15s ease, transform 0.08s ease, background 0.15s ease;
    flex-shrink: 0;
}

.btn-spin:hover {
    background: linear-gradient(180deg, #ffa51c 0%, #d47c00 100%);
    opacity: 0.95;
}

.btn-spin:active {
    transform: translateY(1px);
    box-shadow: 0 1px 0 #7a4a00;
}

.btn-spin:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 0 #4a2a00;
}