/* =========================================
           ELITE VARIABLES & COLORS (Same as Home)
           ========================================= */
        :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);
            
            --tier1-color: #C5FF4A; /* Neon Lime */
            --tier2-color: #00F0FF; /* Cyan */
            --tier3-color: #B026FF; /* Purple */
            --donor-color: #FFD700; /* Gold */
            
            --text-main: #F4F4F5;
            --text-dim: #A1A1AA;
            
            --font-display: 'VT323', monospace;
            --font-mono: 'Share Tech Mono', monospace;
            
            --spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
            --ease-cinematic: cubic-bezier(0.25, 1, 0.25, 1);
        }

        /* =========================================
           RESET & CORE
           ========================================= */
        * { 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;
        }

        ::-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(--tier1-color); }

        .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); }

        /* =========================================
           OVERLAYS & CANVAS (Global)
           ========================================= */
        .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; } }

        .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"); }
        #void-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.6; }

        @keyframes flicker { 0% { opacity: 0.85; } 50% { opacity: 0.75; } 100% { opacity: 0.85; } }

        /* =========================================
           GLOBAL NAVIGATION
           ========================================= */
        .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);
        }
        .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; display: flex; align-items: center; text-shadow: 0 0 10px rgba(197, 255, 74, 0.2); }
        .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(--tier1-color); opacity: 0; transform: translateX(-10px); transition: all 0.4s var(--spring); font-weight: 900; text-shadow: 0 0 8px var(--tier1-color); }
        .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); }

        .btn-auth {
            background: transparent; color: var(--tier1-color); font-family: var(--font-mono); font-weight: 700; font-size: 0.85rem; padding: 0.6rem 1.8rem;
            border: 1px solid rgba(197, 255, 74, 0.3); 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(--tier1-color); 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(--tier1-color); box-shadow: 0 0 20px rgba(197, 255, 74, 0.4); }
        .btn-auth:hover::before { transform: scaleX(1); transform-origin: left; }

        /* =========================================
           ABOUT HERO
           ========================================= */
        .about-hero {
            position: relative; min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
            text-align: center; padding-top: 8rem; background: radial-gradient(circle at 50% 100%, rgba(176, 38, 255, 0.1) 0%, transparent 60%);
        }
        
        .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(176, 38, 255, 0.2); 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(--tier3-color); box-shadow: 0 0 10px var(--tier3-color); }

        .hero-title {
            font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); font-weight: 900; line-height: 0.9;
            color: #fff; text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 1.5rem;
            text-shadow: 0 0 40px rgba(176, 38, 255, 0.3);
        }
        .hero-title span { color: var(--tier3-color); }

        .hero-desc {
            font-size: clamp(0.9rem, 2vw, 1.1rem); color: var(--text-dim); line-height: 1.8;
            max-width: 600px; margin: 0 auto;
        }

        /* =========================================
           THE ORIGIN TIMELINE
           ========================================= */
        .origin-section { padding: 8rem 0; position: relative; background: var(--bg-void); }
        .origin-section::before {
            content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: 1px; height: 100%; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1) 10%, rgba(255,255,255,0.1) 90%, transparent);
        }

        .timeline-node {
            display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; width: 100%; margin-bottom: 6rem;
            position: relative;
        }
        
        .timeline-node:nth-child(even) { direction: rtl; }
        .timeline-node:nth-child(even) > * { direction: ltr; }
        
        .node-content { background: rgba(10,10,12,0.6); border: 1px solid rgba(255,255,255,0.05); padding: 3rem; backdrop-filter: blur(10px); border-radius: 2px; position: relative; }
        .node-content::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 2rem; height: 1px; background: rgba(255,255,255,0.2); }
        
        .timeline-node:nth-child(odd) .node-content::after { right: -2rem; }
        .timeline-node:nth-child(even) .node-content::after { left: -2rem; }

        /* Glowing Center Dot */
        .node-dot {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 12px; height: 12px; background: var(--bg-void); border: 2px solid var(--tier1-color);
            border-radius: 50%; z-index: 2; transition: all 0.4s var(--spring);
        }
        .timeline-node:hover .node-dot { background: var(--tier1-color); box-shadow: 0 0 20px var(--tier1-color); scale: 1.5; }

        .node-year { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.05); position: absolute; top: 1rem; right: 2rem; z-index: 0; pointer-events: none;}
        .timeline-node:nth-child(even) .node-year { right: auto; left: 2rem; }

        .node-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--tier1-color); margin-bottom: 1rem; position: relative; z-index: 1;}
        .node-text { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; position: relative; z-index: 1;}

        .node-empty { display: flex; align-items: center; justify-content: center; }
        /* Abstract Decorative Elements for Empty Sides */
        .abstract-shape {
            width: 200px; height: 200px; border: 1px solid rgba(255,255,255,0.05);
            display: flex; align-items: center; justify-content: center;
            animation: spinSlow 20s linear infinite;
        }
        .abstract-shape div { width: 100px; height: 100px; border: 1px solid rgba(197, 255, 74, 0.2); transform: rotate(45deg); }
        @keyframes spinSlow { 100% { transform: rotate(360deg); } }

        /* =========================================
           BEHIND THE SCENES (MASONRY GALLERY)
           ========================================= */
        .gallery-section { padding: 8rem 0; background: var(--bg-nebula); position: relative; border-top: 1px solid rgba(255,255,255,0.05); }
        
        .gallery-header { margin-bottom: 4rem; text-align: center; }
        .gallery-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; margin-bottom: 1rem;}
        .gallery-title span { color: var(--tier2-color); }
        
        .masonry-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem; grid-auto-rows: 250px;
        }

        .gallery-item {
            position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.05);
            background: #000; border-radius: 2px;
            /* 3D Tilt Logic handled by JS */
            transform-style: preserve-3d;
        }
        
        /* Make some items span two rows for that masonry look */
        .gallery-item.tall { grid-row: span 2; }
        .gallery-item.wide { grid-column: span 2; }
        @media (max-width: 768px) { .gallery-item.wide { grid-column: span 1; } }

        .gallery-img {
            width: 100%; height: 100%; object-fit: cover;
            filter: grayscale(100%) brightness(0.4); transition: all 0.6s var(--ease-cinematic);
            transform: translateZ(-30px) scale(1.1); /* Inner Parallax */
        }

        .gallery-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
            opacity: 0; transition: opacity 0.4s; transform: translateZ(30px);
        }
        
        .gallery-item:hover .gallery-img { filter: grayscale(0%) brightness(0.8); transform: translateZ(-50px) scale(1.15); }
        .gallery-item:hover .gallery-overlay { opacity: 1; }

        .gallery-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--tier2-color); letter-spacing: 0.1em; margin-bottom: 0.5rem; text-transform: uppercase;}
        .gallery-caption { font-family: var(--font-display); font-size: 1.2rem; color: #fff; font-weight: 700; }

        /* =========================================
           CALL TO ACTION BANNER
           ========================================= */
        .cta-section { padding: 8rem 0; background: var(--bg-grid); text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
        .cta-box {
            max-width: 800px; margin: 0 auto; background: rgba(5,5,5,0.8);
            border: 1px solid rgba(197, 255, 74, 0.3); padding: 5rem 3rem;
            position: relative; overflow: hidden; backdrop-filter: blur(10px);
        }
        .cta-box::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(to right, transparent, rgba(197, 255, 74, 0.1), transparent);
            transform: skewX(-20deg); animation: scanlight 5s linear infinite;
        }
        @keyframes scanlight { 0% { left: -100%; } 100% { left: 200%; } }

        .cta-title { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: #fff; margin-bottom: 1.5rem; text-transform: uppercase; }
        .cta-desc { font-size: 1rem; color: var(--text-dim); margin-bottom: 3rem; }

        .btn-cta {
            background: var(--tier1-color); color: #000; border: none;
            font-family: var(--font-mono); font-size: 1rem; font-weight: 700;
            padding: 1.2rem 3rem; text-transform: uppercase; letter-spacing: 0.1em;
            cursor: pointer; transition: all 0.4s var(--spring);
            display: inline-flex; align-items: center; gap: 0.8rem;
            clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
        }
        .btn-cta:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(197, 255, 74, 0.4); background: #fff; }

        /* =========================================
           FOOTER (Same as Home)
           ========================================= */
        .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); }

        .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; }

        /* =========================================
           RESPONSIVE
           ========================================= */
        @media (max-width: 768px) {
            .navbar { padding: 1.5rem 2rem; }
            .nav-links { display: none; }
            .about-hero { padding-top: 6rem; }
            .hero-title { font-size: 3rem; }
            .timeline-node { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
            .timeline-node:nth-child(even) { direction: ltr; }
            .node-content::after { display: none; }
            .origin-section::before { left: 2rem; }
            .node-dot { left: 2rem; }
            .node-empty { display: none; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
            .f-brand p, .f-social { margin-inline: auto; justify-content: center; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
            .legal { justify-content: center; }
        }