/* ==========================================================================
   TERMINAL BOOT SEQUENCE STYLING // CENTERED LAYOUT
   ========================================================================== */

#boot-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1.5rem;
}

.terminal-card {
    width: 100%;
    max-width: 580px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--card-shadow);
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--panel-border);
}

.terminal-dots {
    display: flex;
    gap: 0.4rem;
}

.terminal-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 0.5px;
}

.terminal-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-height: 180px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-main);
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.terminal-line.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.terminal-line .check {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

.terminal-line.success {
    color: var(--accent-gold);
    font-weight: 700;
}

.terminal-line .prefix {
    color: var(--accent-cyan);
}

/* Progress Bar */
.terminal-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--panel-border);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-gold) 100%);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
    transition: width 0.3s ease;
}