<style>
        /* ====== Enhanced Base Theme ====== */
        :root {
            --bg: #0a0e1a;
            --panel: #0f1523;
            --panel-hover: #141b2b;
            --muted: #8b9dc3;
            --text: #f0f2ff;
            --accent: #64d8ff;
            --accent-2: #9d7bfa;
            --accent-glow: rgba(100, 216, 255, 0.15);
            --link: #7ee3ff;
            --link-hover: #64d8ff;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --radius: 16px;
            --radius-sm: 8px;
            --shadow: 0 20px 40px rgba(0,0,0,0.3);
            --shadow-lg: 0 25px 50px rgba(0,0,0,0.4);
            --lh: 1.7;
            --border: rgba(255,255,255,0.08);
            --border-hover: rgba(255,255,255,0.15);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }

        body {
            margin: 0;
            padding: 0;
            background: var(--bg);
            color: var(--text);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: var(--lh);
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            overflow-x: hidden;
        }

        /* ====== Enhanced Layout ====== */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            background: linear-gradient(135deg, var(--panel), var(--panel-hover));
            border-bottom: 1px solid var(--border);
            padding: 40px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, var(--accent-glow), transparent 70%);
            pointer-events: none;
        }

        .main-wrapper {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 50px;
            align-items: start;
        }

        /* ====== Mobile Responsive ====== */
        @media (max-width: 1200px) {
            .main-wrapper {
                grid-template-columns: 300px 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 1024px) {
            .main-wrapper {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .toc-sidebar {
                position: relative !important;
                top: auto !important;
                order: -1;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .header {
                padding: 30px 0;
                margin-bottom: 30px;
            }
        }

        /* ====== Enhanced Typography ====== */
        .header h1 {
            font-size: clamp(32px, 5vw, 52px);
            font-weight: 700;
            line-height: 1.1;
            margin: 0 0 20px;
            background: linear-gradient(135deg, var(--text), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            z-index: 1;
        }

        .header .lead {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--muted);
            font-style: italic;
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        h2 {
            font-size: clamp(24px, 3vw, 32px);
            font-weight: 600;
            margin: 50px 0 20px;
            padding-top: 30px;
            border-top: 2px solid var(--border);
            color: var(--text);
            position: relative;
        }

        h2:first-of-type {
            border-top: none;
            padding-top: 0;
        }

        h3 {
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 600;
            margin: 30px 0 15px;
            color: var(--accent);
        }

        p {
            margin: 0 0 20px;
            color: var(--text);
        }

        /* ====== Enhanced TOC Sidebar ====== */
        .toc-sidebar {
            position: sticky;
            top: 30px;
            height: fit-content;
        }

        .toc-card {
            background: linear-gradient(145deg, var(--panel), var(--panel-hover));
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .toc-card:hover {
            border-color: var(--border-hover);
            box-shadow: var(--shadow-lg);
        }

        .toc-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--accent);
            margin: 0 0 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .toc-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .toc-list li {
            margin: 0;
        }

        .toc-list a {
            display: block;
            padding: 12px 16px;
            margin: 4px 0;
            color: var(--muted);
            text-decoration: none;
            border-radius: var(--radius-sm);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            font-size: 14px;
            line-height: 1.4;
        }

        .toc-list a:hover {
            color: var(--text);
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--border);
            transform: translateX(4px);
        }

        .toc-list a.active {
            color: var(--accent);
            background: var(--accent-glow);
            border-color: var(--accent);
        }

        .toc-list .toc-list {
            margin-left: 20px;
            border-left: 2px solid var(--border);
            padding-left: 16px;
        }

        .toc-list .toc-list a {
            font-size: 13px;
            padding: 8px 12px;
        }

        /* ====== Enhanced Content Area ====== */
        .content-main {
            max-width: none;
        }

        /* ====== Enhanced Links ====== */
        a {
            color: var(--link);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--link-hover);
            text-decoration: underline;
        }

        /* ====== Enhanced Lists ====== */
        ul, ol {
            padding-left: 30px;
            margin: 20px 0;
        }

        li {
            margin: 8px 0;
            color: var(--text);
        }

        li p {
            margin: 8px 0;
        }

        /* ====== Enhanced Blockquotes ====== */
        blockquote {
            background: linear-gradient(135deg, rgba(157, 123, 250, 0.1), rgba(100, 216, 255, 0.1));
            border-left: 4px solid var(--accent-2);
            border-radius: var(--radius-sm);
            padding: 25px 30px;
            margin: 30px 0;
            position: relative;
            overflow: hidden;
        }

        blockquote::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 100% 0%, rgba(157, 123, 250, 0.15), transparent 50%);
            pointer-events: none;
        }

        blockquote p {
            margin: 0;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        /* ====== Enhanced Code Blocks ====== */
        code {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 4px 8px;
            font-family: 'Monaco', 'Menlo', monospace;
            font-size: 0.9em;
            color: var(--accent);
        }

        pre {
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 25px;
            overflow-x: auto;
            margin: 25px 0;
            line-height: 1.5;
        }

        pre code {
            background: none;
            border: none;
            padding: 0;
        }

        /* ====== Enhanced Emphasis ====== */
        strong {
            color: var(--text);
            font-weight: 600;
        }

        em {
            color: var(--muted);
            font-style: italic;
        }

        sub, sup {
            font-size: 0.8em;
        }

        /* ====== Enhanced Horizontal Rule ====== */
        hr {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
            margin: 50px 0;
        }

        /* ====== Back to Top Button ====== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 20px;
            cursor: pointer;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* ====== Print Styles ====== */
        @media print {
            .toc-sidebar,
            .back-to-top {
                display: none;
            }
            
            .main-wrapper {
                grid-template-columns: 1fr;
            }
            
            body {
                background: white;
                color: black;
            }
            
            h1, h2, h3 {
                color: black;
            }
        }

        /* ====== Accessibility Enhancements ====== */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            
            * {
                transition: none !important;
                animation: none !important;
            }
        }

        /* ====== Focus States ====== */
        a:focus,
        button:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        /* ====== Selection Styles ====== */
        ::selection {
            background: var(--accent-glow);
            color: var(--text);
        }

        /* ====== Scrollbar Styles ====== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--panel);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-2);
        }
    </style>.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}
.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading .uagb-heading-text{color: var(--ast-global-color-2);}.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading {padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56 .uagb-heading-text{font-weight: 600;font-size: 18px;letter-spacing: -1px;margin-bottom: 20px;}@media only screen and (max-width: 767px) {.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading {margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-791fdd56 .uagb-heading-text{margin-bottom: 15px;}}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-heading-text{color: var(--ast-global-color-2);}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449 .uagb-heading-text{font-weight: 600;font-size: 18px;letter-spacing: -1px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449 .uagb-desc-text{line-height: 30px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-heading-text{color: var(--ast-global-color-2);}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 15px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-highlight{font-style: normal;font-weight: Default;background: #007cba;color: #fff;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-highlight::selection{color: #fff;background: #007cba;-webkit-text-fill-color: #fff;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449 .uagb-heading-text{font-weight: 600;font-size: 18px;letter-spacing: -1px;margin-bottom: 20px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449 .uagb-desc-text{line-height: 30px;}@media only screen and (max-width: 767px) {.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading {margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449.wp-block-uagb-advanced-heading .uagb-desc-text{margin-bottom: 0px;}.wp-block-uagb-advanced-heading.uagb-block-d0b59449 .uagb-heading-text{margin-bottom: 15px;}}