        :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);
            --win-color: #0078d4;
            --mac-color: #ffffff;
            --ios-color: #ec4899;
            --and-color: #3ddc84;
        }
        @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; }
        .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; }
        .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-dl-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .dl-bento-card {
            background: var(--bg-card);
            border: 1px solid rgba(255,255,255,0.03);
            border-radius: 12px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: elementFade 0.8s ease-out;
        }
        .dl-bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        .dl-bento-card.win-card:hover { border-color: var(--win-color); box-shadow: 0 0 20px rgba(0, 120, 212, 0.15); }
        .dl-bento-card.mac-card:hover { border-color: var(--mac-color); box-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
        .dl-bento-card.ios-card:hover { border-color: var(--ios-color); box-shadow: 0 0 20px rgba(236, 72, 153, 0.15); }
        .dl-bento-card.and-card:hover { border-color: var(--and-color); box-shadow: 0 0 20px rgba(61, 220, 132, 0.15); }
        .card-top i { font-size: 2.8rem; margin-bottom: 1.5rem; display: block; }
        .win-card .card-top i { color: var(--win-color); }
        .mac-card .card-top i { color: var(--mac-color); }
        .ios-card .card-top i { color: var(--ios-color); }
        .and-card .card-top i { color: var(--and-color); }
        .dl-bento-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: #fff; }
        .dl-bento-card p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.5; }
        .btn-console-dl {
            width: 100%;
            padding: 12px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            color: var(--text-bright);
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.2s;
            margin-top: 1.5rem;
        }
        .win-card:hover .btn-console-dl { background: var(--win-color); color: white; border-color: var(--win-color); }
        .mac-card:hover .btn-console-dl { background: var(--mac-color); color: var(--bg-main); border-color: var(--mac-color); }
        .ios-card:hover .btn-console-dl { background: var(--ios-color); color: white; border-color: var(--ios-color); }
        .and-card:hover .btn-console-dl { background: var(--and-color); color: var(--bg-main); border-color: var(--and-color); }
        .console-log-panel {
            background: #070a12;
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 12px;
            padding: 2rem;
            font-family: monospace;
            margin-bottom: 3rem;
        }
        .panel-title { font-size: 1.1rem; color: var(--neon-glow); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
        .yaml-block { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; color: #a7f3d0; line-height: 1.5; }
        .yaml-line { display: flex; }
        .yaml-key { color: #f43f5e; width: 140px; flex-shrink: 0; }
        .yaml-val { color: #34d399; }
        .terminal-warn {
            border-left: 3px solid #f59e0b;
            background: rgba(245, 158, 11, 0.04);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            font-size: 0.9rem;
            color: var(--text-dim);
            line-height: 1.6;
        }
        .terminal-warn span { color: #f59e0b; font-weight: bold; }
        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: 1200px) {
            .bento-dl-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @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; }
        }
        @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; }
            .bento-dl-grid { grid-template-columns: 1fr; }
            footer { flex-direction: column; gap: 1rem; text-align: center; }
        }
    