/* [CSS DESIGN SYSTEM] */
	: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;
	}

	* {
		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 24px;
		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);
	}
	
	/* --- TOP COUNTDOWN --- */
	#countdown .carddown {
		background: var(--card);
		border: 1px solid var(--border);
		border-radius: 20px;
		padding: 2.2rem;
		margin-bottom: 2rem;
		transition: all 0.3s ease;
	}
	#countdown .carddown:hover {
		border-color: var(--primary);
		box-shadow: 0 0 25px rgba(244, 129, 32, 0.15);
	}
	#countdown .phase-label {
		font-family: 'Space Mono', monospace;
		font-size: 0.85rem;
		color: var(--primary);
		letter-spacing: 2px;
		text-transform: uppercase;
		margin-bottom: 12px;
	}
	#countdown .timer {
		font-family: 'Space Mono', monospace;
		font-size: 2.6rem;
		font-weight: 700;
		letter-spacing: 4px;
		color: white;
		margin-bottom: 1rem;
	}
	#countdown .status {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		font-size: 1rem;
		font-weight: 600;
		padding: 6px 16px;
		border-radius: 30px;
		background: rgba(244, 129, 32, 0.15);
		color: var(--primary);
	}
	#countdown .info-box {
		background: rgba(255,255,255,0.04);
		border-left: 4px solid var(--secondary);
		padding: 1.5rem;
		border-radius: 12px;
		margin-top: 1.5rem;
	}

	/* --- HERO SECTION --- */
	.hero {
		min-height: 100vh;
		display: flex;
		align-items: center;
		padding: 0px 0px;
		position: relative;
		margin-top:50px;
		cursor: default;
	}

	.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);
	}

	/* --- 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); */
		color: #ff6b30;
	}

	.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 10px;
		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.9rem;
		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);
	}
	
	/* --- BLOCK DYNAMIKS NFT --- */
	.nft-card {
		background: linear-gradient(135deg, rgba(0, 82, 255, 0.1), rgba(255, 215, 0, 0.1));
		border: 1px solid rgba(68 146 122 / 30%);
		border-radius: var(--radius-xl);
		padding: 28px;
		transition: all var(--transition-smooth);
		backdrop-filter: blur(10px);
		overflow: hidden;
	}
	
	.nft-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: #44927a;
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.nft-card:hover {
		border-color: #44927a;
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px rgba(68 146 122 / 30%);
	}
	
	.nft-card:hover::before {
		transform: scaleX(1);
	}

	.nft-header {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 24px;
	}

	.nft-header i {
		font-size: 2rem;
		color: var(--blue-base);
	}

	.nft-header h3 {
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--text-primary);
	}
	
	.buy-btn-nft {
		width: 100%;
		padding: 16px;
		background: linear-gradient(135deg, #067b8b, #068910);
		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-nft:hover {
		transform: translateY(-3px);
		box-shadow: 0 2px 10px 3px rgb(6 130 82 / 50%);
	}
	
	
	/* --- BLOCK SOCIAL (FACEBOOK + TWITTER) --- */
	.social-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		margin: 40px 0;
	}

	.social-card {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-xl);
		padding: 24px;
		transition: all var(--transition-smooth);
		backdrop-filter: blur(10px);
		overflow: hidden;
	}
	
	.social-card.facebook::before, .social-card.twitter::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 2px;
		background: #ffffff;
		transform: scaleX(0);
		transition: transform var(--transition-smooth);
	}

	.social-card.facebook:hover {
		border-color: #ffffff;
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px rgba(255, 255, 255, 0.3);
	}

	.social-card.twitter:hover {
		border-color: #ffffff;
		transform: translateY(-5px);
		box-shadow: 0 2px 10px 3px rgba(255, 2555, 255, 0.3);
	}
	
	.social-card.facebook:hover::before, .social-card.twitter:hover::before {
		transform: scaleX(1);
	}

	.social-header {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 20px;
		padding-bottom: 16px;
		border-bottom: 1px solid var(--border);
	}

	.social-header i {
		font-size: 1.8rem;
	}

	.social-header i.fa-facebook {
		color: var(--facebook-blue);
	}

	.social-header i.fa-twitter {
		color: var(--twitter-blue);
	}

	.social-header h3 {
		font-size: 1.3rem;
		font-weight: 600;
		color: var(--text-primary);
	}

	.social-post {
		background: rgba(255, 255, 255, 0.03);
		border-radius: var(--radius-lg);
		padding: 16px;
		margin-bottom: 16px;
	}

	.post-meta {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 12px;
	}

	.post-avatar {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: linear-gradient(135deg, var(--gold), var(--blue-base));
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: 700;
	}

	.post-info {
		flex: 1;
	}

	.post-author {
		font-weight: 600;
		color: var(--text-primary);
	}

	.post-time {
		font-size: 0.8rem;
		color: var(--text-tertiary);
	}

	.post-content {
		color: var(--text-secondary);
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 12px;
	}

	.post-stats {
		display: flex;
		gap: 20px;
		color: var(--text-tertiary);
		font-size: 0.85rem;
	}

	.post-stats span {
		display: flex;
		align-items: center;
		gap: 5px;
	}

	.social-footer {
		margin-top: 20px;
		text-align: center;
	}

	.social-link-fb {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: var(--text-secondary);
		text-decoration: none;
		font-size: 0.9rem;
		padding: 8px 20px;
		border: 1px solid var(--border);
		border-radius: var(--radius-full);
		transition: all var(--transition-smooth);
	}

	.social-link-fb:hover {
		background: rgba(75 80 145 / 10%);
		color: var(--facebook-blue);
		border-color: var(--facebook-blue);
		box-shadow: 0 2px 10px -1px var(--facebook-blue);
	}
	
	.social-link-tw {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: var(--text-secondary);
		text-decoration: none;
		font-size: 0.9rem;
		padding: 8px 20px;
		border: 1px solid var(--border);
		border-radius: var(--radius-full);
		transition: all var(--transition-smooth);
	}
	
	.social-link-tw:hover {
		background: rgba(0 172 237 / 10%);
		color: var(--twitter-blue);
		border-color: var(--twitter-blue);
		box-shadow: 0 2px 10px -1px var(--twitter-blue); 
	}

	/* --- 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 {
		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;
	}

	/* --- LEXI GRID --- */
	.lexique-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 20px;
		margin-bottom: 60px;
	}

	.lexique-item {
		background: var(--surface);
		border: 1px solid var(--border);
		border-radius: var(--radius-lg);
		padding: 24px;
		transition: all var(--transition-fast);
		overflow: hidden;
	}
	
	.lexique-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);
	}

	.lexique-item:hover {
		border-color: var(--gold);
		transform: translateY(-3px);
		box-shadow: 0 2px 10px -3px var(--gold);
	}
	
	.lexique-item:hover::before {
		transform: scaleX(1);
	}

	.lexique-term {
		font-weight: 700;
		color: var(--gold);
		font-size: 1.1rem;
		margin-bottom: 12px;
		font-family: var(--font-mono);
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.lexique-term i {
		color: var(--gold);
		font-size: 1rem;
		opacity: 0.7;
	}

	.lexique-def {
		color: var(--text-secondary);
		font-size: 0.95rem;
		line-height: 1.6;
	}
	
	 /* --- BANNER ECOSYSTEM --- */
	.ecosystem-footer {
		position: relative;
		background: rgba(15, 23, 42, 0.7);
		backdrop-filter: blur(8px);
		border-top: 1px solid rgba(56, 189, 248, 0.2);
		padding: 1.5rem 1.5rem;
		text-align: center;
		border-radius: var(--radius-full);
		filter: brightness(0.9);
		margin-top: 200px;
		margin-bottom: -100px;
	}
	.ecosystem-footer:hover {
		filter: brightness(1.1);
	}
	.ecosystem-footer:hover img{
		filter: brightness(1.1);
	}

	.ecosystem-title {
		color: #94a3b8;
		font-size: 0.75rem;
		letter-spacing: 4px;
		text-transform: uppercase;
		margin-bottom: 2.5rem;
		display: inline-block;
		padding: 0.25rem 1rem;
		border-radius: 40px;
		background: rgba(56, 189, 248, 0.08);
		cursor: default;
	}

	.ecosystem-container {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 2.2rem 6rem;
		max-width: 1100px;
		margin: 0 auto;
	}

	.ecosystem-link {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-decoration: none;
		transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
		position: relative;
	}

	/* Tooltip */
	.ecosystem-link::after {
		content: attr(data-name);
		position: absolute;
		bottom: -2.2rem;
		left: 50%;
		transform: translateX(-50%) translateY(0.5rem);
		background: #1e293b;
		color: #38bdf8;
		font-size: 0.7rem;
		padding: 0.2rem 0.7rem;
		border-radius: 6px;
		opacity: 0;
		transition: all 0.2s ease;
		border: 1px solid rgba(56, 189, 248, 0.3);
		white-space: nowrap;
	}

	.ecosystem-link:hover::after {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	.ecosystem-logo {
		height: 52px;
		width: auto;
		filter: brightness(0.8);
		opacity: 0.7;
		transition: all 0.4s ease;
	}

	.ecosystem-link:hover .ecosystem-logo {
		filter: brightness(1);
		opacity: 1;
	}

	.ecosystem-link:hover {
		transform: translateY(-5px);
	}

	/* --- 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);
		text-decoration: none;
	}

	.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#exchange {margin:0px auto;cursor: default;} 
	section#system, section#mechanics, section#vault, section#evolution, section#social, section#faq, section#lexique {margin:300px auto;cursor: default;} 


	/* --- 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);
	}
	
	/* 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-home {

	}
	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;
	}

	/* --- 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);
	}
	
	i.fas.fa-external-link-alt{
            color: #f9ff00;
			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: #cfff42;
    }
	
	/* --- 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;
      }
    }

	/* --- 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 (max-width: 800px) {.mobile-nav {width: 275px;}}
	@media (min-width: 768px) {.live-ticker {margin-top: 85px;}}
	@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;}#back-to-top { right: 60px; }}
	@media (max-width: 600px) {.mobile-nav {width: 250px;}.ecosystem-container { gap: 2rem; }#countdown .timer, .card-no div { font-size: 1rem !important; }.header h1 { font-size: 1.1rem; }.scan-banner a { font-size: 1.2rem; }}
	@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;}#countdown .timer, .card-no div { font-size: 0.9rem !important;}}
	@media (max-width: 420px) {section#vision 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 (min-width: 376px) {section#vision {margin-top: 170px;}}
	@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;}#countdown .timer, .card-no div { font-size: 0.7rem !important;}}

	/* --- REDUCED MOTION --- */
	@media (prefers-reduced-motion: reduce) {* {animation: none !important;transition: none !important;}[data-aos] {opacity: 1 !important;transform: none !important;}}