#loader {
    position: fixed;
    inset: 0;
    background: #050008;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
}

.loader-content h1 {
    font-size: 3.5rem;
    color: #c77dff;
}

.loading-bar {
    width: 260px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7b2cbf, #c77dff);
    animation: load 3s forwards;
}

@keyframes load {
    to { width: 100%; }
}
