        /* --- RESET & VARIABLES --- */
        :root {
            --bg-color: #131316;
            --text-color: #eeeeee;
            --grid-color: #222222;
            --font-header: 'Courier New', Courier, monospace;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --spacing-unit: 2rem;
            --highlight: #00ff41; /* Terminal green for status */
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        html { scroll-behavior: smooth; overflow-y: scroll; }

        /* --- BACKGROUND GRID --- */
        body {
            background-color: var(--bg-color);
            /* background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 40px 40px;
            background-position: center top; */
            color: var(--text-color);
            font-family: var(--font-main);
            line-height: 1.5;
            font-size: 16px;
            overflow-x: hidden;
        }

        /* --- ACCESSIBILITY: FOCUS STATES --- */
        /* Custom focus ring for keyboard users that fits the theme */
        :focus-visible {
            outline: 2px solid var(--highlight);
            outline-offset: 4px;
        }

        /* --- SCROLLBAR --- */
        ::-webkit-scrollbar { width: 12px; }
        ::-webkit-scrollbar-track { background: var(--bg-color); border-left: 1px solid var(--grid-color); }
        ::-webkit-scrollbar-thumb { background: var(--text-color); border: 2px solid var(--bg-color); }
        ::-webkit-scrollbar-thumb:hover { background: #fff; }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4 {
            font-family: var(--font-header);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.05em;
            line-height: 1.1;
        }

        h1 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        h2 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            margin-bottom: 3rem;
            border-bottom: 2px solid var(--text-color);
            padding-bottom: 1rem;
            display: inline-block;
        }

        h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            text-decoration: underline;
            text-underline-offset: 4px;
            text-decoration-thickness: 1px;
        }
        
        h3 a { 
            text-decoration: none; 
            color: inherit; 
            transition: color 0.2s;
        }
        
        h3 a:hover {
            color: var(--highlight);
        }

        p {
            max-width: 65ch;
            margin-bottom: 1.5rem;
            color: #ccc;
            font-size: 1.05rem;
        }

        a { color: inherit; text-decoration: none; position: relative; }


        /* --- LAYOUT UTILITIES --- */
        .container {
            width: 92%; max-width: 1400px; margin: 0 auto;
            border-left: 1px solid var(--grid-color); border-right: 1px solid var(--grid-color);
            background: var(--bg-color); padding: 0 4vw;
        }

        section { padding: 8rem 0; border-bottom: 1px solid var(--grid-color); }

        .grid-2, .grid-3 { display: grid; gap: 2rem; }
        .grid-2 { grid-template-columns: 1fr; }
        .grid-3 { grid-template-columns: 1fr; }
        @media (min-width: 768px) {
            .grid-2 { grid-template-columns: 1fr 1fr; }
            .grid-3 { grid-template-columns: repeat(3, 1fr); }
        }

        /* --- HEADER & NAV --- */
        header {
            position: fixed; top: 0; left: 0; right: 0; width: auto;
            padding: 1rem 4%; display: flex; justify-content: space-between; align-items: center;
            background: var(--bg-color); border-bottom: 2px solid var(--text-color);
            z-index: 100;
        }

        .logo-container { display: flex; align-items: center; gap: 1rem; }
        .logo-img { height: 32px; width: auto; filter: grayscale(100%) invert(1); }
        .brand {
            font-weight: 700; font-size: 1.2rem; letter-spacing: -0.05em;
            background: var(--text-color); color: var(--bg-color); padding: 0.2rem 0.5rem;
        }

        nav ul { list-style: none; display: flex; gap: 2rem; }
        nav a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
        nav a:hover {background: transparent;  color: var(--highlight);  text-shadow: 0 0 8px rgba(0, 255, 65, 0.4); }

        .resume-btn { 
            border: 2px solid var(--text-color); 
            padding: 0.3rem 1rem; 
            font-weight: bold; 
            transition: all 0.3s ease;
        }
        .resume-btn:hover { 
            border-color: var(--highlight); 
            color: var(--highlight) !important;
            background: rgba(0, 255, 65, 0.05);
            box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
        }

        /* --- CARDS & BLOG POSTS --- */
        .card, .blog-post {
            border: 2px solid var(--grid-color); padding: 2rem;
            transition: all 0.2s cubic-bezier(0, 0, 0.2, 1);
            background: var(--bg-color); position: relative;
            display: flex; flex-direction: column;
        }
                .card:hover, .blog-post:hover {
            border-color: var(--highlight);
            transform: translate(-4px, -4px);
            box-shadow: 4px 4px 0px var(--bg-color), 4px 4px 0px 2px var(--highlight);
        }
        
        .card:hover h3, .blog-post:hover h3 a { color: var(--highlight); text-decoration-color: var(--highlight); }
        .card:hover .project-link { color: var(--highlight); }
        .card:hover .tag { border-color: var(--highlight); color: var(--highlight); }
        .tags { margin-top: auto; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
        .tag {
            font-size: 0.7rem; border: 1px solid var(--grid-color);
            padding: 0.2rem 0.6rem; text-transform: uppercase; color: #888;
        }
        .project-link {
            display: inline-block; margin-top: 1.5rem;
            font-weight: 700; text-transform: uppercase; font-size: 0.8rem;
        }

        .blog-meta {
            font-size: 0.75rem; color: #888; margin-bottom: 0.75rem;
            font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
        }

        /* --- FORMS (Fixed UX: Visible Labels) --- */
        .form-group { margin-bottom: 1.5rem; }
        
        label {
            display: block; font-size: 0.8rem; font-weight: 700;
            color: #888; margin-bottom: 0.5rem; text-transform: uppercase;
        }

        input, textarea {
            width: 100%; background: transparent; border: 2px solid var(--grid-color);
            color: var(--text-color); padding: 1rem; font-family: var(--font-main);
        }
        input:focus, textarea:focus { outline: none; border-color: var(--text-color); background: #111; }
        
        /* Submit Button States */
        button.submit-btn {
            width: 100%; background: transparent; color: var(--text-color);
            border: 2px solid var(--text-color); padding: 1rem;
            font-family: var(--font-main); font-weight: 700; text-transform: uppercase;
            cursor: pointer; transition: all 0.2s;
        }
        button.submit-btn:hover { background: var(--text-color); color: var(--bg-color); }
        
        button.submit-btn:disabled {
            cursor: not-allowed;
            opacity: 0.7;
        }

        /* --- MOBILE --- */
        .menu-toggle { display: none; cursor: pointer; font-size: 1.5rem; }
        
        /* Mobile Scroll Indicator */
        .scroll-hint { display: none; color: #666; font-size: 0.8rem; margin-bottom: 0.5rem; text-align: right;}

        @media (max-width: 768px) {
            .menu-toggle { display: block; }
            .scroll-hint { display: block; }
            .container { width: 100%; border: none; padding: 0 5%; }
            nav {
                position: absolute; top: 100%; left: 0; width: 100%;
                background: var(--bg-color); border-bottom: 2px solid var(--text-color);
                max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
            }
            nav.open { max-height: 400px; padding: 1.5rem 0; }
            nav ul { flex-direction: column; align-items: center; gap: 1.5rem; }
            .grid-2, .grid-3 {
                display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
                gap: 1rem; padding-bottom: 2rem;
            }
            .card, .blog-post { flex: 0 0 85vw; scroll-snap-align: start; }
        }
        
        .status-dot {
            height: 10px; width: 10px; background-color: var(--highlight);
            border-radius: 50%; display: inline-block; margin-right: 8px;
            box-shadow: 0 0 8px var(--highlight);
        }
    