        :root {
            /* --- GENIUS LEVEL COLOR PALETTE (Midnight Theme) --- */
            --bg-dark: #0f172a;       /* Deep Navy */
            --bg-card: #1e293b;       /* Slate 800 */
            --primary: #818cf8;       /* Indigo 400 (Brighter for Dark Mode) */
            --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
            --secondary: #2dd4bf;     /* Teal for accents */
            
            --text-main: #f8fafc;     /* White/Slate 50 */
            --text-muted: #94a3b8;    /* Slate 400 */
            
            --glass: rgba(30, 41, 59, 0.7);
            --glass-border: 1px solid rgba(255, 255, 255, 0.08);
            
            --nav-height: 70px;

            /* Fonts */
            --font-hand: 'Patrick Hand', cursive;  
            --font-body: 'Nunito', sans-serif;     
            --font-code: 'JetBrains Mono', monospace;
        }

        /* --- GLOBAL SETTINGS --- */
        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }
        
        html { scroll-behavior: smooth; }

        body { 
            font-family: var(--font-body); 
            /* Rich Gradient Background */
            background: radial-gradient(circle at top right, #1e1b4b, #0f172a);
            background-attachment: fixed;
            color: var(--text-main); 
            padding-top: var(--nav-height); 
            overflow-x: hidden; 
            font-size: 16px; 
            line-height: 1.6;
            min-height: 100vh;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        
        h1, h2, h3, h4 { font-family: var(--font-hand); letter-spacing: 0.5px; line-height: 1.2; color: #fff; }
        
        /* --- NAVIGATION (Glassmorphism) --- */
        nav {
            position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-height);
            background: rgba(15, 23, 42, 0.85); /* Semi-transparent dark */
            backdrop-filter: blur(12px);         /* Blur effect */
            border-bottom: var(--glass-border); 
            display: flex; justify-content: space-between; align-items: center; padding: 0 5%; z-index: 1000;
        }
        .logo { font-size: 1.6rem; font-weight: 700; color: #fff; }
        .logo span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        
        .nav-links { display: flex; gap: 25px; align-items: center; }
        .nav-links a { font-weight: 600; color: var(--text-muted); font-size: 1rem; position: relative; }
        .nav-links a:hover, .nav-links a.active { color: var(--primary); }
        
        /* Underline animation for links */
        .nav-links a::after {
            content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
            background: var(--primary); transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.btn-hire::after { display: none; }


        .btn-hire { 
            background: var(--primary-gradient); color: white !important; 
            padding: 8px 22px; border-radius: 50px; 
            font-size: 0.95rem !important; font-weight: 600;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
            transition: transform 0.2s;
        }
        .btn-hire:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5); }

        .dropdown { position: relative; }
        .dropdown-content {
            display: none; position: absolute; top: 100%; left: -10px;
            background: var(--bg-card); min-width: 170px; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            border-radius: 8px; padding: 8px; border: var(--glass-border);
        }
        .dropdown:hover .dropdown-content { display: block; animation: fadeIn 0.3s ease; }
        .dropdown-content a { display: block; padding: 8px 12px; font-size: 0.9rem; border-radius: 4px; color: var(--text-muted); }
        .dropdown-content a:hover { background: rgba(99, 102, 241, 0.1); color: var(--primary); }
        .dropdown-content a::after { display: none; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }



        /* footer */
              /* --- FOOTER --- */
        footer { background: #020617; padding: 50px 0 25px; border-top: 1px solid rgba(255,255,255,0.05); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        
        .footer-brand h3 { font-size: 1.8rem; color: #fff; margin-bottom: 15px; }
        .footer-brand p { font-size: 0.95rem; color: #64748b; max-width: 300px; }
        .social-icons { margin-top: 20px; }
        .social-icons a { 
            margin-right: 15px; color: #94a3b8; font-size: 1.2rem; transition: 0.3s; 
            display: inline-block;
        }
        .social-icons a:hover { color: var(--primary); transform: scale(1.2); }
        
        .footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; color: #fff; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { font-size: 0.95rem; color: #94a3b8; transition: 0.2s; }
        .footer-col ul li a:hover { color: var(--primary); padding-left: 5px; }

        /* --- MOBILE --- */
        .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }
        .hamburger div { width: 30px; height: 3px; background: #fff; border-radius: 2px; }

        @media (max-width: 768px) {
            .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-text { order: 2; }
            .hero-img-box { order: 1; justify-content: center; display: flex; }
            .hero h1 { font-size: 2.2rem; }
            .hero-btns { justify-content: center; }
            
            .nav-links { 
                display: none; position: absolute; top: var(--nav-height); left: 0; 
                width: 100%; background: var(--bg-card); flex-direction: column; 
                padding: 30px; border-bottom: 1px solid rgba(255,255,255,0.1);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }
            .nav-links.active { display: flex; }
            .hamburger { display: flex; }
            
            .log-row { grid-template-columns: 1fr auto; padding: 20px; gap: 10px; }
            .log-id, .log-tags { display: none; }
            .log-info span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 250px; }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
            .footer-brand p { margin: 0 auto 15px; }
        }