/* [CSS WHITE PAPER PDF] */
		:root {
            --onyx: #080808;
            --surface: #0f0f13;
            --surface-light: #1a1a22;
            --surface-hover: #252530;
            --gold: #ffd700;
            --gold-glow: rgba(255, 215, 0, 0.3);
            --blue-base: #0052ff;
            --blue-glow: rgba(0, 82, 255, 0.3);
            --blue-deep: #0039b3;
            --text-primary: #ffffff;
            --text-secondary: #a0a3b1;
            --text-tertiary: #6b6f7c;
            --border: #2a2c33;
            --border-light: #353740;
            --success: #00c853;
            --warning: #ffb300;
            --error: #ff3b30;
            --uniswap-pink: #FF007A;
            --facebook-blue: #1877f2;
            --twitter-blue: #1DA1F2;
            --transition-fast: 0.2s ease;
            
            --gradient-gold: linear-gradient(135deg, #ffd700, #ffaa00);
            --gradient-blue: linear-gradient(135deg, #0052ff, #627eea);
            --gradient-surface: linear-gradient(145deg, var(--surface), #0a0a0f);
            
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
            --shadow-gold: 0 0 30px var(--gold-glow);
            --shadow-blue: 0 0 30px var(--blue-glow);
            
            --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
            
            --font-mono: 'Space Mono', monospace;
            --font-sans: 'Inter', sans-serif;
			
			--primary: #F48120;
            --primary-orange: #F48120;
        }
		
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
			cursor: default;
        }
        
		a, button, .tab-link, .mobile-menu-btn, .mobile-nav-close, .white-toggle, .screen-toggle, #back-to-top, .copy-btn, .faq-item {
            cursor: pointer;
        }
		
        body {
            background-color: var(--onyx);
            color: #000000;
            font-family: var(--font-sans);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
		
		 /* --- MAIN CONTENT --- */
        .app {
            position: relative;
            z-index: 10;
            min-height: 100vh;
			margin-top: 100px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0;
            width: 100%;
        }
		
        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 0 20px 0px;
            z-index: 100;
            background: rgba(8, 8, 8, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            transition: all var(--transition-smooth);
        }

        header.scrolled {
            padding: 12px 0;
            background: rgba(8, 8, 8, 0.95);
            border-bottom-color: rgba(255, 215, 0, 0.2);
            box-shadow: var(--shadow-md);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #999999, #f9f9f9);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--onyx);
            box-shadow: 0 0 10px #7f7f7f;
            transform: rotate(0deg);
            transition: transform var(--transition-bounce);
        }

        .logo:hover .logo-icon {
            transform: rotate(360deg);
        }

        .logo-text {
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: 1px;
			color: var(--blue-deep);
        }

        .logo-text span {
            color: var(--gold);
            text-shadow: 0 0 10px var(--gold-glow);
        }
		a.logo:active:focus:hover {color:var(--blue-deep);}
		a.logo:active .logo-text, a.logo:focus .logo-text, a.logo:hover .logo-text {color:var(--blue-deep);}

        .desktop-nav {
            display: flex;
            gap: 8px;
        }
		.network-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(0, 82, 255, 0.1);
            border: 1px solid rgba(0, 82, 255, 0.2);
            border-radius: var(--radius-full);
            color: var(--text-secondary);
            font-size: 0.65rem;
        }

        .network-dot {
            width: 8px;
            height: 8px;
            background: var(--blue-base);
            border-radius: 50%;
            box-shadow: 0 0 2px var(--blue-base);
            animation: pulse 2.2s infinite;
        }
		
		.nav-menu {
			margin:-12px 0px 30px -18px;
        }
		.nav-menu li {
			display: unset;
        }
		
		.mobile-menu-btn {
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            background: var(--surface);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
			display: flex;
        }
		.mobile-menu-btn i {
			color: #20b7f4;
			animation: numberPop 5s var(--transition-bounce) infinite;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: var(--surface);
            z-index: 1000;
            padding: 100px 24px 40px;
            flex-direction: column;
            gap: 16px;
            transition: right var(--transition-smooth);
            border-left: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(16px);
        }

        .mobile-nav.active {
            right: 0;
            display: flex;
        }

        .mobile-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid #a0a3b1;
            transition: color var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-nav a:hover {color: #ffffff; border-bottom: 1px solid #31709b;}
        .mobile-nav a.active {color: #ff6600; border-bottom: 1px solid #31709b;}
		
		.mobile-nav a i {color: #ffef99;}
		.mobile-nav a:hover i {color: #ffd700;}
		.mobile-nav a.active i {color: #5da9dd;}

        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 1.5rem;
            color: #0f0f13;
            cursor: pointer;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #20b7f4;
        }
		.mobile-nav-close:hover,
		.mobile-nav-close:active {
            color: #20b7f4;
            background: #0f0f13;
			border: 2px solid #ffffff;
        }
		
		/* Zone défilante du menu */
        .menu-scroll {
            flex: 1;
            overflow-y: auto;
        }

        .menu-scroll::-webkit-scrollbar {
            width: 6px;
        }

        .menu-scroll::-webkit-scrollbar-track {
            background:  #0a0a0f;
            border-radius: 10px;
        }

        .menu-scroll::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #000000, #000000, #ffaa00, #ffd700, #ffaa00, #000000, #000000);
            border-radius: 25px;
        }

        .menu-scroll::-webkit-scrollbar-thumb:hover {
            background: #a79845;
        }
        
        #white-paper-cctiks, .page-white-paper-pdf {
            max-width: 1200px;
            width: 100%;
            background: white;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            border-radius: 24px;
            padding: 2.5rem 3rem;
            position: relative;
			color: #000000;
	

            font-family: 'Times New Roman', Georgia, serif;
            margin: 0 auto;

			cursor: default;
        }
        
        /* Toolbars PDF */
        .pdf-toolbar {
            justify-content: space-between;
            margin-top: 2rem;
            z-index: 100;
            gap: 1rem;
            flex-wrap: wrap;
			text-align: center;
        }
        
        .download-pdf-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1e3a5f;
            color: white;
            font-family: 'Segoe UI', 'Helvetica', Arial, sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            padding: 0.7rem 1.8rem;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            letter-spacing: 0.5px;
        }
        
        .download-pdf-btn:hover {
            background: #0f2b44;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .btnback {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #2c3e50;
            color: white;
            font-family: 'Segoe UI', 'Helvetica', Arial, sans-serif;
            font-size: 1.05rem;
            font-weight: 500;
            padding: 6px 22px 6px 12px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
            cursor: pointer;
            border: 1px solid white;
			position: relative;
			left: 9px;
			top: -6px;
		}
		
        .btnback:hover {
            background: #0f2b44;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
		
        .btnback:active {
            transform: scale(0.98);
        }
        
        /* typo */
        .whitepaper {
            max-width: 100%;
            background: white;
        }
        
		h1 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #c9a959;
            padding-bottom: 0.6rem;
            color: #1e3a5f;
        }
		
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-top: 2rem;
            margin-bottom: 1.5rem;
            border-bottom: 2px solid #c9a959;
            padding-bottom: 0.6rem;
            color: #1e3a5f;
        }
        
        h3 {
            font-size: 1.6rem;
            font-weight: 500;
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-bottom: 1px solid #0052ff;
            padding-bottom: 0.4rem;
            color: #2c3e50;
			max-width: 100%;
        }
        
        h4 {
            font-size: 1.3rem;
            font-weight: 500;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            color: #3a5a7a;
        }
        
        .header-meta {
            text-align: center;
            font-size: 0.9rem;
            background: #f8f9fc;
            padding: 1rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-family: 'Courier New', monospace;
            color: #2c3e50;
            border: 1px solid #e9ecef;
        }
        
        /* table of contents */
        .toc {
            background: #fafbfd;
            padding: 2rem;
            border-left: 6px solid #c9a959;
            margin: 2rem 0;
            border-radius: 0 16px 16px 0;
        }
        
        .toc ul {
            column-gap: 2rem;
            list-style: none;
            padding-left: 0;
        }
        
        .toc li {
            margin-bottom: 1.5rem;
            break-inside: avoid;
            position: relative;
            padding-left: 1.2rem;
        }
        
        .toc li::before {
            content: "▹";
            position: absolute;
            left: 0;
            color: #c9a959;
        }
        
        .toc strong {
            color: #1e3a5f;
            font-size: 1rem;
        }
        
        /* table */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.8rem 0;
            font-size: 0.9rem;
            background: white;
            border: 1px solid #dee2e6;
        }
        
        th {
            background: #f1f3f5;
            font-weight: 600;
            padding: 0.8rem;
            border: 1px solid #dee2e6;
            text-align: center;
        }
        
        td {
            padding: 0.7rem;
            border: 1px solid #dee2e6;
        }
        
        .box-highlight {
            background: #f8f3e8;
            border-left: 5px solid #c9a959;
            padding: 1.2rem 2rem;
            margin: 1.5rem 0;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            border-radius: 0 12px 12px 0;
        }
        
        .signature-block {
            margin: 3rem 0 1.5rem;
            padding: 2rem;
            background: #faf5e8;
            border-radius: 16px;
            font-style: italic;
            border: 1px solid #e9d5a7;
            text-align: center;
        }
        
        .legal-footer {
            font-size: 0.75rem;
            color: #6c757d;
            border-top: 1px solid #dee2e6;
            margin-top: 3rem;
            padding-top: 1.5rem;
            text-align: center;
        }
        
        .badge {
            display: inline-block;
            background: #1e3a5f;
            color: white;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-family: monospace;
        }
        
        .pill-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin: 1rem 0;
        }
        
        .pill {
            background: #e9ecef;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-family: monospace;
            color: #ef4444;
            font-weight: 500;
			border: 1px solid #ef4444;
        }
		
		.pill2 {
            background: #e9ecef;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-family: monospace;
            color: #10b981;
            font-weight: 500;
			border: 1px solid #10b981;
        }
		
		.pill3 {
            background: #e9ecef;
            padding: 0.4rem 1.2rem;
            border-radius: 30px;
            font-size: 0.85rem;
            font-family: monospace;
            color: #ff6000;
            font-weight: 500;
			border: 1px solid #ff6000;
        }
        
        pre {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 8px;
            overflow-x: auto;
            font-size: 0.8rem;
            font-family: 'Courier New', monospace;
            border: 1px solid #e9ecef;
			max-width: 100%;
        }
        
        hr {
            margin: 2rem 0;
            border: none;
            border-top: 1px solid #dee2e6;
        }
        
        .small-caps {
            font-variant: small-caps;
        }
        
        .disabled {
            color: #dc3545;
            font-weight: bold;
        }
		
		.mini-table {
			width: 65%;
			margin: 0;
			text-align: center;
			margin-top: 6px;
        }
		.mini-table caption{
			caption-side: bottom;
			margin-top: 4px;
        }
		.mini-table th, .mini-table td {
			padding: 1px;
        }
		
		/* --- PROGRESS BAR --- */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            z-index: 1001;
            background: transparent;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-gold);
            width: 0%;
            transition: width 0.1s ease;
            box-shadow: 0 0 20px var(--gold);
        }
		
		/* --- BACK TO TOP --- */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-smooth);
            font-size: 1.3rem;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-md);
        }

        #back-to-top.visible {
            opacity: 0.5;
            visibility: visible;
			background: rgb(0 0 0 / 0%);
			animation: pulse 8s var(--transition-bounce) infinite;
        }

        #back-to-top:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 2px 10px 3px var(--gold-glow);
			opacity: 1;
			background: var(--surface);
        }
		
		/* --- SCROLLBAR --- */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--onyx);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #000000, #000000, #ffaa00, #ffd700, #ffaa00, #000000, #000000);
            border-radius: var(--radius-full);
            border: 2px solid var(--onyx);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
		
		/* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        [data-aos] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }

        [data-aos].visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.1);box-shadow: 0 0 6px var(--blue-base); }
        }

        @keyframes numberPop {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(0.9); opacity: 0.3; }
            100% { transform: scale(1); opacity: 1; }
        }

        .value-updated {
            animation: numberPop 2.2s var(--transition-bounce) infinite;
			background-color: unset;
			color: var(--gold);
        }
		
		/* Style du bouton white toggle */
        .white-toggle {
            position: fixed;
            top: 27px;
            left: 20px;
            padding: 6px 6px 5px 6px;
            font-size: 16px;
            border: none;
            border-radius: 50%;
            background: #5d5d5d;
            color: #ffea7f;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 1000;
        }

        .white-toggle:hover {
            transform: scale(1.1);
        }

        body.white .white-toggle {
            background: #5d5d5d;
            color: #ffea7f;
        }
		/* =============================================
           WHITE MODE (active add class body.white)
           ============================================= */
        body.white {
            background-color: #f0f2f5 !important;
        }
        body.white header {
            background: rgba(255, 255, 255, 0.9) !important;
            border-bottom: 1px solid rgba(0,0,0,0.1) !important;
            backdrop-filter: blur(10px);
        }
        body.white header.scrolled {
            background: rgba(255,255,255,0.95) !important;
            border-bottom-color: rgba(0,0,0,0.2) !important;
        }
        body.white .logo-text {
            color: #0039b3 !important;
        }
        body.white .logo-icon {
            background: linear-gradient(135deg, #cccccc, #ffffff) !important;
            color: #000 !important;
			box-shadow: 0 0 5px #7f7f7f !important;
        }
        body.white .network-badge {
            background: rgb(0 147 255 / 16%) !important;
            border-color: rgb(0 71 209 / 66%) !important;
            color: #0343cb !important;
        }
        body.white .mobile-menu-btn {
            background: #ffffff !important;
            border: 1px solid #ccc !important;
            color: #333 !important;
        }
        body.white .mobile-menu-btn i {
            color: #0052ff !important;
        }
        body.white .mobile-nav {
            background: #f2f8ff !important;
            border-left: 1px solid #999999 !important;
        }
        body.white .mobile-nav a {
            color: #333 !important;
            border-bottom-color: #ccc !important;
        }
        body.white .mobile-nav a:hover {
            color: #000 !important;
            background: rgba(0,0,0,0.05) !important;
        }
		body.white .mobile-nav a i {
            color: #009f42 !important;
        }
        body.white .mobile-nav-close {
            background: #0052ff !important;
            color: #ffffff !important;
        }
        body.white .page-channel {
            background: rgba(255,255,255,0.98) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        }
		
		/* Style du bouton screen toggle */
		.screen-toggle {
			position: fixed;
			top: 27px;
			left: 70px;              /* à droite du white-toggle */
			padding: 6px 6px 5px 6px;
			font-size: 16px;
			border: none;
			border-radius: 50%;
			background: #5d5d5d;
			color: #ffea7f;
			cursor: pointer;
			transition: all 0.3s;
			z-index: 1000;
		}
		.screen-toggle:hover {
			transform: scale(1.1);
		}
		body.white .screen-toggle {
			background: #5d5d5d;
			color: #ffea7f;
		}
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            .whitepaper-container {
                box-shadow: none;
                padding: 0;
                max-width: 100% !important;
				width: 100% !important;
            }
            .pdf-toolbar, .btnback, .download-pdf-btn, #mobileNav {
                display: none;
            }
            .toc {
                break-inside: avoid;
            }
            h1, h2, h3, h4 {
                break-after: avoid;
            }
            table, pre, .box-highlight {
                break-inside: avoid;
            }
			.whitepaper {
            max-width: 100% !important;
			}
			pre {
            font-size: 0.6em;
			}
			
        }
		
		/* responsive */
        @media (max-width: 800px) {.mobile-nav {width: 275px;}}
        @media (max-width: 768px) {.toc ul { columns: 1; }#back-to-top { right: 60px;}}
		@media (max-width: 600px) {.mobile-nav {width: 250px;}.miniwp{font-size: 12px;}}
		@media (max-width: 520px) {.wallet-section {display:none;}}
		@media (max-width: 480px) {.mobile-nav {width: 225px;}}