:root { --bg: #030508; --panel: #0d1117; --accent: #58a6ff; --text: #c9d1d9; --border: #30363d; }
* { box-sizing: border-box; scrollbar-width: thin; scrollbar-color: #30363d transparent; }
body, html { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; height: 100vh; overflow: hidden; }
.navbar { height: 50px; background: var(--panel); display: flex; justify-content: space-between; align-items: center; padding: 0 20px; border-bottom: 1px solid var(--border); z-index: 1000; }
.brand { font-weight: bold; letter-spacing: 2px; font-size: 1.1rem; }
.brand span { color: var(--accent); }
#system-clock { font-family: 'Courier New', monospace; font-size: 0.9rem; color: var(--accent); }
.viewport { display: grid; grid-template-columns: 320px 1fr 320px; gap: 12px; padding: 12px; height: calc(100vh - 50px); }
.col-side, .col-main { display: flex; flex-direction: column; gap: 12px; height: 100%; overflow-y: auto; }
.module-wrapper { background: var(--panel); border: 1px solid var(--border); border-radius: 8px; padding: 15px; min-height: fit-content; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.5); }
#mod-radar { flex: 1; min-height: 420px; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
canvas { width: 100% !important; height: 100% !important; border-radius: 7px; }
h2, h3 { margin: 0 0 12px 0; font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 10px; }
.stat-card {
    background: #161b22;
    border: 1px solid #30363d;
    padding: 8px;
    border-radius: 4px;
    text-align: center;
}
.stat-card b { color: #58a6ff; font-size: 1.2rem; }
.stat-card small { color: #8b949e; font-size: 0.6rem; letter-spacing: 1px; }