/* [CSS WHITE PAPER VISUAL] */
        :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;
			
			--cctiks-orange: #F48120;
			--primary: #F48120;
            --primary-orange: #F48120;
			
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
			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 24px;
            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;
        }
		
		
        .page-white-paper-visual {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            background: var(--surface);
            border-radius: 24px;
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }
        .header {
            background: linear-gradient(135deg, #0f0f17, #08080d);
            padding: 2rem;
            border-bottom: 2px solid var(--gold);
            text-align: center;
        }
        .header h1 {
            font-size: 2rem;
            letter-spacing: 4px;
            font-weight: 600;
			color: #0039b3;
        }
        .header h1 span {
            color: var(--gold);
        }
		.header h2 {
            color: #ffffff;
        }
		
        .header-sub {
            font-family: var(--font-mono);
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-top: 0.5rem;
        }
		
		.btn-tax {
            padding: 10px 20px;
			background: #33c57c;
			color: #ffffff;
			text-decoration: none;
			font-weight: bold;
			border-radius: 8px;
			text-shadow: 0 0 2px #000000;
			margin: 0 auto;
			display: inline-block;
        }
		
        .ascii-art {
            background: #050508;
            padding: 2rem;
            overflow-x: auto;
            border-bottom: 1px solid var(--border);
        }
        .ascii-art pre {
            font-family: var(--font-mono);
            font-size: 0.7rem;
            line-height: 1.4;
            color: #68cd51;
            margin: 0;
            white-space: pre;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 1px;
            background: var(--border);
        }
        .report-card {
            background: var(--surface);
            padding: 1.5rem;
            transition: all 0.2s ease;
        }
        .report-card:hover {
            background: var(--surface-light);
            border: 1px solid var(--gold);
        }
        .report-title {
            font-family: var(--font-mono);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            border-bottom: 1px solid var(--border);
            padding: 6px 8px 5px 8px;
			border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .report-card:hover .report-title { 
            background: orange;
            padding: 6px 8px 5px 8px;
            border-radius: 10px;
            color: #ffffff;
			text-shadow: 0 0 5px black;
        }
        .report-title i {
            font-size: 1rem;
        }
        .report-content {
            font-family: var(--font-mono);
            font-size: 0.75rem;
            line-height: 1.8;
            color: var(--text-secondary);
        }
        .report-content .value {
            color: var(--gold);
            font-weight: 600;
        }
        .report-content .disabled {
            color: #ff5353;
        }
		.report-content .eli {
            color: #ffbe48;
        }
        .report-content .enabled {
            color: #7effd4;
        }
        .grid-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }
        .stat-line {
            display: flex;
            justify-content: space-between;
            padding: 0.4rem 0;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.05);
        }
        .ascii-block {
            background: #030305;
            padding: 1rem;
            border-radius: 12px;
            margin-top: 1rem;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            white-space: pre;
            overflow-x: auto;
            color: #68cd51;
        }
        footer {
            background: #050508;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid var(--border);
            font-family: var(--font-mono);
            font-size: 0.7rem;
            color: var(--text-secondary);
        }
        footer a {
            color: #9f732a;
            text-decoration: none;
        }
        footer a:hover {
			color:var(--gold);
            text-decoration: underline;
        }
        .signature {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
            font-size: 0.7rem;
        }
		i.fas.fa-external-link-alt{
            color: #0040ff;
			font-size: 14px;
        }
		i.fas.fa-external-link-alt:hover{
            color: white;
			transform: scale(1.5);
		}
		i.fas.fa-external-link-alt:active, i.fas.fa-external-link-alt:focus{
            color: #0039b3;
        }
		
		/* --- CONSTELLATION LIFE --- */
	.constellation {
      width: 100%;
      max-width: 66%;
      height: 100px;
      position: relative;
      background: #020804;
      border-radius: 8px;
      overflow: hidden;
      box-shadow:
        0 0 6px rgba(0, 255, 60, 0.2),
        inset 0 0 4px rgba(0, 0, 0, 0.9);
      border: 2px solid #1a3a1a;
	  margin: 0 auto;
	  cursor: pointer;
    }

    .constellation::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 255, 60, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 60, 0.08) 1px, transparent 1px);
      background-size: 20px 20px;
      z-index: 1;
      pointer-events: none;
    }

    .constellation::after {
      content: "";
      position: absolute;
      top: 65%;
      left: 0;
      right: 0;
      height: 1px;
      background: #3a65c1;
      z-index: 1;
      pointer-events: none;
	  transform: rotate(-0.3deg);
    }

    canvas {
      display: block;
      width: 100%;
      height: 100px;
      position: relative;
      z-index: 2;
	  top: 12px;
    }
	.container .constellation canvas {
      cursor: pointer;
    }
	.container .constellation {
      margin: 0px auto 20px auto;
    }


    .monitor-info {
      position: absolute;
      top: 5px;
      left: 12px;
      z-index: 3;
      color: #00ff41;
      font-size: 0.6rem;
      font-family: 'Courier New', monospace;
      opacity: 0.7;
      pointer-events: none;
      letter-spacing: 1px;
    }
	
	.monitor-info em {
      color: #fff;
	  font-style: normal;
      font-weight: bold;
      font-family: sans-serif;
    }

    .monitor-info-right {
      position: absolute;
      top: 5px;
      right: 20px;
      z-index: 3;
      color: #00ff41;
      font-size: 0.6rem;
      font-family: 'Courier New', monospace;
      opacity: 0.7;
      pointer-events: none;
      letter-spacing: 1px;
      text-align: right;
    }

    .led {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 8px;
      height: 8px;
      background: #ffd700;
      border-radius: 50%;
      z-index: 4;
      animation: ledBlink 1s step-end infinite;
      box-shadow: 0 0 6px #ff3300;
    }

    @keyframes ledBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.15; }
    }

    .constellation-label {
      position: fixed;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      color: #00ff41;
      font-size: 0.7rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-family: 'Courier New', monospace;
      background: rgba(0, 10, 0, 0.8);
      padding: 0.4rem 1.8rem;
      border-radius: 4px;
      border: 1px solid #1a3a1a;
      opacity: 0.8;
    }

    @media (max-width: 640px) {
      .constellation {
        max-width: 95vw;
        height: 80px;
      }
    }
		
		/* --- 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);
        }
		
        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        .live-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #0052ff;
            border-radius: 50%;
            animation: pulse 1s infinite;
        }
		
		/* --- 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 .content-grid { background: #ffffff !important;}
		body.white .header {
		background: linear-gradient(135deg, #005589, #85bafd) !important;
		}
		body.white .ascii-art  {
		background: #ffffff !important;
		}
		body.white .ascii-art pre {
		background: #ffffff !important;
		color: #187f00 !important;
		}
		
		body.white .report-card {
		background: #f3fbff !important;
		}
		body.white .report-content { color: #000000 !important;}
		
		body.white .report-content .value { color: #a78d00 !important;}
		body.white .stat-line { border-bottom: 1px dotted rgb(183 183 183) !important;}
		body.white .report-card:hover {border:1px solid #00057d !important; background: #c1ddeb !important;}
		body.white .report-card:hover .report-title { background: linear-gradient(135deg, #005589, #85bafd) !important;}
		
		body.white .report-title { background: #003181 !important;}
		
		body.white .ascii-block { background: #dbdbdb !important; color: #187f00 !important;}
		body.white .report-content .enabled { color: #278767 !important;}
		body.white .report-content .value { color: #0040ff !important;}
		body.white i.fas.fa-external-link-alt { color: #b59900 !important;	}
		body.white ::-webkit-scrollbar-track { background: #ffffff !important;}
		body.white ::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #000000, #000000, #1da1f2, #1877f2, #004399, #000000, #000000) !important;}
		body.white footer { background: linear-gradient(135deg, #85bafd, #005589); color: #ffffff !important;}
		body.white footer pre { color: #ffe65f !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;
		}
      
      /* Masquer les métadonnées iXBRL (header, contexts, units) */
		ix\:header /*, ix|header*/ {display:none;}
		
		/* responsive */
		@media (max-width: 800px) {.mobile-nav {width: 275px;}}
		@media (max-width: 768px) {body { padding: 1rem; }.content-grid { grid-template-columns: 1fr; }.ascii-art pre { font-size: 0.55rem; }a.btnback { font-size: 0.9rem; }.header h1 { font-size: 1.2rem; }.header img { width: 40px !important; }.report-card { min-width: 100%; }footer pre { font-size:0.5rem !important; }.signature { font-size: 0.7; }#back-to-top { right: 60px; }}
		@media (max-width: 600px) {.mobile-nav {width: 250px;}.taxonomy-actions {display:block !important;}.btn-tax{display:block !important; margin:12px auto; padding: 2px 2px;}}
		@media (max-width: 520px) {.wallet-section {display:none;}}
		@media (max-width: 480px) {.mobile-nav {width: 225px;}}