.quick-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s;
}
.quick-loader-bar {
    width: 300px;
    height: 12px;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--cyan);
}
.quick-loader-progress {
    width: 0;
    height: 100%;
    background: var(--cyan);
    transition: width 0.2s;
}
.quick-loader-text {
    color: var(--cyan);
    font-size: 16px;
    font-family: var(--font-main);
    margin-top: 10px;
    letter-spacing: 2px;
}
