        :root {
            --bg-main: #0b0f19;
            --bg-side: #111827;
            --bg-card: #1f2937;
            --neon-glow: #10b981;
            --text-bright: #f3f4f6;
            --text-dim: #9ca3af;
            --border-glow: rgba(16, 185, 129, 0.15);
        }
        @keyframes glowPulse {
            0% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.1); }
            50% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.25); }
            100% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.1); }
        }
        @keyframes elementFade {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'JetBrains Mono', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-bright);
            background-color: var(--bg-main);
            display: flex;
            min-height: 100vh;
            overflow-x: hidden;
        }
        aside {
            width: 280px;
            background-color: var(--bg-side);
            border-right: 1px solid rgba(255,255,255,0.05);
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 1000;
        }
        .brand-zone {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .brand-zone img {
            height: 36px;
            width: auto;
        }
        .brand-zone span {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-bright);
            letter-spacing: -0.5px;
        }
        .side-nav {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 2rem;
            flex-grow: 1;
        }
        .side-nav a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 16px;
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.95rem;
            border-radius: 8px;
            transition: all 0.25s ease;
        }
        .side-nav a:hover, .side-nav a.active {
            color: var(--neon-glow);
            background: rgba(16, 185, 129, 0.08);
            font-weight: 600;
        }
        .side-footer {
            font-size: 0.75rem;
            color: var(--text-dim);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 1.5rem;
        }
        .side-footer a { color: var(--text-bright); text-decoration: none; }
        .main-view {
            margin-left: 280px;
            flex-grow: 1;
            padding: 3rem 4%;
            max-width: 1300px;
        }
        .dashboard-header {
            margin-bottom: 3rem;
            animation: elementFade 0.6s ease-out;
        }
        .patch-indicator {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: var(--neon-glow);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        .dashboard-header h1 {
            font-size: 2.8rem;
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        .dashboard-header p {
            color: var(--text-dim);
            font-size: 1.1rem;
            max-width: 800px;
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .bento-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.03);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: elementFade 0.8s ease-out;
        }
        .bento-card:hover {
            border-color: var(--neon-glow);
            transform: translateY(-4px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .bento-card.col-2 { grid-column: span 2; }
        .bento-card.row-2 { grid-row: span 2; }
        .card-icon-wrap {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--neon-glow);
            margin-bottom: 1.5rem;
        }
        .bento-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; color: #fff; }
        .bento-card p { color: var(--text-dim); font-size: 0.95rem; }
        .media-dock {
            background: #070a12;
            border: 1px solid var(--border-glow);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            animation: glowPulse 4s infinite ease-in-out;
        }
        .media-split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
        .media-placeholder {
            background: #111827;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .media-placeholder img { width: 100%; height: auto; display: block; opacity: 0.85; }
        .video-dock { aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; margin-top: 1.5rem; }
        .video-dock iframe { width: 100%; height: 100%; border: none; }
        .dock-text h2 { font-size: 1.8rem; margin-bottom: 1rem; color: #fff; }
        .dock-text p { color: var(--text-dim); font-size: 1rem; margin-bottom: 1rem; }
        .sys-log {
            font-family: monospace;
            background: rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 6px;
            font-size: 0.8rem;
            color: #34d399;
        }
        .action-hub { display: flex; gap: 1rem; margin-top: 2rem; }
        .hub-btn {
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s;
        }
        .hub-btn-glow { background: var(--neon-glow); color: var(--bg-main); }
        .hub-btn-glow:hover { background: #34d399; transform: translateY(-1px); }
        .hub-btn-dark { background: rgba(255,255,255,0.05); color: var(--text-bright); border: 1px solid rgba(255,255,255,0.1); }
        .hub-btn-dark:hover { background: rgba(255,255,255,0.1); }
        footer {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            margin-top: 4rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            font-size: 0.85rem;
            color: var(--text-dim);
        }
        .foot-meta a { color: var(--text-dim); text-decoration: none; margin-right: 1.2rem; }
        .foot-meta a:hover { color: var(--neon-glow); }
        @media (max-width: 1024px) {
            aside { width: 80px; padding: 1.5rem 0.5rem; align-items: center; }
            .brand-zone span, .side-footer, .side-nav a span { display: none; }
            .side-nav a { justify-content: center; width: 48px; height: 48px; padding: 0; }
            .main-view { margin-left: 80px; }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-card.col-2 { grid-column: span 1; }
            .media-split { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            body { flex-direction: column; }
            aside { width: 100%; height: auto; position: static; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 5%; }
            .brand-zone { border-bottom: none; padding-bottom: 0; }
            .side-nav { flex-direction: row; margin-top: 0; justify-content: center; width: 100%; }
            .main-view { margin-left: 0; padding: 2rem 5%; }
            .dashboard-header h1 { font-size: 2rem; }
            footer { flex-direction: column; gap: 1rem; text-align: center; }
        }
    