.loader-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.5s ease;
}

.loader-container.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    width: 80%;
    max-width: 600px;
    font-family: var(--font-mono);
}

.loader-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.terminal-logs {
    margin-bottom: 2rem;
    min-height: 180px;
}

.log-line {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
}

.log-line.success {
    color: var(--success);
    font-weight: 600;
}

.loading-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.1s linear;
}

.percentage {
    color: var(--primary);
    font-weight: bold;
    min-width: 45px;
}
