/* page-specific token overrides */
:root {
  --card-bg: #18181b;
  --accent: #6366f1;
}

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.8;
            padding: 40px 20px;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
        }
        
        h1 {
            font-size: 2rem;
            margin-bottom: 8px;
            color: var(--accent);
        }
        
        .subtitle {
            color: var(--text-muted);
            font-size: 1rem;
            margin-bottom: 32px;
        }
        
        .faq-item {
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .faq-question::before {
            content: "Q";
            background: var(--accent);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 4px;
            flex-shrink: 0;
        }
        
        .faq-answer {
            color: var(--text-secondary);
            padding-left: 36px;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 24px 16px;
            }
            
            .faq-answer {
                padding-left: 0;
            }
            
            .faq-question {
                font-size: 1rem;
            }
            
            h1 {
                font-size: 1.75rem;
            }
            
            ul {
                padding-left: 16px;
            }
        }
        
        .faq-answer p {
            margin-bottom: 12px;
        }
        
        .faq-answer p:last-child {
            margin-bottom: 0;
        }
        
        .highlight-box {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin: 16px 0;
        }
        
        .warning-box {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin: 16px 0;
        }
        
        .info-box {
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 8px;
            padding: 16px;
            margin: 16px 0;
        }
        
        ul {
            padding-left: 20px;
            margin: 12px 0;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        a {
            color: var(--accent);
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .back-link {
            display: inline-block;
            margin-bottom: 24px;
            color: var(--accent);
        }
        
        .category-header {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin: 32px 0 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .category-header:first-of-type {
            margin-top: 0;
        }

/* ---- extracted from inline style="" attributes (kept last so they win
   by source order; NO !important so JS-set inline styles still override) ---- */
.il-faq-1.il-faq-1.il-faq-1 {
  margin-bottom: 0;
}
.il-faq-2.il-faq-2.il-faq-2 {
  color: var(--accent);
}
