@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.wheel-container {
    position: fixed;
    left: -140px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.wheel-outer {
    width: 280px;
    height: 280px;
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
}

.wheel-track {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid #e2e8f0;
}

.wheel-progress {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(38, 215, 1, 0.4));
}

.wheel-inner-ring {
    position: absolute;
    inset: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.25);
}

.wheel-center {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
}

.wheel-center-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #95F985 0%, #4ded30 50%, #26D701 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.wheel-progress-indicator {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #95F985 0%, #4ded30 50%, #26D701 100%);
    border-radius: 50%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.wheel-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 60%, rgba(20, 181, 9, 0.05) 100%);
    pointer-events: none;
}

.wheel-word {
    position: absolute;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #5a9194 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    top: 50% !important;
    left: 75% !important;
    transform: translate(-50%, -50%) !important;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.wheel-segments {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
}

.wheel-segment {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    left: 50%;
    top: 0;
    transform-origin: 1px 125px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
    }
}

.wheel-progress-indicator.active {
    animation: pulse-glow 2s ease-in-out infinite;
}