.step .circle {
    width: 38px;
    height: 38px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s;
}

.step.active .circle {
    background: linear-gradient(to right, #ec4899, #a855f7);
    box-shadow: 0 0 12px rgba(236,72,153,0.6);
}

.step .label {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.7;
}

.step.active .label {
    opacity: 1;
    color: white;
}

.step.locked {
    pointer-events: none;
    opacity: 0.4;
}

.step.locked .circle {
    background: rgba(255,255,255,0.05);
    box-shadow: none;
}

.step.completed .circle {
    background: #22c55e;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}