html, body {
    background-color: #000; /* Force black immediately */
    margin: 0;
    padding: 0;
    overflow: hidden;
}
#loading-screen {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex; justify-content: center; align-items: center;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow: hidden;
}

.loader-visual-bg {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #001a1d 0%, #000 100%);
    opacity: 0.5;
}

.loader-glass {
    width: 500px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 2px; /* Sharp corners look more professional */
    padding: 40px;
    position: relative;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
}

.loader-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
    padding-bottom: 20px; margin-bottom: 20px;
}

.glitch-text {
    font-weight: 800; letter-spacing: 5px; font-size: 14px; color: #00f2ff;
}

.terminal-container {
    height: 120px;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(0, 242, 255, 0.8);
    line-height: 2;
}

.line { opacity: 0.3; transition: opacity 0.3s; }
.line.active { opacity: 1; text-shadow: 0 0 8px #00f2ff; }

.footer-meta {
    margin-top: 30px; display: flex; gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.meta-item .label { font-size: 8px; opacity: 0.4; margin-right: 5px; }
.meta-item .val { font-size: 9px; letter-spacing: 1px; }

/* The Spinner */
.orbit-spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(0, 242, 255, 0.1);
    border-top: 2px solid #00f2ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }