/* [CSS DESIGN CONSTELLATION] */
	: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;
	}

	* {
		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;
	}

	html {
		scroll-behavior: smooth;
		scroll-padding-top: 80px;
	}

	body {
		background-color: #010010;
		color: var(--text-primary);
		font-family: var(--font-sans);
		overflow-x: hidden;
		line-height: 1.6;
		-webkit-font-smoothing: antialiased;
	}

	/* --- WEBGL CANVAS --- */
	#canvas-container {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
		pointer-events: none;
		opacity: 0.8;
		animation: anicanevas 30s ease infinite;
	}

	/* --- MAIN CONTENT --- */
	.app {
		position: relative;
		z-index: 10;
		min-height: 100vh;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2px;
		width: 100%;
	}
	
	/* --- LOADER --- */
	.loader {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color:black;
		z-index: 10000;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: opacity 0.5s;
	}

	.loader.hidden {
		opacity: 0;
		pointer-events: none;
	}

	.loader-content {
		text-align: center;
	}

	.loader-icon {
		width: 80px;
		height: 80px;
		border: 3px solid var(--border);
		border-radius: 44%;
		animation: spin 1s linear infinite;
		margin: 20px auto 20px;
		box-shadow: 0px 0px 5px orange, 0px 0px 5px blue inset;
		font-size: 8px;
	}

	.loader-text {
		color: white;
		font-size: 1rem;
		letter-spacing: 2px;
	}

	@keyframes spin {
		to { transform: rotate(360deg); }
	}
	
	/* --- 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-icon span {
		transform: rotate(-45deg);
		position:relative;
		top:-1px;
	}

	.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; }
	
	.desktop-nav li { list-style:none; }

	.nav-link {
		color: var(--text-secondary);
		text-decoration: none;
		padding: 10px 18px;
		font-size: 0.95rem;
		font-weight: 500;
		transition: all var(--transition-smooth);
		/* border-radius: var(--radius-full); */
		border-radius: 6px 6px 20px 20px;
		position: relative;
	}

	.nav-link:hover {
		color: var(--text-primary);
		background: rgba(255, 215, 0, 0.1);
	}

	.nav-link.active {
		color: var(--gold);
		background: rgba(255, 215, 0, 0.15);
	}

	.nav-link.active::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 25%;
		width: 50%;
		height: 2px;
		background: var(--gold);
		border-radius: var(--radius-full);
		box-shadow: 0 0 10px var(--gold);
	}

	.wallet-section {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.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;
	}

	.btn-connect {
		padding: 10px 20px;
		background: var(--gradient-blue);
		border: none;
		border-radius: var(--radius-full);
		color: white;
		font-weight: 600;
		font-size: 0.9rem;
		cursor: pointer;
		transition: all var(--transition-smooth);
		box-shadow: 0 4px 15px var(--blue-glow);
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.btn-connect:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 25px var(--blue-glow);
	}

	.wallet-info {
		display: flex;
		align-items: center;
		gap: 8px;
		padding: 6px 12px 6px 16px;
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-full);
		color: var(--text-primary);
		font-size: 0.9rem;
		font-family: var(--font-mono);
	}

	.wallet-avatar {
		width: 24px;
		height: 24px;
		background: var(--gradient-gold);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.7rem;
		color: var(--onyx);
		font-weight: 700;
	}
	
	.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;
	}

	/* --- 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);
	}
	

	/* --- HERO SECTION --- */
	.hero {
		min-height: 100vh;
		display: flex;
		align-items: center;
		padding: 0px 0px;
		position: relative;
		margin-top:50px;
		cursor: default;
		margin-bottom:300px;
		margin-top: 120px;
	}

	.hero-content {
		max-width: 900px;
	}

	.hero-badge {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		background: rgba(255, 215, 0, 0.1);
		border: 1px solid rgba(255, 215, 0, 0.2);
		border-radius: var(--radius-full);
		padding: 8px 20px;
		margin-bottom: 32px;
		color: var(--gold);
		font-size: 0.9rem;
		font-weight: 500;
		backdrop-filter: blur(10px);
	}

	.hero-badge i {
		font-size: 1rem;
	}

	h1 {
		font-size: clamp(3rem, 8vw, 5.5rem);
		font-weight: 800;
		line-height: 1.0;
		margin-bottom: 24px;
		letter-spacing: -0.02em;
	}

	.h1-gradient {
		background: linear-gradient(135deg, var(--gold), #ffffff, var(--blue-base));
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		background-size: 200% 200%;
		animation: gradientShift 8s ease infinite;
	}

	@keyframes gradientShift {
		0%, 100% { background-position: 0% 50%; }
		50% { background-position: 100% 50%; }
	}

	.hero-description {
		font-size: 1.3rem;
		color: var(--text-secondary);
		max-width: 700px;
		margin-bottom: 48px;
		line-height: 1.6;
	}

	.hero-stats {
		display: flex;
		gap: 48px;
		margin-bottom: 48px;
		flex-wrap: wrap;
	}

	.hero-stat-item {
		text-align: left;
		position: relative;
	}

	.hero-stat-item::after {
		content: '';
		position: absolute;
		right: -24px;
		top: 10%;
		height: 80%;
		width: 1px;
		background: var(--border);
	}

	.hero-stat-item:last-child::after {
		display: none;
	}

	.hero-stat-value {
		font-family: var(--font-mono);
		font-size: 2.2rem;
		font-weight: 700;
		color: var(--gold);
		margin-bottom: 4px;
		text-shadow: 0 0 4px var(--gold-glow);
	}

	.hero-stat-label {
		font-size: 0.9rem;
		color: var(--text-tertiary);
		text-transform: uppercase;
		letter-spacing: 1px;
	}

	.hero-actions {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
	}

	.btn {
		padding: 16px 32px;
		border-radius: var(--radius-full);
		font-size: 1rem;
		font-weight: 600;
		text-decoration: none;
		transition: all var(--transition-smooth);
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		border: none;
		cursor: pointer;
		position: relative;
		overflow: hidden;
	}

	.btn::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0;
		height: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.2);
		transform: translate(-50%, -50%);
		transition: width 0.6s, height 0.6s;
	}

	.btn:hover::before {
		width: 300px;
		height: 300px;
	}

	.btn-gold {
		background: var(--gradient-gold);
		color: var(--onyx);
		box-shadow: 0 2px 6px var(--gold-glow);
		font-weight: 700;
	}

	.btn-gold:hover {
		transform: translateY(-3px) scale(1.02);
		box-shadow: 0 2px 10px 3px var(--gold-glow);
	}

	.btn-outline {
		background: transparent;
		border: 1px solid var(--border);
		color: var(--text-primary);
		backdrop-filter: blur(10px);
	}

	.btn-outline:hover {
		border-color: var(--gold);
		color: var(--gold);
		transform: translateY(-3px);
		box-shadow: 0 2px 10px 3px var(--gold-glow);
	}

	.btn-large {
		padding: 18px 40px;
		font-size: 1.1rem;
	}

	/* --- SECTION HEADER --- */
	.section-header {
		text-align: center;
		margin-bottom: 60px;
	}

	.section-subtitle {
		color: var(--gold);
		font-size: 0.9rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 2px;
		margin-bottom: 12px;
		display: inline-block;
		padding: 8px 40px;
		background: rgba(255, 215, 0, 0.1);
		/* border-radius: var(--radius-full); */
		border-radius: 12px 12px 40px 40px;
		border: 1px solid rgba(255, 215, 0, 0.2);
	}

	.section-title {
		font-size: clamp(2.2rem, 5vw, 3.2rem);
		font-weight: 700;
		color: var(--text-primary);
		margin-bottom: 20px;
	}

	.section-description {
		color: var(--text-secondary);
		font-size: 1.1rem;
		max-width: 800px;
		margin: 0 auto;
	}
	/* --- LIVE DATA TICKER --- */
	 .live-ticker {
		background: var(--surface);
		border-top: 1px solid var(--border);
		border-bottom: 1px solid var(--border);
		padding: 12px 0;
		margin: 85px 0px -85px 0px;
		overflow: hidden;
		white-space: nowrap;
	}

	.ticker-content {
		display: inline-block;
		animation: tickerscroll 66s linear infinite;
		white-space: nowrap;
	}

	.ticker-item {
		display: inline-flex;
		align-items: center;
		gap: 24px;
		padding: 0 24px;
		font-family: var(--font-mono);
		color: var(--text-secondary);
		border-right: 1px solid var(--border);
	}

	.ticker-item i {
		color: var(--success);
		font-size: 0.8rem;
	}

	.ticker-item span {
		color: var(--primary);
		font-weight: 600;
		margin-left: 4px;
	}

	@keyframes tickerscroll {
		0% { transform: translateX(0); }
		100% { transform: translateX(-50%); }
	}

	/* --- SYSTEM GRID --- */
	.system-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 24px;
		margin-bottom: 80px;
	}

	.card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		cursor: pointer;
		position: relative;
		overflow: hidden;
		backdrop-filter: blur(10px);
	}

	.card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--gradient-gold);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.card:hover {
		transform: translateY(-8px);
		border-color: var(--gold);
		box-shadow: 0 2px 10px 3px var(--gold-glow);
	}

	.card:hover::before {
		transform: scaleX(1);
	}

	.card-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 20px;
	}

	.card-icon {
		width: 48px;
		height: 48px;
		background: rgba(255, 215, 0, 0.1);
		border-radius: var(--radius-md);
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--gold);
		font-size: 1.4rem;
		border: 1px solid rgba(255, 215, 0, 0.2);
	}

	.card-badge {
		padding: 4px 12px;
		background: var(--surface-light);
		border-radius: var(--radius-full);
		font-size: 0.7rem;
		color: var(--text-secondary);
		font-family: var(--font-mono);
		border: 1px solid var(--border);
	}

	.card-label {
		font-size: 0.9rem;
		color: var(--text-secondary);
		margin-bottom: 8px;
	}

	.card-value {
		font-family: var(--font-mono);
		font-size: 2rem;
		font-weight: 700;
		color: var(--gold);
		margin-bottom: 20px;
		text-shadow: 0 0 4px var(--gold-glow);
	}

	.card-progress {
		width: 100%;
		height: 6px;
		background: var(--border);
		border-radius: var(--radius-full);
		overflow: hidden;
		margin-bottom: 20px;
	}

	.progress-fill {
		height: 100%;
		background: var(--gradient-gold);
		border-radius: var(--radius-full);
		transition: width 0.3s ease;
	}

	.card-footer {
		display: flex;
		justify-content: space-between;
		color: var(--text-tertiary);
		font-size: 0.8rem;
		font-family: var(--font-mono);
		padding-top: 16px;
		border-top: 1px solid var(--border);
	}

	/* --- TAX GRID --- */
	.tax-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 24px;
		margin-bottom: 60px;
	}

	.tax-card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		overflow: hidden;
	}
	
	.tax-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--gradient-gold);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.tax-card:hover {
		border-color: var(--gold);
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px var(--gold-glow);
	}
	
	.tax-card:hover::before {
		transform: scaleX(1);
	}

	.tax-card h3 {
		font-size: 1.3rem;
		font-weight: 700;
		color: var(--text-primary);
		margin-bottom: 24px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.tax-item {
		display: flex;
		justify-content: space-between;
		padding: 12px 0;
		border-bottom: 1px solid var(--border);
		font-size: 1rem;
	}

	.tax-item:last-child {
		border-bottom: none;
	}

	.tax-label {
		color: var(--text-secondary);
	}

	.tax-value {
		font-family: var(--font-mono);
		color: var(--gold);
		font-weight: 600;
	}

	.ratio-badge {
		display: inline-block;
		padding: 8px 20px;
		background: rgba(255, 215, 0, 0.1);
		border: 1px solid rgba(255, 215, 0, 0.3);
		border-radius: var(--radius-full);
		color: var(--gold);
		font-size: 1rem;
		font-family: var(--font-mono);
	}
	
	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;
	}

	/* --- VAULT GRID --- */
	.vault-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 24px;
		margin-bottom: 60px;
	}

	.vault-card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		overflow: hidden;
		}
	
	.vault-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--gradient-gold);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.vault-card:hover {
		border-color: var(--gold);
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px var(--gold-glow);
	}
	
	.vault-card:hover::before {
		transform: scaleX(1);
	}

	.vault-card h3 {
		font-size: 1.3rem;
		font-weight: 700;
		color: var(--text-primary);
		margin-bottom: 24px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.vault-card h3 i {
		color: var(--gold);
	}

	.timeline-item {
		display: flex;
		justify-content: space-between;
		padding: 12px 0;
		border-bottom: 1px solid var(--border);
		font-size: 1rem;
	}

	.timeline-item:last-child {
		border-bottom: none;
	}

	.timeline-period {
		color: var(--text-secondary);
	}

	.timeline-value {
		font-family: var(--font-mono);
		color: var(--gold);
		font-weight: 600;
	}

	/* --- SCAN BANNER --- */
	.scan-banner {
		background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 82, 255, 0.1));
		border: 1px solid rgba(255, 215, 0, 0.3);
		border-radius: var(--radius-xl);
		padding: 40px;
		margin: 60px 0;
		text-align: center;
		backdrop-filter: blur(10px);
		position: relative;
		overflow: hidden;
	}

	.scan-banner::before {
		content: '';
		position: absolute;
		top: -50%;
		left: -50%;
		width: 200%;
		height: 200%;
		background: radial-gradient(ellipse, rgba(255, 215, 0, 0.1), transparent 70%);
		animation: rotate 4.4s linear infinite;
	}

	@keyframes rotate {
		from { transform: rotate(0deg); }
		to { transform: rotate(360deg); }
	}

	.scan-banner a {
		color: var(--text-primary);
		text-decoration: none;
		font-size: 1.5rem;
		font-weight: 600;
		word-break: break-all;
		display: inline-flex;
		align-items: center;
		gap: 16px;
		padding: 16px 32px;
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: var(--radius-full);
		transition: all var(--transition-smooth);
		position: relative;
		z-index: 10;
		background: rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(10px);
	}

	.scan-banner a:hover {
		border-color: var(--gold);
		background: rgba(255, 215, 0, 0.2);
		transform: translateY(-3px) scale(1.02);
		box-shadow: 0 2px 10px -1px var(--gold-glow);
	}

	.scan-banner i {
		color: var(--gold);
	}
	
	/* --- GRID PRINCIPAL --- */
	.grid-3 {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 24px;
		margin: 40px 0;
	}
	
	/* --- BLOC UNISWAP --- */
	.uniswap-card {
		background: linear-gradient(135deg, rgba(255, 0, 122, 0.1), rgba(0, 82, 255, 0.1));
		border: 1px solid rgba(255, 0, 122, 0.3);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		backdrop-filter: blur(10px);
		overflow: hidden;
	}
	
	.uniswap-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--uniswap-pink);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.uniswap-card:hover {
		border-color: var(--uniswap-pink);
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px rgba(255, 0, 122, 0.3);
	}
	
	.uniswap-card:hover::before {
		transform: scaleX(1);
	}

	.uniswap-header {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 24px;
	}

	.uniswap-header i {
		font-size: 2rem;
		color: var(--uniswap-pink);
	}

	.uniswap-header h3 {
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--text-primary);
	}

	.uniswap-rate {
		background: rgba(0, 0, 0, 0.3);
		border-radius: var(--radius-lg);
		padding: 16px;
		margin-bottom: 20px;
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.rate-row {
		display: flex;
		justify-content: space-between;
		margin-bottom: 8px;
		color: var(--text-secondary);
	}

	.rate-row .value {
		color: var(--gold);
		font-family: var(--font-mono);
		font-weight: 600;
	}

	.buy-btn-uni {
		width: 100%;
		padding: 16px;
		background: linear-gradient(135deg, #FF007A, #0052ff);
		border: none;
		border-radius: var(--radius-full);
		color: white;
		font-weight: 700;
		font-size: 1.1rem;
		cursor: pointer;
		transition: all var(--transition-smooth);
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
	}

	.buy-btn-uni:hover {
		transform: translateY(-3px);
		box-shadow: 0 2px 10px 3px rgb(255 0 122 / 50%);
	}
	
	/* --- BLOCK CHART DEXTOOL --- */
	.chartdex-card {
		background: linear-gradient(135deg, rgba(0, 82, 255, 0.1), rgba(255, 215, 0, 0.1));
		border: 1px solid rgba(0 180 211 / 30%);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		backdrop-filter: blur(10px);
		overflow: hidden;
	}
	
	.chartdex-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: #00b4d3;
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.chartdex-card:hover {
		border-color: #00b4d3;
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px rgba(0 180 211 / 30%);
	}
	
	.chartdex-card:hover::before {
		transform: scaleX(1);
	}

	.chartdex-header {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 24px;
	}

	.chartdex-header i {
		font-size: 2rem;
		color: #00b4d3;
	}
	
	.chartdex-header h3 {
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--text-primary);
	}		
	
	/* --- MENU BLOCK AERODROME --- */
	.aero-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 20px;
	}

	.aero-item {
		border-radius: var(--radius-lg);
		padding: 0px 0px;
		cursor: pointer;
		transition: all var(--transition-fast);
		overflow: hidden;
	}

	.aero-question {
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 600;
		color: var(--text-primary);
		margin-bottom: 0px;
		margin-left: 24px;
		font-size: 1.1rem;
	}

	.aero-question i {
		color: var(--gold);
		transition: transform var(--transition-fast);
		font-size: 1.2rem;
	}

	.aero-item.active .aero-question i {
		transform: rotate(180deg);
	}

	.aero-answer {
		color: var(--text-secondary);
		font-size: 0.95rem;
		line-height: 1.7;
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--transition-smooth);
	}

	.aero-item.active .aero-answer {
		max-height: 620px;
		max-height: fit-content !important;
	}
	
	/* --- BLOCK CONTRACT --- */
	.contract-card {
		background: linear-gradient(135deg, rgba(0, 82, 255, 0.1), rgba(255, 215, 0, 0.1));
		border: 1px solid rgba(0, 82, 255, 0.3);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		backdrop-filter: blur(10px);
		overflow: hidden;
	}
	
	.contract-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--gradient-blue);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.contract-card:hover {
		border-color: var(--blue-base);
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px rgba(0, 82, 255, 0.3);
	}
	
	.contract-card:hover::before {
		transform: scaleX(1);
	}

	.contract-header {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 24px;
	}

	.contract-header i {
		font-size: 2rem;
		color: var(--blue-base);
	}

	.contract-header h3 {
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--text-primary);
	}

	.address-box {
		background: rgba(0, 0, 0, 0.3);
		border-radius: var(--radius-lg);
		padding: 16px;
		margin-bottom: 16px;
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.address-label {
		color: var(--text-secondary);
		font-size: 0.85rem;
		margin-bottom: 8px;
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.address-value {
		font-family: var(--font-mono);
		font-size: 0.65rem;
		color: var(--gold);
		word-break: break-all;
		background: rgba(0, 0, 0, 0.2);
		padding: 8px;
		border-radius: var(--radius-sm);
		border: 1px solid rgba(255, 215, 0, 0.2);
		
	}

	.copy-btn {
		background: transparent;
		border: 1px solid var(--border);
		color: var(--text-secondary);
		padding: 6px 12px;
		border-radius: var(--radius-full);
		cursor: pointer;
		font-size: 0.85rem;
		display: inline-flex;
		align-items: center;
		gap: 6px;
		transition: all var(--transition-smooth);
		margin-left: 8px;
	}

	.copy-btn:hover {
		background: var(--gold);
		color: var(--onyx);
		border-color: var(--gold);
	}

	.verify-link {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: var(--text-secondary);
		text-decoration: none;
		font-size: 0.9rem;
		margin-top: 12px;
		transition: color var(--transition-smooth);
	}

	.verify-link:hover {
		color: var(--gold);
	}

	/* --- TIMELINE SECTION --- */
	.timeline-section {
		padding: 60px 0;
	}

	.timeline-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 24px;
	}

	.timeline-phase {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-lg);
		padding: 24px;
		text-align: center;
		transition: all var(--transition-smooth);
		overflow: hidden;
	}
	
	.timeline-phase::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--gradient-gold);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.timeline-phase:hover {
		border-color: var(--gold);
		transform: translateY(-5px);
		box-shadow: 0 1px 10px -2px var(--gold);
	}
	
	.timeline-phase:hover::before {
		transform: scaleX(1);
	}

	.phase-year {
		font-family: var(--font-mono);
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--gold);
		margin-bottom: 12px;
	}

	.phase-name {
		font-weight: 600;
		color: var(--text-primary);
		margin-bottom: 8px;
	}

	.phase-desc {
		color: var(--text-tertiary);
		font-size: 0.9rem;
	}

	/* --- FAQ GRID --- */
	.faq-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 20px;
		margin-bottom: 60px;
	}

	.faq-item {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-lg);
		padding: 24px;
		cursor: pointer;
		transition: all var(--transition-fast);
		overflow: hidden;
	}
	
	.faq-item::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: var(--gradient-gold);
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.faq-item:hover {
		border-color: var(--gold);
		transform: translateY(-3px);
		box-shadow: 0 2px 10px -3px var(--gold);
	}
	
	.faq-item:hover::before {
		transform: scaleX(1);
	}

	.faq-question {
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 600;
		color: var(--text-primary);
		margin-bottom: 16px;
		font-size: 1.1rem;
	}

	.faq-question i {
		color: var(--gold);
		transition: transform var(--transition-fast);
		font-size: 1.2rem;
	}

	.faq-item.active .faq-question i.fa-arrow-up, .faq-item.active .faq-question i.fa-arrow-down, .faq-item.active .faq-question i.fa-exchange-alt {
		transform: none;
	}
	.faq-item.active .faq-question i{
		transform: rotate(180deg);
	}

	.faq-answer {
		color: var(--text-secondary);
		font-size: 0.95rem;
		line-height: 1.7;
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--transition-smooth);
	}

	.faq-item.active .faq-answer {
		max-height: 300px;
	}
	
	.fa-keyboard {
		color :#085dff;
	}


	/* --- FOOTER --- */
	footer {
		background: var(--surface);
		border-top: 1px solid var(--border);
		padding: 80px 0 20px;
		margin-top: 80px;
		position: relative;
		cursor: default;
	}

	footer::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 1px;
		background: linear-gradient(90deg, transparent, var(--gold), transparent);
	}

	.footer-grid {
		display: grid;
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
		gap: 40px;
		margin-bottom: 30px;
	}

	.footer-brand {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.footer-logo {
		display: flex;
		align-items: center;
		gap: 12px;
		font-weight: 700;
		font-size: 1.3rem;
	}

	.footer-logo-icon {
		width: 40px;
		height: 40px;
		background: var(--gradient-gold);
		border-radius: 10px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--onyx);
		font-weight: 800;
	}

	.footer-description {
		color: var(--text-tertiary);
		font-size: 0.95rem;
		line-height: 1.6;
		max-width: 300px;
	}

	.footer-social {
		display: flex;
		gap: 16px;
	}

	.footer-social a {
		width: 40px;
		height: 40px;
		background: var(--surface-light);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: var(--text-secondary);
		transition: all var(--transition-fast);
		border: 1px solid var(--border);
	}

	.footer-social a:hover {
		background: var(--gold);
		color: var(--onyx);
		transform: translateY(-3px);
	}

	.footer-column h4 {
		color: var(--text-primary);
		font-size: 1.1rem;
		font-weight: 600;
		margin-bottom: 24px;
		margin-top: 10px;
	}

	.footer-column a {
		display: block;
		color: var(--text-tertiary);
		text-decoration: none;
		margin-bottom: 16px;
		font-size: 0.95rem;
		transition: color var(--transition-fast);
	}

	.footer-column a:hover {
		color: var(--gold);
		transform: translateX(5px);
	}

	.footer-bottom {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 20px;
		padding-top: 20px;
		border-top: 1px solid var(--border);
		color: var(--text-tertiary);
		font-size: 0.9rem;
		cursor: default;
	}

	.footer-links {
		display: flex;
		gap: 24px;
		flex-wrap: wrap;
	}

	.footer-links a {
		color: #9f732a;
		text-decoration: none;
		transition: color var(--transition-fast);
	}

	.footer-links a:hover {
		color: var(--gold);
	}

	.footer-compliance {
		margin-bottom: 30px;
		padding: 20px;
		background: #272727;
		border-radius: var(--radius-lg);
		border: 1px solid var(--border);
		color: #9b9b9b;
		font-size: 0.8rem;
		text-align: center;
		cursor: default;
	}
	
	.logo-iconfooter {
		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 15px #7f7f7f;
		transform: rotate(0deg);
		transition: transform var(--transition-bounce);
	}
	
	.logo-descriptionfooter {
		font-size: 1rem;
		color: var(--text-secondary);
		max-width: 700px;
		margin-bottom: 48px;
		line-height: 1.6;
	}
	
	/* - - SPACE SECTION - -*/
	section#hero, section#hierarchy, section#faq { margin: 300px auto; cursor: default; }
	section#tiks, section#giks, section#miks, section#piks { margin: 60px auto; cursor: default; }
	
	/* Page Constellation */
	.section-header { text-align: center; margin-bottom: 60px; }
	.section-subtitle {
		color: var(--gold); font-size: 0.9rem; font-weight: 600;
		text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
		display: inline-block; padding: 8px 40px;
		background: rgba(255, 215, 0, 0.1);
		border-radius: 12px 12px 40px 40px;
		border: 1px solid rgba(255, 215, 0, 0.2);
	}
	.section-title {
		font-family: var(--font-mono); font-size: clamp(2.2rem, 5vw, 3.2rem);
		font-weight: 700; color: var(--text-primary); margin-bottom: 20px;
	}
	.section-description {
		color: var(--text-secondary); font-size: 1.1rem; max-width: 800px; margin: 0 auto;
	}

	/* SATELLITE Grid */
	.satellite-grid {
		display: grid; grid-template-columns: 1fr 1fr;
		gap: 5rem; align-items: center; margin-bottom: 80px;
	}
	.satellite-image {
		border-radius: 16px; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.6);
		width: 100%; transition: transform 0.5s ease;
		border: 2px solid #ffffff;
		margin: 0 auto -8px auto;
	}
	.satellite-image:hover { transform: scale(1.02); }
	.satellite-info {background:#000000;padding: 0px 12px; border-radius:16px;}
	.satellite-info h3 {
		font-size: 1.6rem; margin-bottom: 1.5rem; font-family: var(--font-mono); }
	
	.satellite-info .highlight { color: var(--gold); }
	.satellite-info p { color: var(--text-secondary); margin-bottom: 12px; font-size: 1.05rem; }
	.satellite-info ul { padding-left: 1.2rem; margin: 1.5rem 0; color: var(--text-secondary); }
	.satellite-info ul li { margin-bottom: 8px; list-style:none; }

	.btn {
		display: inline-block; padding: 1rem 2rem;
		border: 2px solid white; color: white; text-decoration: none;
		border-radius: 40px; font-weight: 600;
		transition: all 0.3s; margin: 0.5rem;
	}
	.btn:hover { background: white; color: #0a0a0a; transform: translateY(-3px); }
	.btn-primary { background: var(--gold); color: #000; border: 2px solid var(--gold); }
	.btn-primary:hover { background: #ffea00; }


	.timeline-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
	.timeline-period { color: var(--text-secondary); }
	.timeline-value { font-family: var(--font-mono); color: var(--gold); font-weight: 600; }

	.tax-grid {
		display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 24px; margin-bottom: 60px;
	}
	.tax-card {
		background: var(--surface); border: 1px solid var(--border);
		border-radius: var(--radius-xl); padding: 28px;
		transition: all var(--transition-smooth); overflow: hidden;
		position: relative;
	}
	.tax-card::before {
		content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
		background: var(--gradient-gold); transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}
	.tax-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 2px 10px 3px var(--gold-glow); }
	.tax-card:hover::before { transform: scaleX(1); }
	.tax-card h3 { font-size: 1.3rem; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
	.tax-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); }
	.tax-label { color: var(--text-secondary); }
	.tax-value { font-family: var(--font-mono); color: var(--gold); font-weight: 600; }

	/* Ratio Badge */
	.ratio-badge {
		display: inline-block; padding: 8px 20px;
		background: rgba(255, 215, 0, 0.1); border: 1px solid rgba(255, 215, 0, 0.3);
		border-radius: var(--radius-full); color: var(--gold);
		font-family: var(--font-mono); margin-bottom: 30px;
	}

	/* Origin Section */
	.origin-section {
		background: var(--surface); border: 1px solid var(--border);
		border-radius: var(--radius-xl); padding: 16px;
		margin: 60px 0; text-align: center;
	}
	.origin-section h3 { color: var(--gold); margin-bottom: 10px; }
	.origin-section p { color: var(--text-secondary); max-width: 700px; margin: 0 auto 0px; background: #0c0c0cb5; padding: 12px 12px; border: 1px solid #ffffff54; border-radius:12px;}

        .charts-row {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        .chart-canvas-container {
            position: relative;
            width: 100%;
            height: 200px;
            margin: 0 auto;
        }
        .chart-canvas-container canvas {
            max-width: 100%;
        }
        .chart-caption {
            font-size: 0.85rem;
            color: #aaa;
            margin: 24px 0 0 0;
			text-align: center;
        }
		#tiksPieChart, #giksPieChart, #miksPieChart, #piksPieChart, #tiksFloorChart, #giksFloorChart, #miksFloorChart, #piksFloorChart {
            margin: auto;
        }

        /* Boutons d'action contrat */
        .address-actions {
            margin-top: 15px;
        }
        .address-value {
            word-break: break-all;
            font-family: 'Space Mono', monospace;
            background: rgba(0,0,0,0.3);
            padding: 10px;
            border-radius: 8px;
            margin-bottom: 10px;
            font-size: 0.7rem;
            color: #ccc;
        }
        .actions-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 8px 12px;
            font-size: 0.8rem;
            border-radius: 8px;
            text-decoration: none;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: #ccc;
            cursor: pointer;
            transition: all 0.2s;
            font-family: 'Inter', sans-serif;
            white-space: nowrap;
        }
        .action-btn:hover {
            background: rgba(255,255,255,0.15);
            border-color: rgba(255,255,255,0.3);
            color: #fff;
            transform: translateY(-1px);
        }
		.add-wallet-btn { color: #fff; border: 1px solid #e57d1c; }
        .add-wallet-btn i { color: #e57d1c; }
		.swap-btn { color: #fff; border: 1px solid #ff007a; }
        .swap-btn i { color: #ff007a; }
        .explorer-btn i { color: #8dffeb; }

        /* Tableau constellation */
        .table-responsive {
            overflow-x: auto;
            margin: 30px 0;
        }
        .constellation-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(10, 20, 40, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 12px;
            overflow: hidden;
            color: #ccc;
            font-size: 0.9rem;
        }
        .constellation-table th {
            background: rgba(255,255,255,0.1);
            padding: 12px;
            text-align: left;
            font-weight: 600;
        }
        .constellation-table td {
            padding: 10px 12px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .highlight-row {
            background: rgba(255,215,0,0.1);
        }.lowlight-row {
            background: rgba(120,255,194,0,0.1);
        }
        .xplus {
            font-weight: 700;
            color: #ffd700;
        }
        .hierarchy-note {
            text-align: center;
            color: #aaa;
            margin: 15px 0;
        }
		
		iframe#dextools-widget-tiks, iframe#dextools-widget-giks, iframe#dextools-widget-miks, iframe#dextools-widget-piks {display: block;margin: 0 auto; max-width: 70%; width: 70%; height: 640px; }

	
	/* --- 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);
	}

	/* --- 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 anicanevas {
		0%, 100% { opacity: 0.8; transform: scale(1); }
		50% { opacity: 1; transform: scale(1.2); }
	}

	@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);
	}
	
	    /* Conteneur principal du light */
    .light-wrapper {
      position: relative;
      overflow: hidden;
	  border-radius: 16px;
    }

    /* Rayon lumineux principal - brillant doré/blanc */
    .light-wrapper::after {
      content: "";
      position: absolute;
      top: -15%;
      left: -35%;
      width: 40%;
      height: 130%;
      background: linear-gradient(
        108deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 15%,
        rgba(255, 255, 255, 0.5) 35%,
        rgba(255, 255, 255, 0.95) 50%,
        rgba(255, 255, 255, 0.5) 65%,
        rgba(255, 255, 255, 0.05) 85%,
        transparent 100%
      );
      transform: skewX(-20deg);
      filter: blur(2px);
      z-index: 3;
      pointer-events: none;
      animation: cryptoShine 3200ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
	  animation-delay: 3s; animation-delay: 3s; animation-play-state:start;
      opacity: 0;
      mix-blend-mode: overlay;
    }

    /* Second rayon plus fin et rapide */
    .light-wrapper::before {
      content: "";
      position: absolute;
      top: -10%;
      left: -25%;
      width: 22%;
      height: 120%;
      background: linear-gradient(
        102deg,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 20%,
        rgba(255, 240, 180, 0.4) 40%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 240, 180, 0.4) 60%,
        transparent 100%
      );
      transform: skewX(-16deg);
      filter: blur(1.8px);
      z-index: 4;
      pointer-events: none;
      animation: cryptoShineThin 3200ms cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
	  animation-delay: 3s; animation-delay: 3s; animation-play-state:start;
      opacity: 0;
      mix-blend-mode: soft-light;
    }

    /* Animation du rayon principal */
    @keyframes cryptoShine {
      0% {
        left: -40%;
        opacity: 0;
      }
      6% {
        opacity: 0.7;
      }
      12% {
        opacity: 1;
      }
      38% {
        left: 110%;
        opacity: 0.85;
      }
      44% {
        left: 115%;
        opacity: 0;
      }
      100% {
        left: 115%;
        opacity: 0;
      }
    }

    /* Animation du rayon secondaire (légèrement décalé) */
    @keyframes cryptoShineThin {
      0% {
        left: -35%;
        opacity: 0;
      }
      10% {
        opacity: 0.8;
      }
      18% {
        opacity: 1;
      }
      44% {
        left: 115%;
        opacity: 0.6;
      }
      50% {
        left: 120%;
        opacity: 0;
      }
      100% {
        left: 120%;
        opacity: 0;
      }
    }

    /* Effet de halo lumineux supplémentaire */
    .light-wrapper::before,
    .light-wrapper::after {
      transition: none;
    }
	
	/* --- 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: 120px auto 60px 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;
      }
    }

	/* --- 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);
	}
	
	/* 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 {
		
	}
	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-constellation {
	}
	body.white .desktop-nav .nav-link { color: #002b87 !important;}
	body.white .nav-link:hover { color: #4d4d4d !important; background: #e5d78c !important; box-shadow: 0px 0px 2px #0039b3 !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;
	}
	
	/* Style du bouton mute sound toggle */
	.sound-toggle {
		position: fixed;
		top: 27px;
		left: 120px;              /* à droite du screen-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;
	}
	.sound-toggle:hover {
		transform: scale(1.1);
	}
	body.white .sound-toggle {
		background: #5d5d5d;
		color: #ffea7f;
	}

	/* ========== CARROUSEL SPATIAL 6 TOKENS ========== */
	.carousel {
		position: relative;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto 100px;   /* espace avant les sections fixes */
		overflow: hidden;
		perspective: 1000px;     /* profondeur pour l'effet 3D */
		border-radius: 30px;
	}

	/* Fond étoilé animé (champ d'étoiles en mouvement) */
	.carousel::before {
		content: "";
		position: absolute;
		inset: -50%;
		width: 200%;
		height: 200%;
		background-image: 
			radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.8), #2f2f2f),
			radial-gradient(1px 1px at 20% 80%, rgba(255,255,255,0.6), #2f2f2f),
			radial-gradient(2px 2px at 50% 50%, rgba(255,255,255,0.9), #2f2f2f),
			radial-gradient(1px 1px at 80% 30%, rgba(255,255,255,0.5), #2f2f2f),
			radial-gradient(1px 1px at 70% 90%, rgba(255,255,255,0.7), #2f2f2f),
			radial-gradient(2px 2px at 30% 70%, rgba(255,255,255,0.4), #2f2f2f),
			radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.3), #2f2f2f);
		background-size: 4px 4px, 3px 3px, 5px 5px, 2px 2px, 4px 4px, 3px 3px, 2px 2px;
		z-index: 0;
		pointer-events: none;
		animation: driftStars 60s linear infinite;
		opacity: 0.4;
	}

	@keyframes driftStars {
		from { transform: translate(0, 0); }
		to { transform: translate(-20%, -10%); }
	}

	/* Conteneur des slides au premier plan */
	.carousel-slides {
		position: relative;
		z-index: 1;
	}

	/* Inputs radio cachés */
	.carousel input[type="radio"] {
		display: none;
	}

	/* Tous les slides en absolute → hauteur nulle, cachés + effet spatial */
	.carousel-slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		padding: 0 2px;
		box-sizing: border-box;
		
		/* États inactifs : éloigné, flouté */
		opacity: 0;
		visibility: hidden;
		transform: scale(0.8) translateY(30px) rotateY(5deg);
		filter: blur(6px);
		
		transition: 
			opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
			transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
			filter 0.6s cubic-bezier(0.23, 1, 0.32, 1),
			visibility 0s 0.6s;
	}

	/* Slide actif : net, proche, centré */
	#carousel-slide1:checked ~ .carousel-slides .carousel-slide:nth-child(1),
	#carousel-slide2:checked ~ .carousel-slides .carousel-slide:nth-child(2),
	#carousel-slide3:checked ~ .carousel-slides .carousel-slide:nth-child(3),
	#carousel-slide4:checked ~ .carousel-slides .carousel-slide:nth-child(4),
	#carousel-slide5:checked ~ .carousel-slides .carousel-slide:nth-child(5),
	#carousel-slide6:checked ~ .carousel-slides .carousel-slide:nth-child(6) {
		position: relative;
		opacity: 1;
		visibility: visible;
		transform: scale(1) translateY(0) rotateY(0);
		filter: blur(0);
		transition: 
			opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
			transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
			filter 0.6s cubic-bezier(0.23, 1, 0.32, 1),
			visibility 0s 0s;
	}

	/* Points de navigation (étoiles) */
	.carousel-dots {
		text-align: center;
		padding: 2rem 0 1rem;
		position: relative;
		z-index: 5;
	}

	.carousel-dot {
		display: inline-block;
		width: 12px;
		height: 12px;
		margin: 0 8px;
		background: radial-gradient(circle, rgba(255,215,0,0.6), transparent 70%);
		border-radius: 50%;
		cursor: pointer;
		transition: all 0.3s;
		position: relative;
		border: 1px solid transparent;
	}

	/* Point actif = soleil */
	#carousel-slide1:checked ~ .carousel-dots label[for="carousel-slide1"],
	#carousel-slide2:checked ~ .carousel-dots label[for="carousel-slide2"],
	#carousel-slide3:checked ~ .carousel-dots label[for="carousel-slide3"],
	#carousel-slide4:checked ~ .carousel-dots label[for="carousel-slide4"],
	#carousel-slide5:checked ~ .carousel-dots label[for="carousel-slide5"],
	#carousel-slide6:checked ~ .carousel-dots label[for="carousel-slide6"] {
		background: var(--gold);
		border-color: var(--gold);
		box-shadow: 0 0 12px var(--gold-glow), 0 0 24px var(--gold-glow);
		transform: scale(1.4);
	}


	/* --- RESPONSIVE --- */
	@media (max-width: 1200px) {}
	@media (max-width: 1024px) {.footer-grid {grid-template-columns: 1fr 1fr;gap: 30px;}}
	@media (max-width: 900px) {.desktop-nav {display: none;}.live-ticker {font-size: 10px;margin: 84px 0px -84px 0px; padding:6px 0;}}
	@media (min-width: 800px) {.mobile-nav {width: 275px;}}
	@media (max-width: 768px) {.hero-stats {gap: 30px;}.hero-stat-item::after {display: none;}.hero-stat-value {font-size: 1.8rem;}.footer-grid {grid-template-columns: 1fr;gap: 40px;}.footer-bottom {flex-direction: column;text-align: center;}.social-grid {grid-template-columns: 1fr;}.grid-3 {grid-template-columns: 1fr;}.satellite-grid { display: block; }#back-to-top { right: 60px; }}
	@media (max-width: 600px) {.mobile-nav {width: 250px;}.ecosystem-container { gap: 2rem; }.timer { font-size: 1rem; letter-spacing: 1px; }.header h1 { font-size: 1.1rem; }}
	@media (max-width: 520px) {.wallet-section {display:none;}}
	@media (max-width: 480px) {.mobile-nav {width: 225px;}.hero-actions {flex-direction: column;}.btn {width: 100%;justify-content: center;}.hero-stats {flex-direction: column;gap: 20px;}.container {padding: 0 20px;}.scan-banner a {font-size: 1rem;padding: 12px 20px;}}
	@media (max-width: 420px) {section#hero h1 {font-size: 2.2rem;}.ecosystem-footer {border-radius: var(--radius-sm);}.ecosystem-title {font-size: 0.75rem;}#back-to-top {width: 48px;height: 48px;}}
	@media (max-width: 375px) {.live-ticker {display:none;}section#vision {margin-top:100px;}#vision h1 {font-size: 2.4rem;}.mobile-nav {width: 250px;}.scan-banner a {font-size: 0.9rem; padding: 12px 4px;}.ecosystem-footer {border-radius: var(--radius-sm);}.ecosystem-title {font-size: 0.65rem;}#back-to-top {width: 42px;height: 42px;}}

	/* --- REDUCED MOTION --- */
	@media (prefers-reduced-motion: reduce) {* {animation: none !important;transition: none !important;}[data-aos] {opacity: 1 !important;transform: none !important;}}