.terminal-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.loader-content {
    background: rgba(0, 17, 0, 0.9);
    border: 1px solid var(--terminal-green);
    padding: 2rem;
    min-width: 300px;
}

.loader-text {
    color: var(--terminal-green);
    font-family: 'VT323', monospace;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(50, 222, 132, 0.2);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.progress {
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--terminal-green);
    animation: progress 1.5s linear infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes progress {
    0% { left: -100%; }
    100% { left: 100%; }
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
} 