.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(56, 93, 167, 0.1);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.step-line::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
    z-index: -1;
}

.dark .step-line::before {
    background: #334155;
}

@media (min-width: 768px) {
    .step-line::before {
        left: 0;
        right: 0;
        top: 24px;
        width: 100%;
        height: 2px;
    }
}


.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
}