        /*
         * ----------------------------------------------------
         * Core Styles
         * These are the styles from your original code.
         * I've kept them exactly as you provided to maintain the UI.
         * ----------------------------------------------------
         */
        :root {
            --font-title: 'Orbitron', sans-serif;
            --font-body: 'Roboto Mono', monospace;
            --bg-color: #0a0a0a;
            --text-color: #e0e0e0;
            --accent-lime: #bfff00;
            --accent-magenta: #ff00c1;
            --glow-lime: rgba(191, 255, 0, 0.6);
            --glow-magenta: rgba(255, 0, 193, 0.6);
            --card-bg: rgba(30, 30, 30, 0.4);
            --card-border: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-color);
            color: var(--text-color);
            position: relative;
            overflow-x: hidden;
            min-height: 100vh;
        }

        #three-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .main-title {
            font-family: var(--font-title);
            font-size: clamp(3rem, 10vw, 5rem);
            color: #fff;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            position: relative;
            animation: flicker 4s infinite alternate;
        }

        .main-title::after {
            content: 'anshu.fun';
            position: absolute;
            left: 2px;
            top: 0;
            color: var(--accent-lime);
            text-shadow: -2px 0 var(--accent-magenta);
            clip-path: inset(50% 0 50% 0);
            animation: glitch 2s infinite;
        }

        .subtitle-wrapper {
            border-right: 2px solid var(--text-color);
            white-space: nowrap;
            overflow: hidden;
            animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
            display: inline-block;
            max-width: 100%;
        }

        .project-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            text-decoration: none;
            color: var(--text-color);
            border-radius: 0.75rem;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }

        .project-card:hover {
            transform: translateY(-10px) perspective(1200px) rotateX(2deg) rotateY(-2deg);
            border-color: var(--accent-lime);
            box-shadow: 0 0 15px var(--glow-lime), 0 0 20px var(--glow-magenta);
            animation: pulsate 2s infinite alternate;
        }

        .footer-index{
           background: var(--card-bg);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
            text-decoration: none;
            color: var(--text-color);
            border-radius: 0.75rem;
            position: relative;
            overflow: hidden;
            isolation: isolate;  
        }
        .footer-index:hover {
            transform: translateY(-10px) perspective(1200px) rotateX(2deg) rotateY(-2deg);
            border-color: var(--accent-lime);
            box-shadow: 0 0 15px var(--glow-lime), 0 0 20px var(--glow-magenta);
            animation: pulsate 2s infinite alternate;
        }

        .legal-text{
            color: white;
        }

        .project-card-image {
            width: 100%;
            height: 185px;
            object-fit: cover;
            filter: grayscale(80%);
            transition: all 0.5s ease-in-out;
        }

        .project-card:hover .project-card-image {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .card-content {
            padding: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .card-title {
            font-family: var(--font-title);
            font-size: 1.25rem;
            color: var(--accent-lime);
            margin-bottom: 0.5rem;
        }

        .card-description {
            font-size: 0.9rem;
            color: #a0a0a0;
        }

        .card-arrow {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            color: var(--accent-lime);
            font-size: 1.8rem;
            opacity: 0.7;
            transition: transform 0.3s ease-out, opacity 0.3s ease-out;
        }

        .project-card:hover .card-arrow {
            transform: translateX(5px);
            opacity: 1;
        }

        .featured-card {
            border-color: var(--accent-magenta);
            box-shadow: 0 0 20px var(--glow-magenta), 0 0 30px var(--glow-magenta);
            animation: featured-pulsate 2.5s infinite alternate;
            position: relative;
            z-index: 10;
            transform: scale(1.02);
        }

        .featured-card:hover {
            box-shadow: 0 0 25px var(--glow-lime), 0 0 40px var(--glow-magenta), 0 0 60px var(--glow-magenta);
        }

        .featured-card::before {
            content: '✨ FEATURED';
            font-family: var(--font-title);
            position: absolute;
            top: 1rem;
            left: -10px;
            background-color: var(--accent-magenta);
            color: #fff;
            padding: 0.25rem 1rem;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            z-index: 5;
            transform: rotate(-5deg);
            border-radius: 0 10px 10px 0;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        /* Keyframe Animations */
        @keyframes flicker {

            0%,
            100% {
                opacity: 1;
            }

            50.2% {
                opacity: 0.7;
            }
        }

        @keyframes glitch {
            0% {
                clip-path: inset(40% 0 60% 0);
            }

            20% {
                clip-path: inset(10% 0 85% 0);
            }

            40% {
                clip-path: inset(55% 0 20% 0);
            }

            60% {
                clip-path: inset(30% 0 70% 0);
            }

            80% {
                clip-path: inset(80% 0 5% 0);
            }

            100% {
                clip-path: inset(40% 0 60% 0);
            }
        }

        @keyframes typing {
            from {
                width: 0
            }

            to {
                width: 100%
            }
        }

        @keyframes blink-caret {

            from,
            to {
                border-color: transparent
            }

            50% {
                border-color: var(--text-color);
            }
        }

        @keyframes pulsate {
            from {
                box-shadow: 0 0 15px var(--glow-lime), 0 0 20px var(--glow-magenta);
            }

            to {
                box-shadow: 0 0 25px var(--glow-lime), 0 0 35px var(--glow-magenta);
            }
        }

        @keyframes featured-pulsate {
            from {
                box-shadow: 0 0 20px var(--glow-magenta), 0 0 30px var(--glow-magenta);
            }

            to {
                box-shadow: 0 0 30px var(--glow-magenta), 0 0 50px var(--glow-magenta);
            }
        }

