: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;
            --secondary: #5DA9DD;
            --deepblue: #1E3A5F;
            --dark: #0F172A;
            --light: #F8FAFC;
            --gray: #64748B;
            --border: #E2E8F0;
            
            --cctiks-orange: #F48120;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            cursor: default;
        }
		
		a, button, .tab-link, .mobile-menu-btn, .mobile-nav-close, .white-toggle, .screen-toggle, #back-to-top, .copy-btn, .faq-item {
            cursor: pointer;
        }
		
        body {
            background-color: var(--onyx);
            color: #000000;
            font-family: var(--font-sans);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }
		
        /* --- MAIN CONTENT --- */
        .app {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            margin-top: 100px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }
        
        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 0 20px 0px;
            z-index: 100;
            background: rgba(8, 8, 8, 0.8);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.1);
            transition: all var(--transition-smooth);
        }

        header.scrolled {
            padding: 12px 0;
            background: rgba(8, 8, 8, 0.95);
            border-bottom-color: rgba(255, 215, 0, 0.2);
            box-shadow: var(--shadow-md);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #999999, #f9f9f9);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--onyx);
            box-shadow: 0 0 10px #7f7f7f;
            transform: rotate(0deg);
            transition: transform var(--transition-bounce);
        }

        .logo-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;
        }
        .network-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(0, 82, 255, 0.1);
            border: 1px solid rgba(0, 82, 255, 0.2);
            border-radius: var(--radius-full);
            color: var(--text-secondary);
            font-size: 0.65rem;
        }

        .network-dot {
            width: 8px;
            height: 8px;
            background: var(--blue-base);
            border-radius: 50%;
            box-shadow: 0 0 2px var(--blue-base);
            animation: pulse 2.2s infinite;
        }
        
        .nav-menu {
            margin:-12px 0px 30px -18px;
        }
        .nav-menu li {
            display: unset;
        }
        
         .mobile-menu-btn {
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            background: var(--surface);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            border: 1px solid #e2e8f0;
			display: flex;
        }
        .mobile-menu-btn i {
            color: #20b7f4;
			animation: numberPop 5s var(--transition-bounce) infinite;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: var(--surface);
            z-index: 1000;
            padding: 100px 24px 40px;
            flex-direction: column;
            gap: 16px;
            transition: right var(--transition-smooth);
            border-left: 1px solid var(--border);
            box-shadow: var(--shadow-lg);
            backdrop-filter: blur(16px);
        }

        .mobile-nav.active {
            right: 0;
            display: flex;
        }
        .active .mobile-menu-btn {
            display: none;
        }

        .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:hover {
            width: 10px;
        }
        
        .page-media {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
            overflow: hidden;
            border: 1px solid rgba(93, 169, 221, 0.2);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 60px -20px rgba(11, 26, 42, 0.3);
        }
        .btnback {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #2c3e50;
            color: white;
            font-family: 'Segoe UI', 'Helvetica', Arial, sans-serif;
            font-size: 1.05rem;
            font-weight: 500;
            padding: 6px 22px 6px 12px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.2s ease;
            letter-spacing: 0.3px;
            cursor: pointer;
            border: 1px solid white;
            position: relative;
            top: -22px;
        }
        
        .btnback:hover {
            background: #0f2b44;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .btnback:active {
            transform: scale(0.98);
        }
        .header-media {
            background: linear-gradient(145deg, #0b1a2a 0%, #132b44 100%);
            color: white;
            padding: 3.5rem 3.5rem 2.5rem 3.5rem;
            border-bottom: 4px solid #f48120;
            position: relative;
            isolation: isolate;
        }
        .header-media h1 {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
            color: #f48120;
        }
        
        .header-media h2 {
            font-size: 1.1rem;
            color: #b0c4de;
            margin-top: 1.5rem;
            max-width: 100%;
            border-left: 4px solid #5da9dd;
            padding-left: 1.2rem;
        }
        .tabs {
            display: flex;
            background: white;
            border-bottom: 1px solid var(--border);
            overflow-x: auto;
        }
        .tab-btn {
            padding: 1.5rem 2.5rem;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray);
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
            border-bottom: 4px solid transparent;
        }
        .tab-btn.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .tab-content { padding: 4rem; }
        .tab-pane { display: none; animation: fadeIn 0.4s ease; }
        .tab-pane.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        .intro-text { color: var(--gray); max-width: 850px; margin-bottom: 2.5rem; font-size: 1.05rem; }
        
        .assets-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 2rem;
        }
        .asset-card {
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
            background: white;
        }
        .asset-card:hover { transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
        .asset-preview {
            height: 180px;
            background: #F1F5F9;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
        }
        .asset-info { padding: 1.8rem; text-align: center; }
        .asset-info h4 { margin-bottom: 1rem; color: var(--deepblue); }
        
        .btn-dl {
            display: inline-block;
            padding: 10px 24px;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .btn-dl:hover { background: var(--primary); color: white; }

        .press-box {
            background: #F8FAFC;
            padding: 2.5rem;
            border-radius: 16px;
            border-left: 6px solid var(--secondary);
            margin-bottom: 2.5rem;
        }
        .press-box h3 { color: var(--deepblue); margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; }
        .press-box p { color: var(--gray); margin-bottom: 1.5rem; }

        .color-swatch { height: 80px; border-radius: 8px; margin-bottom: 10px; cursor: pointer; transition: transform 0.2s; }
        .color-swatch:hover { transform: scale(1.05); }

        /* FOOTER */
        .media-footer {
            background: #0b1a2a;
            color: #94a3b8;
            padding: 2.5rem 3.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            font-size: 0.9rem;
            border-top: 3px solid #f48120;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .footer-left strong {
            color: white;
            font-size: 1.2rem;
        }
        
        .linksite{
            color:#9f732a;
            text-decoration:none;
        }
        .linksite:hover{
            color:var(--gold);
            text-decoration:none;
        }

        .code-law {
            font-family: 'JetBrains Mono', monospace;
            background: rgba(255,255,255,0.05);
            padding: 0.8rem 1.5rem;
            border-radius: 60px;
            color: var(--primary-orange);
            border: 1px solid rgba(244,129,32,0.4);
            font-weight: 500;
            letter-spacing: 1px;
        }
        .toast {
            position: fixed; bottom: 30px; right: 30px;
            background: var(--deepblue); color: white;
            padding: 12px 24px; border-radius: 40px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2); display: none; z-index: 1000;
        }
		
		/* --- PROGRESS BAR --- */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            z-index: 1001;
            background: transparent;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-gold);
            width: 0%;
            transition: width 0.1s ease;
            box-shadow: 0 0 20px var(--gold);
        }
		
		/* --- BACK TO TOP --- */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transition: all var(--transition-smooth);
            font-size: 1.3rem;
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-md);
        }

        #back-to-top.visible {
            opacity: 0.5;
            visibility: visible;
			background: rgb(0 0 0 / 0%);
			animation: pulse 8s var(--transition-bounce) infinite;
        }

        #back-to-top:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-5px);
            box-shadow: 0 2px 10px 3px var(--gold-glow);
			opacity: 1;
			background: var(--surface);
        }
        
        /* --- SCROLLBAR --- */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--onyx);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #000000, #000000, #ffaa00, #ffd700, #ffaa00, #000000, #000000);
            border-radius: var(--radius-full);
            border: 2px solid var(--onyx);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
        
        /* --- ANIMATIONS --- */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        [data-aos] {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }

        [data-aos].visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(1.1);box-shadow: 0 0 6px var(--blue-base); }
        }

        @keyframes numberPop {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        .value-updated {
            animation: numberPop 2.2s var(--transition-bounce) infinite;
            background-color: unset;
            color: var(--gold);
        }
        
        /* Style du bouton white toggle */
        .white-toggle {
            position: fixed;
            top: 27px;
            left: 20px;
            padding: 6px 6px 5px 6px;
            font-size: 16px;
            border: none;
            border-radius: 50%;
            background: #5d5d5d;
            color: #ffea7f;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 1000;
        }

        .white-toggle:hover {
            transform: scale(1.1);
        }

        body.white .white-toggle {
            background: #5d5d5d;
            color: #ffea7f;
        }
        /* =============================================
           WHITE MODE (active add class body.white)
           ============================================= */
        body.white {
            background-color: #f0f2f5 !important;
        }
        body.white header {
            background: rgba(255, 255, 255, 0.9) !important;
            border-bottom: 1px solid rgba(0,0,0,0.1) !important;
            backdrop-filter: blur(10px);
        }
        body.white header.scrolled {
            background: rgba(255,255,255,0.95) !important;
            border-bottom-color: rgba(0,0,0,0.2) !important;
        }
        body.white .logo-text {
            color: #0039b3 !important;
        }
        body.white .logo-icon {
            background: linear-gradient(135deg, #cccccc, #ffffff) !important;
            color: #000 !important;
            box-shadow: 0 0 5px #7f7f7f !important;
        }
        body.white .network-badge {
            background: rgb(0 147 255 / 16%) !important;
            border-color: rgb(0 71 209 / 66%) !important;
            color: #0343cb !important;
        }
        body.white .mobile-menu-btn {
            background: #ffffff !important;
            border: 1px solid #ccc !important;
            color: #333 !important;
        }
        body.white .mobile-menu-btn i {
            color: #0052ff !important;
        }
        body.white .mobile-nav {
            background: #f2f8ff !important;
            border-left: 1px solid #999999 !important;
        }
        body.white .mobile-nav a {
            color: #333 !important;
            border-bottom-color: #ccc !important;
        }
        body.white .mobile-nav a:hover {
            color: #000 !important;
            background: rgba(0,0,0,0.05) !important;
        }
        body.white .mobile-nav a i {
            color: #009f42 !important;
        }
        body.white .mobile-nav-close {
            background: #0052ff !important;
            color: #ffffff !important;
        }
        body.white .page-channel {
            background: rgba(255,255,255,0.98) !important;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
        }
		
		/* Style du bouton screen toggle */
		.screen-toggle {
			position: fixed;
			top: 27px;
			left: 70px;              /* à droite du white-toggle */
			padding: 6px 6px 5px 6px;
			font-size: 16px;
			border: none;
			border-radius: 50%;
			background: #5d5d5d;
			color: #ffea7f;
			cursor: pointer;
			transition: all 0.3s;
			z-index: 1000;
		}
		.screen-toggle:hover {
			transform: scale(1.1);
		}
		body.white .screen-toggle {
			background: #5d5d5d;
			color: #ffea7f;
		}

        /* --- MODALE PREMIUM --- */
        .modal-premium {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }
        .modal-premium.show {
            display: flex;
        }
        .modal-premium-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: blur(6px);
            animation: modalFadeIn 0.3s ease;
        }
        .modal-premium-card {
            position: relative;
            background: #ffffff;
            width: 90%;
            max-width: 850px;
            max-height: 85vh;
            border-radius: 24px;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
            z-index: 2;
            display: flex;
            flex-direction: column;
            animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
        }
        .modal-premium-header {
            background: #0F172A;
            color: white;
            padding: 1.8rem 2.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #F48120;
        }
        .modal-premium-header h3 {
            font-weight: 600;
            font-size: 1.4rem;
            letter-spacing: -0.3px;
            color: white;
        }
        .modal-premium-close {
            background: rgba(255,255,255,0.12);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            line-height: 1;
        }
        .modal-premium-close:hover {
            background: rgba(255,255,255,0.28);
            transform: rotate(90deg);
        }
        .modal-premium-body {
            padding: 2.2rem 2.5rem;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: #b0bec5 #f1f1f1;
            color: #334155;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
        }
        .modal-premium-body::-webkit-scrollbar { width: 6px; }
        .modal-premium-body::-webkit-scrollbar-track { background: #f1f1f1; }
        .modal-premium-body::-webkit-scrollbar-thumb { background: #b0bec5; border-radius: 3px; }
        .modal-premium-body section { margin-bottom: 2.2rem; }
        .modal-premium-body h4 {
            font-size: 1.15rem;
            font-weight: 600;
            color: #0F172A;
            margin: 0 0 0.8rem 0;
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            border-left: 4px solid #F48120;
            padding-left: 1rem;
        }
        .section-number {
            font-weight: 700;
            color: #F48120;
            font-size: 1.1rem;
        }
        .modal-premium-body p { line-height: 1.7; color: #334155; margin: 0.8rem 0; }
        .modal-premium-body ul, .modal-premium-body ol { padding-left: 1.8rem; color: #2c3e50; }
        .modal-premium-body li { margin-bottom: 0.5rem; line-height: 1.6; }
        .modal-premium-body code {
            background: #edf2f7;
            padding: 0.25rem 0.5rem;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: #c0392b;
        }
        .modal-premium-body a { color: #1E3A5F; text-decoration: none; font-weight: 500; }
        .modal-premium-body a:hover { text-decoration: underline; }

        @keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes modalSlideUp { from { opacity: 0; transform: translateY(30px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

        /* --- FORMULAIRE DE SOUMISSION --- */
        #submissionForm input:focus {
            outline: 2px solid #F48120;
            outline-offset: 2px;
            border-color: #F48120;
        }
        #submissionForm button[type="submit"]:hover {
            background: #e0741c !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(244,129,32,0.4) !important;
        }

        /* responsive */
        @media (max-width: 800px) {.mobile-nav {width: 275px;}h2 { font-size: 1.25rem !important; }.tab-nav { flex-direction: column; }.tab-link { border-radius: 0; }.footer-left { align-items: center; text-align: center; }.media-footer { flex-direction: column; text-align: center; }.tabs { flex-direction: column; }}
        @media (max-width: 700px) {.header-media { padding: 2rem; }.tab-content { padding: 2rem 1.5rem; }.tab-nav { flex-direction: column; }.tab-link { border-radius: 0; }.footer-left { align-items: center; text-align: center; }.media-footer { flex-direction: column; text-align: center; }.header-media h1 { font-size: 2.2rem; }.header-media h2 { font-size: 1.1rem; }h2 { font-size: 1.4rem; }h3 { font-size: 1.25rem; }}
        @media (max-width: 600px) {.mobile-nav {width: 250px}.header-media h1 { font-size: 1.7rem; }.header-media h2 { font-size: 0.8rem; }.subhead { font-size: 1rem; }.badge { font-size: 0.5rem; }.tab-link { font-size: 0.9rem; }.mica-warning { display: inline-grid; }h2 { font-size: 1.25rem; }.contract-card { font-size: 0.8rem; }h3 { font-size: 1.15rem; }.stat-card .number { font-size: 1.45rem; }.footer-left strong { font-size: 0.85rem; }.code-law { font-size: 1rem; }footer .code-law { font-size: 0.6rem; }.wallet-section { display: none; }#submissionForm { grid-template-columns: 1fr !important; }}
        @media (max-width: 480px) {.mobile-nav {width: 225px}.header-media h1 { font-size: 1.4rem; }.header-media h2 { font-size: 0.6rem; }.subhead { font-size: 0.7rem; }.badge { font-size: 0.5rem; }.tab-link { font-size: 0.8rem; }.mica-warning { display: inline-grid; }h2 { font-size: 1.1rem; }.contract-card { font-size: 0.6rem; }h3 { font-size: 1em; }.stat-card .number { font-size: 1.25rem; }.footer-left strong { font-size: 0.65rem; }.code-law { font-size: 0.85rem; }footer .code-law { font-size: 0.5rem; }}
        @media (max-width: 640px) {.modal-premium-card { width: 95%; max-height: 90vh; border-radius: 20px; }.modal-premium-header { padding: 1.5rem; }.modal-premium-header h3 { font-size: 1.1rem; }.modal-premium-body { padding: 1.5rem;  }}