/* ==================== HELP PAGE STYLES ==================== */

/* CSS variables inherited from 1-foundation.css */
/* Layout handled by base.html - no overrides needed */

        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --bg-primary: #0a0a12;
            --bg-secondary: #12121c;
            --bg-card: #1a1a28;
            --bg-hover: #222233;
            --accent-blue: #4a6cf7;
            --accent-green: #10b981;
            --accent-yellow: #f59e0b;
            --accent-red: #ef4444;
            --accent-cyan: #06b6d4;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border-color: #2a2a3c;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
        }
        .app-layout { display: flex; min-height: 100vh; }

        /* Sidebar */







        .nav-group:first-child

        a


        a











        /* Main */
        .main-content { flex: 1; margin-left: 250px; min-height: 100vh; overflow-x: hidden; }
        .page-header {
            background: var(--bg-secondary); border-bottom: 1px solid var(--border-color);
            padding: 20px 28px;
        }
        .page-header h2 { font-size: 1.5rem; font-weight: 600; }
        .page-subtitle { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
        .content-area { padding: 24px; }

        .help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 24px; }
        .help-card {
            background: var(--bg-card); border-radius: 12px;
            border: 1px solid var(--border-color); padding: 24px;
            transition: all 0.2s; cursor: pointer; text-decoration: none; color: inherit;
        }
        .help-card:hover {
            border-color: rgba(74, 108, 247, 0.3);
            transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2);
        }
        .help-card-icon { font-size: 2rem; margin-bottom: 12px; }
        .help-card-title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
        .help-card-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

        .section-title {
            font-size: 1.1rem; font-weight: 600; margin-bottom: 16px;
            padding-bottom: 8px; border-bottom: 1px solid var(--border-color);
        }
        .glossary-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
        .glossary-item {
            background: var(--bg-card); border-radius: 8px;
            border: 1px solid var(--border-color); padding: 16px;
        }
        .glossary-term { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; color: var(--accent-cyan); }
        .glossary-def { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4; }

        .shortcut-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); }
        .shortcut-table th {
            font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
            text-transform: uppercase; letter-spacing: 0.5px;
            padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-color);
        }
        .shortcut-table td {
            padding: 10px 16px; font-size: 0.85rem; color: var(--text-secondary);
            border-bottom: 1px solid rgba(42, 42, 60, 0.5);
        }
        .shortcut-table tr:last-child td { border-bottom: none; }
        .shortcut-table tr:hover td { background: var(--bg-hover); }

        @media (max-height: 700px) {






        }
    </style>
