/* Additional styles for whitepaper - these complement your existing styles */
        
        /* Typography for whitepaper */
        .whitepaper-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px 80px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .whitepaper-container h1 {
            font-size: 40px;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .whitepaper-container h2 {
            font-size: 32px;
            margin-top: 50px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        
        .whitepaper-container h3 {
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
            color: var(--light);
        }
        
        .whitepaper-container p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        
        /* Table of contents */
        .toc {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            padding: 25px 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin: 40px 0;
        }
        
        .toc h3 {
            margin-top: 0;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }
        
        .toc ul {
            list-style-type: none;
            padding-left: 0;
        }
        
        .toc li {
            margin-bottom: 10px;
        }
        
        .toc a {
            color: var(--light);
            text-decoration: none;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
        }
        
        .toc a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        
        .toc .page-number {
            color: var(--primary);
            opacity: 0.7;
        }
        
        /* Figures and diagrams */
        .figure {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
        }
        
        .figure img {
            max-width: 100%;
            margin-bottom: 15px;
        }
        
        .figure-caption {
            font-style: italic;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
        }
        
        /* Code blocks */
        pre {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            padding: 20px;
            overflow-x: auto;
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin: 20px 0;
        }
        
        code {
            font-family: 'Fira Code', monospace;
            font-size: 14px;
            color: var(--light);
        }
        
        /* Tables */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            overflow: hidden;
        }
        
        th, td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        th {
            background: rgba(255, 255, 255, 0.05);
            color: var(--primary);
            font-weight: 600;
        }
        
        tr:last-child td {
            border-bottom: none;
        }
        
        /* Blockquotes */
        blockquote {
            border-left: 3px solid var(--primary);
            padding: 20px 30px;
            margin: 30px 0;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 0 10px 10px 0;
            font-style: italic;
        }
        
        blockquote p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Formulas and mathematical notations */
        .formula {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            margin: 30px 0;
            font-family: 'Cambria Math', Georgia, serif;
            font-size: 20px;
        }
        
        /* References and citations */
        .references {
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
        }
        
        .references h2 {
            margin-top: 0;
        }
        
        .reference-item {
            margin-bottom: 15px;
            font-size: 15px;
            padding-left: 25px;
            position: relative;
        }
        
        .reference-item::before {
            content: "[" attr(data-ref) "]";
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        
        /* Document meta info */
        .document-meta {
            text-align: center;
            margin-bottom: 40px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .document-meta .version {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 10px;
            font-weight: 600;
        }
        
        /* Abstract */
        .abstract {
            font-style: italic;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.02);
            margin: 30px 0;
        }
        
        .abstract h3 {
            text-align: center;
            margin-top: 0;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        /* Executive summary */
        .executive-summary {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            border-left: 3px solid var(--secondary);
        }
        
        .executive-summary h3 {
            margin-top: 0;
            color: var(--secondary);
        }
        
        /* Print styles */
        @media print {
            body {
                background: white;
                color: black;
            }
            
            .whitepaper-container {
                color: black;
                padding: 0;
            }
            
            .toc, .figure, table, blockquote, .formula, .abstract, .executive-summary {
                background: none;
                border: 1px solid #eee;
            }
            
            .whitepaper-container h2 {
                background: none;
                -webkit-text-fill-color: initial;
                color: #5d2cf2;
            }
            
            header, footer, nav {
                display: none;
            }
        }
        
        /* Section decorations */
        .section-decoration {
            text-align: center;
            margin: 60px 0;
            opacity: 0.3;
            font-size: 30px;
        }
        
        /* Download button */
        .download-button {
            display: inline-block;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin: 40px 0;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(93, 44, 242, 0.3);
        }
        
        .download-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(93, 44, 242, 0.5);
        }
        
        .download-button i {
            margin-right: 10px;
        }
        
        /* Document header with logo */
        .document-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .document-logo {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            font-weight: bold;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(247, 71, 105, 0.3);
        }