:root {
    --obsidian: #0a0a0b;
    --cyan: #00f2ff;
    --magenta: #ff0055;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--obsidian);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    height: 100vh;
}

#neural-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    z-index: 10;
}

.dashboard-container {
    display: flex;
    height: 100vh;
    padding: 1.5rem;
    gap: 1.5rem;
}

.sidebar {
    width: 260px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    color: var(--cyan);
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

nav ul { list-style: none; }
nav li { margin-bottom: 1.5rem; }
nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
nav a.active, nav a:hover { color: var(--cyan); }

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 0.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

h1 { font-family: 'Orbitron', sans-serif; font-size: 2rem; }

#clock { font-size: 1.5rem; color: var(--cyan); font-weight: 700; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { text-shadow: 0 0 0px var(--cyan); }
    50% { text-shadow: 0 0 20px var(--cyan); }
    100% { text-shadow: 0 0 0px var(--cyan); }
}

.regime-bullish { color: var(--cyan); }
.regime-bearish { color: var(--magenta); }

.log-window {
    height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: var(--cyan);
}

.log-entry { margin-bottom: 0.5rem; opacity: 0.8; }
