/* --- GLOBAL STYLES & RESET --- */
:root {
    --bg-dark: #0a0f18;
    --panel-bg: #141b27;
    --panel-border: #1e293b;
    --accent-blue: #0066FF;
    --accent-glow: rgba(0, 102, 255, 0.3);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    margin: 0;
    overflow: hidden; 
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.font-code { font-family: 'Fira Code', monospace; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 4px; }

.hub-panel {
    background-color: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 0.5rem;
}

.center-ring-outer {
    border: 2px solid #1e293b;
    background: radial-gradient(circle, #141b27 0%, #0a0f18 100%);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.8), 0 0 50px var(--accent-glow);
    position: relative;
}

.center-ring-inner {
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
    position: absolute;
    top: 10px; left: 10px; right: 10px; bottom: 10px;
    box-shadow: inset 0 0 20px var(--accent-glow), 0 0 15px var(--accent-glow);
    opacity: 0.5;
    pointer-events: none;
}

.crosshair-line {
    position: absolute;
    background-color: rgba(0, 102, 255, 0.15);
    z-index: 0;
}
.crosshair-h { top: 50%; left: -100vw; right: -100vw; height: 1px; }
.crosshair-v { left: 50%; top: -100vh; bottom: -100vh; width: 1px; }

.hub-input {
    background-color: #050505;
    border: 1px solid var(--panel-border);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    width: 100%;
}
.hub-input:focus { outline: none; border-color: var(--accent-blue); }

.data-viz {
    background-image: radial-gradient(circle at center, var(--accent-blue) 1px, transparent 1px);
    background-size: 8px 8px;
    opacity: 0.4;
}

.orbiter-logo {
    width: 260px; 
    height: 260px;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}