  /* [STYLES UNCHANGED - KEPT FOR CONSISTENCY] */
        :root {
            --primary: #00e676; 
            --bg-dark: #050505;
            --surface: rgba(30, 30, 35, 0.85);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-main: #ffffff;
            --text-muted: #a0a0a0;
            --radius: 16px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: "Outfit", sans-serif;
            background-color: var(--bg-dark);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(0, 230, 118, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(41, 98, 255, 0.08) 0%, transparent 40%);
            color: var(--text-main);
            min-height: 100vh;
            padding: 40px 20px;
            line-height: 1.7;
        }
        .doc-container {
            max-width: 900px; margin: 0 auto; background: var(--surface);
            backdrop-filter: blur(12px); border: 1px solid var(--glass-border);
            border-radius: var(--radius); padding: 50px;
        }
        .logo {
            display: flex; align-items: center; justify-content: center;
            gap: 10px; text-decoration: none; margin-bottom: 40px;
            font-size: 2rem; font-weight: 800;
        }
        .logo i { color: var(--primary); }
        .logo span {
            background: linear-gradient(90deg, #fff, var(--primary));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        h1 { font-size: 2.5rem; text-align: center; margin-bottom: 10px; color: #fff; }
        .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 50px; font-size: 1.1rem; }
        h2 { color: var(--primary); margin-top: 40px; margin-bottom: 20px; font-size: 1.5rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 10px; }
        h3 { color: #fff; margin-top: 25px; margin-bottom: 15px; font-size: 1.2rem; }
        p, li { color: #ccc; margin-bottom: 15px; }
        ul { margin-left: 20px; margin-bottom: 20px; }
        strong { color: #fff; font-weight: 600; font-family: "JetBrains Mono", monospace; }
        .highlight {
            background: rgba(255, 61, 0, 0.08); border-left: 3px solid #ff3d00;
            padding: 20px; border-radius: 0 8px 8px 0; margin: 30px 0;
        }
        .highlight h3 { margin-top: 0; color: #ff3d00; }
        .highlight p { margin-bottom: 0; color: #ddd; }
        .highlight.info { background: rgba(0, 230, 118, 0.05); border-left-color: var(--primary); }
        .highlight.info h3 { color: var(--primary); }
        .back-link-wrapper { margin-top: 60px; text-align: center; padding-top: 30px; border-top: 1px solid var(--glass-border); }
        .back-link { color: var(--text-muted); text-decoration: none; }
		
		/* ================= CSP COMPLIANCE UTILITIES ================= */

/* Replaces inline style on Logo */
.logo-img {
    height: 40px;
    width: auto;
}