/* =========================================
           ELITE VARIABLES & COLORS
           ========================================= */
        :root {
            --bg-void: #030303;
            --bg-nebula: #08040d; 
            --bg-grid: #020508; 
            
            --bg-surface: rgba(12, 12, 14, 0.4);
            --bg-glass: rgba(20, 20, 24, 0.2);
            
            /* Core Identity */
            --tier1-color: #C5FF4A; /* Neon Lime */
            --tier2-color: #00F0FF; /* Cyan */
            --tier3-color: #B026FF; /* Purple */
            --donor-color: #FFD700; /* Gold */
            --architect-color: #FF2A5F; /* Crimson */
            --error-color: #FF2A5F;
            
            --text-main: #F4F4F5;
            --text-dim: #A1A1AA;
            --current-theme: var(--tier1-color);
            
            /* Fontes alteradas para visual Retro Terminal */
            --font-display: 'VT323', monospace;
            --font-mono: 'Share Tech Mono', monospace;
            
            /* Melhoria: Transições mais fluidas */
            --spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
            --ease-cinematic: cubic-bezier(0.25, 1, 0.25, 1);
        }

        /* =========================================
           RESET & SMOOTH SCROLLING
           ========================================= */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }

        body {
            background-color: var(--bg-void);
            color: var(--text-main);
            font-family: var(--font-mono);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            transition: background-color 0.5s;
        }
        
        /* Classes para mudar a cor tema consoante o User Role */
        body.theme-architect { --current-theme: var(--architect-color); }
        body.theme-operative { --current-theme: var(--tier2-color); }

        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-void); }
        ::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--current-theme); }

        /* =========================================
           PAGE LOAD GLITCH EFFECT (F5)
           ========================================= */
        .page-load-glitch {
            position: fixed; inset: 0; z-index: 100000;
            background: var(--bg-void);
            pointer-events: none;
            animation: fastBoot 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .page-load-glitch::before, .page-load-glitch::after {
            content: ''; position: absolute; inset: 0; background: var(--bg-void);
        }
        
        .page-load-glitch::before { background: rgba(197, 255, 74, 0.3); mix-blend-mode: overlay; animation: splitLeft 0.3s steps(2) forwards; }
        .page-load-glitch::after { background: rgba(176, 38, 255, 0.3); mix-blend-mode: overlay; animation: splitRight 0.3s steps(3) forwards; }

        @keyframes fastBoot {
            0% { opacity: 1; filter: invert(1) contrast(200%); clip-path: inset(10% 0 20% 0); }
            20% { opacity: 0.8; filter: invert(0) contrast(150%) hue-rotate(90deg); clip-path: inset(40% 0 40% 0); transform: translateX(-10px); }
            40% { opacity: 0.9; filter: invert(1); clip-path: inset(0 0 80% 0); transform: translateX(10px); }
            60% { opacity: 0.5; filter: invert(0); clip-path: inset(80% 0 0 0); transform: translateY(-10px); }
            80% { opacity: 0.8; filter: invert(0) contrast(120%); clip-path: inset(0 0 0 0); }
            100% { opacity: 0; display: none; }
        }

        @keyframes splitLeft { 0% { transform: translateX(-20px); clip-path: inset(20% 0 60% 0); } 50% { transform: translateX(15px); clip-path: inset(60% 0 10% 0); } 100% { transform: translateX(0); opacity: 0; } }
        @keyframes splitRight { 0% { transform: translateX(20px); clip-path: inset(10% 0 80% 0); } 50% { transform: translateX(-15px); clip-path: inset(80% 0 5% 0); } 100% { transform: translateX(0); opacity: 0; } }

        /* =========================================
           AUTHENTIC CRT & NOISE
           ========================================= */
        .crt-scanlines {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9999;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.2) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
            background-size: 100% 3px, 3px 100%; opacity: 0.8;
        }
        .crt-flicker { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9998; background: rgba(0,0,0,0.1); animation: flicker 0.15s infinite; }
        .crt-vignette { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9997; background: radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.8) 100%); }
        .noise {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none; z-index: 9996; opacity: 0.04;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* =========================================
           BACKGROUNDS & TRANSITIONS
           ========================================= */
        #void-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.6; }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 2rem); position: relative; z-index: 10; }
        .reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s var(--ease-cinematic); will-change: transform, opacity; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* =========================================
           CLICK EFFECTS (Botões)
           ========================================= */
        .btn-interactive:active { transform: scale(0.96) translateY(2px) !important; transition: transform 0.1s ease-out !important; }
        .ripple-effect {
            position: absolute; border-radius: 50%; transform: scale(0);
            animation: ripple-anim 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            background: rgba(255, 255, 255, 0.3); pointer-events: none; z-index: 100;
        }
        @keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

        /* =========================================
           GLOBAL NAVIGATION (Smart Header)
           ========================================= */
        .navbar {
            position: fixed; top: 0; width: 100%; padding: 1.5rem clamp(1.5rem, 5vw, 4rem); z-index: 1000;
            display: flex; justify-content: space-between; align-items: center;
            background: linear-gradient(to bottom, rgba(3,3,3,0.9), transparent);
            transition: transform 0.5s var(--ease-cinematic), background 0.5s var(--ease-cinematic), padding 0.5s var(--ease-cinematic);
            will-change: transform;
        }
        .navbar.scrolled {
            padding: 1rem clamp(1.5rem, 5vw, 4rem); background: rgba(3, 3, 3, 0.85);
            backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .navbar.nav-hidden { transform: translateY(-100%); }

        .nav-logo { 
            font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
            color: var(--text-main); text-decoration: none; letter-spacing: -1px;
            display: flex; align-items: center; gap: 0.5rem; text-shadow: 0 0 10px rgba(197, 255, 74, 0.2);
        }
        .nav-logo span { color: var(--current-theme); transition: color 0.4s; }

        .nav-links { display: flex; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
        .nav-links a {
            font-size: 0.8rem; color: var(--text-dim); text-decoration: none;
            text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700;
            transition: color 0.4s var(--spring); position: relative;
            display: flex; align-items: center; gap: 8px;
        }
        .nav-links a::before {
            content: '>'; position: absolute; left: -15px; color: var(--current-theme);
            opacity: 0; transform: translateX(-10px); transition: all 0.4s var(--spring);
            font-weight: 900; text-shadow: 0 0 8px var(--current-theme);
        }
        .nav-links a:hover { color: var(--text-main); }
        .nav-links a.active::before, .nav-links a:hover::before { opacity: 1; transform: translateX(0); }
        .nav-links a.active { color: var(--text-main); }

        /* Auth Button & Logged In Profile */
        .auth-container-nav { display: flex; align-items: center; height: 100%; }
        
        .btn-auth {
            background: transparent; color: var(--current-theme); font-family: var(--font-mono);
            font-weight: 700; font-size: 0.85rem; padding: 0.6rem 1.8rem;
            border: 1px solid var(--current-theme); transition: all 0.4s var(--spring);
            text-transform: uppercase; letter-spacing: 0.1em; position: relative; overflow: hidden;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
            cursor: pointer;
        }
        .btn-auth::before {
            content: ''; position: absolute; inset: 0; background: var(--current-theme);
            transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease-cinematic); z-index: -1;
        }
        .btn-auth:hover { color: var(--bg-void); border-color: var(--current-theme); box-shadow: 0 0 20px rgba(197, 255, 74, 0.4); }
        .btn-auth:hover::before { transform: scaleX(1); transform-origin: left; }

        /* Profile Dropdown Logic (Copied from your Hub setup) */
        .user-nav-profile { position: relative; display: flex; align-items: center; gap: 1rem; cursor: pointer; padding: 0.5rem; border-radius: 4px; transition: background 0.2s;}
        .user-nav-profile:hover { background: rgba(255,255,255,0.05); }
        .user-info-text { display: flex; flex-direction: column; align-items: flex-end; }
        .user-codename { font-family: var(--font-display); font-size: 1.3rem; color: #fff; line-height: 1; font-weight: 700; text-transform: uppercase;}
        .user-role { font-size: 0.55rem; color: var(--current-theme); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 900; transition: color 0.3s;}
        .mini-avatar { width: 36px; height: 36px; border-radius: 4px; border: 1px solid var(--current-theme); background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 0 10px rgba(0,0,0,0.5); transition: border-color 0.3s;}
        .mini-avatar img { width: 100%; height: 100%; object-fit: cover; display: none; }
        .mini-initials { font-family: var(--font-display); font-size: 1.2rem; color: #fff; font-weight: 900; }

        .dropdown-menu { position: absolute; top: 100%; right: 0; width: 220px; padding-top: 15px; opacity: 0; pointer-events: none; transition: opacity 0.2s, transform 0.2s; transform: translateY(-5px); z-index: 1001; }
        .user-nav-profile:hover .dropdown-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
        .dropdown-content { background: rgba(15, 15, 18, 0.98); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.9); backdrop-filter: blur(20px); display: flex; flex-direction: column; padding: 0.5rem; }
        .dropdown-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.8rem 1rem; color: var(--text-dim); text-decoration: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; border-radius: 2px; transition: all 0.2s; cursor: pointer; border: none; background: transparent; font-family: var(--font-mono); text-align: left; width: 100%;}
        .dropdown-item:hover { background: rgba(255,255,255,0.05); color: #fff; padding-left: 1.2rem; }
        .dropdown-item i { color: var(--current-theme); width: 16px; transition: color 0.3s;}
        .dropdown-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.5rem 0; }
        .dropdown-item.logout { color: var(--error-color); }
        .dropdown-item.logout i { color: var(--error-color); }
        .dropdown-item.logout:hover { background: rgba(255, 42, 95, 0.1); color: var(--error-color); }

        /* =========================================
           HERO SECTION
           ========================================= */
        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 6rem; background: var(--bg-void); overflow: hidden;}
        
        .hero-grid-floor {
            position: absolute; bottom: 0; left: -50%; width: 200%; height: 40vh;
            background-image: linear-gradient(rgba(197, 255, 74, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 255, 74, 0.15) 1px, transparent 1px);
            background-size: 50px 50px; transform: perspective(500px) rotateX(75deg); transform-origin: bottom center;
            mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 100%);
            z-index: 1; pointer-events: none; animation: gridMove 10s linear infinite;
        }

        @keyframes gridMove { 0% { background-position: 0 0; } 100% { background-position: 0 50px; } }

        .hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; width: 100%; position: relative; z-index: 10;}

        .sys-status {
            display: inline-flex; align-items: center; gap: 0.8rem; padding: 0.5rem 1.2rem; background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 2px; font-size: 0.75rem; letter-spacing: 0.15em;
            color: var(--text-dim); margin-bottom: 2rem; backdrop-filter: blur(10px); text-transform: uppercase;
        }
        .sys-line { width: 15px; height: 2px; background: var(--current-theme); box-shadow: 0 0 10px var(--current-theme); transition: background 0.4s;}

        .hero-text { position: relative; z-index: 2; width: 100%; max-width: 100%;}
        
        .title-wrapper { position: relative; display: block; width: fit-content; max-width: 100%; margin-bottom: 1.5rem; margin-left: 2.5rem; z-index: 1; }

        .text-backdrop {
            position: absolute; top: -1.5rem; bottom: -1rem; left: -2rem; right: -2rem; z-index: -1;
            background: rgba(10,10,12,0.65); border: 1px solid rgba(197, 255, 74, 0.2);
            backdrop-filter: blur(15px); border-radius: 4px; box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 40px rgba(197, 255, 74, 0.05);
            animation: backdropPulse 6s alternate infinite cubic-bezier(0.45, 0.05, 0.55, 0.95); overflow: hidden;
        }
        .text-backdrop::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(197, 255, 74, 0.08) 0%, transparent 100%); pointer-events: none; }
        .text-backdrop::before { content: ''; position: absolute; top: -50px; left: 0; width: 100%; height: 20px; background: linear-gradient(to bottom, transparent, rgba(197, 255, 74, 0.1), transparent); animation: cardScan 6s linear infinite; pointer-events: none; z-index: 1; }

        @keyframes backdropPulse {
            0% { transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1); border-color: rgba(197, 255, 74, 0.1); }
            50% { transform: perspective(1000px) rotateX(-1deg) rotateY(1deg) scale(1.02); border-color: rgba(197, 255, 74, 0.4); box-shadow: 0 30px 60px rgba(0,0,0,0.8), inset 0 0 60px rgba(197, 255, 74, 0.1); }
            100% { transform: perspective(1000px) rotateX(1deg) rotateY(2deg) scale(0.99); border-color: rgba(197, 255, 74, 0.2); }
        }

        .hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 0; text-transform: uppercase; word-wrap: break-word; }
        .hero-title span { color: var(--current-theme); text-shadow: 0 0 20px rgba(197, 255, 74, 0.3); transition: color 0.4s;}

        .type-cursor { display: inline-block; width: clamp(10px, 2vw, 20px); height: 0.8em; background: var(--current-theme); vertical-align: middle; margin-left: 8px; animation: blink 1s step-end infinite; }

        .hero-desc { font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--text-dim); line-height: 1.8; max-width: 500px; margin-bottom: 3rem; min-height: 3.6rem; }

        .btn-primary {
            background: rgba(0,0,0,0.5); border: 1px solid var(--current-theme); color: var(--current-theme);
            font-family: var(--font-mono); font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 700; padding: 1rem 2rem;
            text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.4s var(--spring); position: relative;
            overflow: hidden; display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 2px; backdrop-filter: blur(5px); cursor: pointer;
        }
        .btn-primary::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--current-theme); z-index: -1; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease-cinematic); }
        .btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
        .btn-primary:hover { color: var(--bg-void); box-shadow: 0 15px 30px rgba(197, 255, 74, 0.2); transform: translateY(-3px); }

        .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; }
        
        .floating-end {
            width: 120%; max-width: 650px; height: auto; object-fit: contain; position: relative; z-index: 10; left: 8%;
            filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8)) drop-shadow(0 0 20px rgba(197, 255, 74, 0.2)); animation: float 6s ease-in-out infinite;
        }

        .hud-corners span { position: absolute; width: 20px; height: 20px; border: 2px solid var(--current-theme); opacity: 0.5; transition: border-color 0.4s;}
        .hc-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
        .hc-tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
        .hc-bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
        .hc-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

        /* =========================================
           SERVICES / PROTOCOLS & SEAMLESS TRANSITION
           ========================================= */
        .services { padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem) 0; position: relative; overflow: hidden; background: linear-gradient(to bottom, var(--bg-void) 0%, #150226 100%); }
        .services::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(176, 38, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(176, 38, 255, 0.15) 1px, transparent 1px); background-size: 50px 50px; animation: gridMove 10s linear infinite; z-index: 0; pointer-events: none; mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%); }

        .cyber-separator { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(176, 38, 255, 0.8), rgba(0, 240, 255, 0.8), transparent); box-shadow: 0 0 15px rgba(176, 38, 255, 0.6); z-index: 10; }
        .cyber-separator::before { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: clamp(200px, 50vw, 350px); height: 8px; background: repeating-linear-gradient(45deg, rgba(0, 240, 255, 0.4) 0, rgba(0, 240, 255, 0.4) 2px, transparent 2px, transparent 8px); mask-image: linear-gradient(90deg, transparent, black, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, black, transparent); }

        .section-head { margin-bottom: clamp(3rem, 6vw, 5rem); position: relative; z-index: 2; }
        .section-tag { font-size: 0.75rem; color: var(--tier1-color); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; display: block; }
        .section-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; }
        
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; position: relative; z-index: 2; perspective: 1000px; contain: layout style; }

        .service-card { height: 380px; position: relative; overflow: hidden; border-radius: 4px; text-decoration: none; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem 2rem; background: rgba(12, 12, 15, 0.6); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; transform-style: preserve-3d; will-change: transform; transform: translateZ(0); }
        .service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--card-color); box-shadow: 0 0 15px var(--card-color); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease-cinematic); z-index: 5; }
        .service-card::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(var(--card-rgb), 0.1) 0%, transparent 60%); opacity: 0; transition: opacity 0.5s var(--spring); z-index: 0; }

        .s-card-1 { --card-color: var(--tier1-color); --card-rgb: 197, 255, 74; }
        .s-card-2 { --card-color: var(--tier2-color); --card-rgb: 0, 240, 255; }
        .s-card-3 { --card-color: var(--tier3-color); --card-rgb: 176, 38, 255; }

        .s-icon-wrapper { position: absolute; top: 2rem; right: 2rem; width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.4); border: 1px solid rgba(var(--card-rgb), 0.3); color: var(--card-color); box-shadow: inset 0 0 20px rgba(var(--card-rgb), 0.1); transition: all 0.6s var(--spring); z-index: 2; }
        .service-content { position: relative; z-index: 2; transform: translateZ(30px); transition: all 0.5s var(--spring); }
        .service-card h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; text-transform: uppercase; }
        .service-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; }

        .service-card:hover { border-color: rgba(var(--card-rgb), 0.3); box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(var(--card-rgb), 0.1); transform: translateY(-5px); }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover::after { opacity: 1; }
        .service-card:hover .s-icon-wrapper { transform: scale(1.1) rotate(5deg) translateZ(40px); background: rgba(var(--card-rgb), 0.1); border-color: var(--card-color); box-shadow: inset 0 0 30px rgba(var(--card-rgb), 0.3), 0 0 20px rgba(var(--card-rgb), 0.4); }

        /* =========================================
           PLANS (CLEARANCE COM ONDAS SUAVES)
           ========================================= */
        .plans { padding: clamp(6rem, 10vw, 8rem) 0 clamp(8rem, 12vw, 10rem) 0; position: relative; overflow: hidden; background: linear-gradient(to bottom, #150226 0%, var(--bg-grid) 25%); }
        .plans::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; z-index: 0; mask-image: repeating-radial-gradient(circle at center, black, black 10%, transparent 20%, transparent 30%); -webkit-mask-image: repeating-radial-gradient(circle at center, black, black 10%, transparent 20%, transparent 30%); mask-size: 200% 200%; animation: softWaves 20s linear infinite; opacity: 0.6; }
        @keyframes softWaves { 0% { mask-position: 0% 0%; } 100% { mask-position: 100% 100%; } }

        .plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 6rem; position: relative; z-index: 2; contain: layout style; }

        .plan-card { background: rgba(10, 10, 12, 0.7); border: 1px solid; padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem); border-radius: 4px; position: relative; backdrop-filter: blur(10px); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; overflow: hidden; will-change: transform; transform: translateZ(0); }
        .plan-card::after { content: ''; position: absolute; top: -50px; left: 0; width: 100%; height: 20px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.05), transparent); animation: cardScan 4s linear infinite; pointer-events: none; z-index: 1; }
        @keyframes cardScan { 0% { top: -50px; } 100% { top: 120%; } }

        .shimmer { position: absolute; top: 0; left: -150%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent); transform: skewX(-20deg); transition: left 0.7s var(--ease-cinematic); z-index: 10; pointer-events: none; }
        .plan-card:hover .shimmer { left: 150%; }

        .plan-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: currentColor; opacity: 0.5; transition: opacity 0.4s; }
        .plan-card:hover { transform: translateY(-10px); }
        .plan-card:hover::before { opacity: 1; box-shadow: 0 0 15px currentColor; }

        .ribbon { position: absolute; top: 25px; right: -40px; width: 160px; text-align: center; font-family: var(--font-display); font-size: 0.75rem; font-weight: 900; color: #000; text-transform: uppercase; letter-spacing: 0.1em; padding: 6px 0; transform: rotate(45deg); box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 10; }

        .tier-1 { border-color: rgba(197, 255, 74, 0.2); color: var(--tier1-color); }
        .tier-1:hover { border-color: var(--tier1-color); box-shadow: 0 20px 40px rgba(197, 255, 74, 0.1), inset 0 0 20px rgba(197, 255, 74, 0.02); }
        .tier-1 .ribbon { background: var(--tier1-color); }
        .tier-1 .btn-plan { border-color: var(--tier1-color); color: var(--tier1-color); }
        .tier-1 .btn-plan:hover { background: var(--tier1-color); color: #000; box-shadow: 0 0 20px rgba(197, 255, 74, 0.3);}

        .tier-2 { border-color: rgba(0, 240, 255, 0.3); background: rgba(0, 240, 255, 0.05); transform: scale(1.02); z-index: 5; color: var(--tier2-color);}
        .tier-2:hover { border-color: var(--tier2-color); box-shadow: 0 20px 50px rgba(0, 240, 255, 0.15), inset 0 0 20px rgba(0, 240, 255, 0.05); transform: scale(1.02) translateY(-10px); }
        .tier-2 .ribbon { background: var(--tier2-color); }
        .tier-2 .btn-plan { background: var(--tier2-color); color: #000; border: none; }
        .tier-2 .btn-plan:hover { background: #fff; box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);}

        .tier-3 { border-color: rgba(176, 38, 255, 0.2); color: var(--tier3-color);}
        .tier-3:hover { border-color: var(--tier3-color); box-shadow: 0 20px 40px rgba(176, 38, 255, 0.1), inset 0 0 20px rgba(176, 38, 255, 0.05); }
        .tier-3 .ribbon { background: var(--tier3-color); color: #fff;}
        .tier-3 .btn-plan { border-color: var(--tier3-color); color: var(--tier3-color); }
        .tier-3 .btn-plan:hover { background: var(--tier3-color); color: #fff; box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);}

        .p-tier-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; position: relative; z-index: 2;}
        .plan-card h3 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; text-transform: uppercase; line-height: 1; position: relative; z-index: 2;}
        .p-price { font-size: 1rem; color: var(--text-dim); margin-bottom: 2rem; position: relative; z-index: 2;}
        .p-price span { font-size: 1.5rem; font-weight: 700; color: #fff;}

        .p-list { list-style: none; flex-grow: 1; margin-bottom: 3rem; position: relative; z-index: 2;}
        .p-list li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.85rem; color: #aaa; margin-bottom: 1.2rem; line-height: 1.5; }
        .p-list i { margin-top: 2px; color: currentColor; }

        .btn-plan { width: 100%; padding: 1.2rem; background: transparent; border: 1px solid; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.4s var(--spring); border-radius: 2px; position: relative; z-index: 2; cursor: pointer; overflow: hidden; }

        /* -----------------------------------------
           DYNAMIC CLEARANCE BOX (LOGGED IN STATE)
           ----------------------------------------- */
        .clearance-box {
            background: linear-gradient(180deg, rgba(20,20,24,0.8) 0%, rgba(10,10,12,0.9) 100%);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; padding: 3rem;
            position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            max-width: 800px; margin: 0 auto 6rem auto; text-align: left; display: flex; gap: 3rem;
            transition: border-color 0.4s, box-shadow 0.4s;
        }
        .clearance-box::before {
            content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
            background: var(--current-theme); box-shadow: 0 0 15px var(--current-theme);
            transition: background 0.4s, box-shadow 0.4s;
        }
        .c-current-col { flex: 1; border-right: 1px dashed rgba(255,255,255,0.1); padding-right: 2rem;}
        .c-next-col { flex: 1; display: flex; flex-direction: column; justify-content: center;}
        .c-label { font-size: 0.75rem; color: #777; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem;}
        .c-value { font-family: var(--font-display); font-size: 3rem; color: var(--current-theme); font-weight: 900; line-height: 1; text-shadow: 0 0 10px rgba(255,255,255,0.1); text-transform: uppercase; transition: color 0.4s;}
        
        .c-perks { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin: 1.5rem 0;}
        .c-perks li { font-size: 0.85rem; color: var(--text-dim); display: flex; align-items: flex-start; gap: 0.5rem; }
        .c-perks li i { margin-top: 2px; transition: color 0.4s;}
        
        .btn-upgrade {
            width: 100%; padding: 1.2rem; background: transparent; border: 1px solid var(--current-theme);
            color: var(--current-theme); font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; transition: all 0.3s; border-radius: 2px;
        }

        /* =========================================
           DONATION SYNTHESIZER & LED TAPE
           ========================================= */
        .donation-wrapper { position: relative; max-width: 700px; margin: 0 auto; z-index: 2; width: 100%; }

        .led-tape-container { position: absolute; top: -15px; left: -25px; right: -25px; height: 35px; transform: rotate(-2deg); z-index: 10; overflow: hidden; border-top: 2px solid #fff; border-bottom: 2px solid #fff; box-shadow: 0 0 20px rgba(255, 215, 0, 0.3), 0 5px 15px rgba(0,0,0,0.8); background: #FFD700; background-image: repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(0,0,0,0.9) 15px, rgba(0,0,0,0.9) 30px); }
        .led-tape-track { display: flex; width: fit-content; height: 100%; align-items: center; animation: tapeMarquee 15s linear infinite; }
        .led-tape-track span { color: #fff; font-family: var(--font-mono); font-size: clamp(0.75rem, 1.5vw, 0.85rem); font-weight: 900; padding: 0 2rem; white-space: nowrap; letter-spacing: 0.1em; text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700; background: rgba(0,0,0,0.6); height: 100%; display: flex; align-items: center; }
        @keyframes tapeMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        .donation-box { background: rgba(8, 8, 10, 0.85); border: 1px solid rgba(255, 215, 0, 0.2); padding: clamp(2rem, 5vw, 4rem); border-radius: 4px; text-align: center; position: relative; overflow: hidden; backdrop-filter: blur(15px); box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
        .donation-box h4 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); color: #fff; margin-bottom: 1rem; text-transform: uppercase; font-weight: 900; margin-top: 1rem;}
        .donation-box p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.6; margin-bottom: 3rem; }

        .slider-wrap { margin-bottom: 3rem; text-align: left; }
        .s-info { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.5rem;}
        .s-label { font-size: 0.75rem; color: #666; letter-spacing: 0.1em; }
        .s-val { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 700; color: var(--text-main); line-height: 1; }

        input[type=range] { -webkit-appearance: none; width: 100%; background: transparent; cursor: pointer;}
        input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 24px; width: 24px; border-radius: 50%; background: var(--donor-color); margin-top: -10px; transition: transform 0.3s var(--spring); border: 4px solid var(--bg-void); box-shadow: 0 0 10px var(--donor-color);}
        input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.3); background: #fff; }
        input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; }
        input[type=range]:focus { outline: none; }

        .btn-donate { width: 100%; padding: 1.2rem; background: var(--donor-color); color: #000; border: none; font-family: var(--font-mono); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.4s var(--spring); display: flex; justify-content: center; align-items: center; gap: 0.8rem; border-radius: 2px; cursor: pointer; overflow: hidden; position: relative; }
        .btn-donate:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3); }

        /* =========================================
           FOOTER & SOCIAL DYNAMICS
           ========================================= */
        .footer { padding: 4rem 0 2rem 0; background: var(--bg-void); position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: clamp(2rem, 4vw, 3rem); margin-bottom: 2.5rem; }
        .f-brand h4 { font-family: var(--font-display); font-size: 1.5rem; color: #fff; margin-bottom: 0.8rem; }
        .f-brand p { font-size: 0.85rem; color: #777; max-width: 300px; line-height: 1.6; }
        .f-nav h5 { font-size: 0.75rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.2rem; }
        .f-links { display: flex; flex-direction: column; gap: 0.8rem; }
        .f-links a { font-size: 0.85rem; color: #777; text-decoration: none; transition: color 0.4s var(--spring); }
        .f-links a:hover { color: var(--tier1-color); padding-left: 5px;}

        .f-social { display: flex; gap: 1rem; flex-wrap: wrap; }
        .social-btn { width: 48px; height: 48px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #aaa; text-decoration: none; background: rgba(255,255,255,0.02); transition: all 0.5s var(--spring); position: relative; }
        .social-twitter:hover { border-color: #1DA1F2; background: #1DA1F2; color: #fff; transform: translateY(-10px) rotate(-12deg) scale(1.1); box-shadow: 0 10px 25px rgba(29, 161, 242, 0.5); }
        .social-youtube:hover { border-color: #FF0000; background: #FF0000; color: #fff; transform: translateY(-8px) rotate(15deg) scale(1.15); box-shadow: 0 10px 25px rgba(255, 0, 0, 0.5); }
        .social-github:hover { border-color: #fff; background: #fff; color: #000; transform: translateY(-12px) rotate(-5deg) scale(1.1); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4); }
        .social-instagram:hover { border-color: transparent; color: #fff; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); transform: translateY(-10px) rotate(8deg) scale(1.1); box-shadow: 0 10px 25px rgba(220, 39, 67, 0.5); }
        .social-tiktok:hover { border-color: #fff; background: #000; color: #fff; transform: translateY(-12px) rotate(-10deg) scale(1.1); box-shadow: -4px 4px 0 #fe0979, 4px -4px 0 #00f2fe, 0 10px 25px rgba(255, 255, 255, 0.2); }
        .social-discord:hover { border-color: #5865F2; background: #5865F2; color: #fff; transform: translateY(-8px) rotate(8deg) scale(1.1); box-shadow: 0 10px 25px rgba(88, 101, 242, 0.5); }

        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
        .copyright { font-size: 0.75rem; color: #555; text-transform: uppercase; letter-spacing: 0.1em; }
        .legal { display: flex; gap: 2rem; }
        .legal a { font-size: 0.75rem; color: #555; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s;}
        .legal a:hover { color: #fff; }

        /* =========================================
           ANIMATIONS
           ========================================= */
        @keyframes flicker { 0% { opacity: 0.85; } 50% { opacity: 0.75; } 100% { opacity: 0.85; } }
        @keyframes blink { 50% { opacity: 0; } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        /* =========================================
           CELESTIAL SYSTEM 
           ========================================= */
        .celestial-system {
            position: absolute; top: 15%; right: 8%; width: 450px; height: 450px; z-index: 0;
            pointer-events: none; opacity: 0.75; transition: filter 0.1s;
            transform: translate3d(var(--px, 0px), var(--py, 0px), 0); will-change: transform;
        }
        
        .holo-earth {
            position: absolute; inset: 50px; border-radius: 50%; background: rgba(0, 10, 15, 0.9);
            box-shadow: 0 0 50px rgba(0, 240, 255, 0.4), inset 0 0 40px rgba(0, 240, 255, 0.8);
            overflow: hidden; display: flex; justify-content: center; align-items: center; transform: translateZ(0); 
        }

        .holo-earth-map {
            position: absolute; top: 0; left: 0; width: 200%; height: 100%;
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
            background-size: 50% auto; background-position: center; background-repeat: repeat-x;
            opacity: 0.85; filter: invert(0.8) sepia(1) hue-rotate(130deg) saturate(400%) brightness(1.2) drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
            animation: rotateMap 40s linear infinite;
        }

        .holo-earth-grid {
            position: absolute; inset: -50%;
            background-image: linear-gradient(rgba(0, 240, 255, 0.2) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 240, 255, 0.2) 2px, transparent 2px);
            background-size: 30px 30px; border-radius: 50%;
            transform: rotateZ(var(--scroll-deg, 0deg)); will-change: transform;
            mask-image: radial-gradient(circle at center, black 40%, transparent 70%); -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
        }

        .holo-earth-shadow { position: absolute; inset: 0; border-radius: 50%; box-shadow: inset -25px -25px 40px rgba(0,0,0,0.9), inset 15px 15px 30px rgba(255,255,255,0.15); pointer-events: none; }
        .earth-ring { position: absolute; width: 100%; height: 100%; border: 1px solid rgba(0, 240, 255, 0.2); border-radius: 50%; pointer-events: none; }
        .ring-1 { transform: rotateX(65deg); }
        .ring-2 { transform: rotateY(65deg); }
        
        .moon-orbit { position: absolute; inset: -10px; border-radius: 50%; animation: orbitAnim 15s linear infinite; transform-style: preserve-3d; }
        .holo-moon { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; border-radius: 50%; background: var(--tier1-color); box-shadow: 0 0 20px var(--tier1-color), inset -4px -4px 8px rgba(0,0,0,0.7); }
        
        @keyframes rotateMap { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes orbitAnim { 0% { transform: rotateZ(0deg) rotateX(20deg); } 100% { transform: rotateZ(360deg) rotateX(20deg); } }

        .sys-glitch { animation: celestialGlitch 0.2s steps(2) infinite; }
        @keyframes celestialGlitch { 0% { transform: translate(0, 0) scale(1) skew(0deg); filter: hue-rotate(0deg) contrast(1); } 25% { transform: translate(-15px, 10px) scale(1.02) skew(10deg); filter: hue-rotate(90deg) contrast(1.5); } 50% { transform: translate(15px, -10px) scale(0.98) skew(-10deg); filter: hue-rotate(-90deg) contrast(1.2); } 75% { transform: translate(-10px, -15px) scale(1.04) skew(5deg); filter: hue-rotate(180deg) contrast(1.8); } 100% { transform: translate(0, 0) scale(1) skew(0deg); filter: hue-rotate(0deg) contrast(1); } }

        /* =========================================
           STARFIELD (Fundo interativo)
           ========================================= */
        .stars-layer { position: absolute; inset: -50px; z-index: 0; pointer-events: none; will-change: transform; opacity: 0.6; }
        .star { position: absolute; background: #fff; border-radius: 50%; will-change: opacity, transform; animation: twinkle var(--twinkle-dur) ease-in-out infinite alternate; }
        @keyframes twinkle { 0% { opacity: 0.1; transform: scale(0.8); } 100% { opacity: 0.8; transform: scale(1.2); } }

        /* =========================================
           MOBILE & TABLET ADJUSTMENTS (O FIX DO DEUS DO CÓDIGO)
           ========================================= */
        @media (max-width: 768px) {
            .hero { padding-top: 6rem; padding-bottom: 2rem; min-height: 100vh; flex-direction: column; justify-content: center; display: flex; }
            
            /* Destruindo a Grid e forçando Coluna Perfeita */
            .hero-grid { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; text-align: center; }
            
            .hero-text { order: 1; display: flex; flex-direction: column; align-items: center; width: 100%; text-align: center; z-index: 20; margin-top: 0;}
            .sys-status { margin: 0 auto 1.5rem auto; justify-content: center; }
            
            /* O Fix Cirúrgico para o Título não fugir */
            .title-wrapper { margin: 0 auto 1.5rem auto !important; padding: 0; display: inline-block; width: fit-content !important; left: 0; }
            .text-backdrop { left: -1rem; right: -1rem; top: -0.5rem; bottom: -0.5rem; }
            .hero-title { font-size: clamp(3rem, 12vw, 4rem); text-align: center; margin: 0; }
            
            .hero-desc { text-align: center; margin: 0 auto 2rem auto; max-width: 90%; }
            .hero-actions { display: flex; justify-content: center; width: 100%; }
            .btn-primary { width: 100%; max-width: 300px; justify-content: center; }

            .hero-visual { order: 2; margin-top: 0; z-index: 10; display: flex; justify-content: center; width: 100%;}
            .floating-end { left: 0; margin: 0 auto; max-width: 350px; width: 90%; } 
            
            /* Celestial System no Fundo, centrado */
            .celestial-system { 
                width: 280px; height: 280px; 
                top: 50%; right: auto; left: 50%; 
                transform: translate(-50%, -50%) translate3d(var(--px, 0px), var(--py, 0px), 0); 
                opacity: 0.15; z-index: 0; pointer-events: none !important; margin-top: -140px;
            }
            .holo-earth { inset: 30px; }
            
            /* Ajustes do Footer */
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
            .f-brand p { margin-inline: auto; }
            .f-social { justify-content: center; margin-inline: auto; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
            .legal { justify-content: center; }
            .led-tape-container { left: -15px; right: -15px; } 
            
            /* Logged In Plans Mobile Fix */
            .c-current-col { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 2rem;}
            .clearance-box { flex-direction: column; gap: 2rem; padding: 1.5rem;}
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            /* Tablet Fixes */
            .hero-grid { display: flex; flex-direction: column; gap: 3rem; text-align: center; margin-top: 2rem; }
            .hero-text { order: 1; display: flex; flex-direction: column; align-items: center; width: 100%; text-align: center; z-index: 20; }
            .sys-status, .hero-desc, .hero-actions { justify-content: center; margin-inline: auto; }
            
            .title-wrapper { margin: 0 auto 1.5rem auto !important; padding: 0; display: inline-block; width: fit-content !important; left: 0; }
            .hero-title { text-align: center; }
            
            .hero-visual { order: 2; margin-top: 0; z-index: 10; display: flex; justify-content: center; width: 100%; }
            .floating-end { left: 0; margin: 0 auto; max-width: 450px; width: 90%; }
            
            .celestial-system { 
                width: 380px; height: 380px; 
                top: 50%; right: auto; left: 50%; 
                transform: translate(-50%, -50%) translate3d(var(--px, 0px), var(--py, 0px), 0); 
                opacity: 0.25; z-index: 0; pointer-events: none !important; margin-top: -190px;
            }
            
            .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; gap: 3rem; }
            .f-brand { grid-column: 1 / -1; } 
            .f-brand p { max-width: 500px; margin-inline: 0; }
            .f-social { justify-content: flex-start; margin-inline: 0; }
            
            .clearance-box { flex-direction: column; gap: 2rem; padding: 2rem;}
            .c-current-col { border-right: none; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-right: 0; padding-bottom: 2rem;}
        }