/* 
   ZENITH ULTRA MASTERY - V80.0 (THE PERFECT MONITOR RESTORE)
*/

:root {
    --bg-deep: #111318;
    --glass-border: rgba(255, 255, 255, 0.08);
    --accent-main: #4facfe;
    --text-dim: #94a3b8;
}

body {
    margin: 0; background: var(--bg-deep); color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* --- HEADER MASTERPIECE --- */
.header {
    height: 80px; background: rgba(17, 19, 24, 0.8); backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border); position: fixed; top: 0; left: 0; right: 0;
    display: flex; align-items: center; justify-content: space-between; padding: 0 40px; z-index: 1000;
}

.logo-text { font-size: 1.4rem; font-weight: 900; letter-spacing: -1.5px; }
.logo-text a { color: #fff; text-decoration: none; }
.logo-text span { color: var(--accent-main); text-shadow: 0 0 20px var(--accent-main); }

.header-capsule {
    display: flex; align-items: center; gap: 32px;
    background: rgba(0,0,0,0.4); border: 1px solid var(--glass-border);
    padding: 10px 32px; border-radius: 100px;
}

.h-item { display: flex; align-items: center; gap: 10px; }
.h-lab { font-size: 0.55rem; font-weight: 900; color: #52525b; letter-spacing: 2px; }
.h-val { font-family: 'JetBrains Mono'; font-size: 0.85rem; color: #fff; }

.network-switcher { display: flex; background: #000; border-radius: 100px; padding: 4px; cursor: pointer; border: 1px solid rgba(255,255,255,0.05); }
.net-pill { font-size: 0.55rem; font-weight: 900; padding: 6px 18px; border-radius: 100px; color: #52525b; }
.net-pill.active { background: var(--accent-main); color: #000; box-shadow: 0 0 20px var(--accent-main); }

.header-nav { display: flex; gap: 12px; align-items: center; }
.nav-link { color: #fff; text-decoration: none; font-size: 0.75rem; font-weight: 800; padding: 12px 24px; border-radius: 12px; transition: 0.3s; }
.nav-link.active { background: rgba(255,255,255,0.05); color: var(--accent-main); }

.btn-vault { 
    background: #fff; color: #000; font-weight: 900; font-size: 0.75rem; 
    padding: 12px 32px; border-radius: 12px; text-decoration: none; transition: 0.3s;
}

/* --- LAYOUT ARCHITECTURE --- */
#app-container { display: flex; padding-top: 80px; min-height: 100vh; }

.left-sidebar {
    width: 280px; position: fixed; top: 80px; bottom: 0; left: 0;
    background: rgba(255, 255, 255, 0.01); backdrop-filter: blur(30px);
    border-right: 1px solid var(--glass-border); padding: 40px 24px; z-index: 100;
}

.right-sidebar {
    width: 380px; position: fixed; top: 80px; bottom: 0; right: 0;
    background: rgba(255, 255, 255, 0.01); backdrop-filter: blur(30px);
    border-left: 1px solid var(--glass-border); z-index: 100;
}

main { flex: 1; margin-left: 280px; margin-right: 380px; padding: 40px; transition: 0.4s; }

.heading-elite { font-size: 0.6rem; font-weight: 900; color: #52525b; letter-spacing: 4px; display: block; margin-bottom: 24px; padding-left: 12px; }
.nav-section nav a { 
    display: flex; align-items: center; gap: 18px; color: #94a3b8; text-decoration: none; 
    font-weight: 700; font-size: 0.85rem; padding: 16px 20px; border-radius: 16px; transition: 0.3s; 
}
.nav-section nav a:hover { color: #fff; background: rgba(255,255,255,0.02); transform: translateX(5px); }

/* --- ZENITH INDICATOR (ANIMATED) --- */
.zenith-indicator { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.zenith-pulse { position: absolute; inset: -4px; border-radius: 50%; background: var(--dot-color, var(--accent-main)); opacity: 0.2; animation: zenith-ping 2s infinite; }
.zenith-dot { position: absolute; inset: 4px; border-radius: 50%; background: var(--dot-color, var(--accent-main)); box-shadow: 0 0 10px var(--dot-color, var(--accent-main)); z-index: 2; }
.zenith-orbit {
    position: absolute; inset: 0; border: 1.5px solid var(--dot-color, var(--accent-main));
    border-radius: 50%; opacity: 0.4; border-top-color: transparent; border-bottom-color: transparent;
    animation: zenith-rotate 1.5s linear infinite;
}

@keyframes zenith-ping { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(2.5); opacity: 0; } }
@keyframes zenith-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
