
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #667eea;
            --secondary: #984ba2;
            --accent: #f093fb;
            --bg-primary: #0f0f23;
            --bg-secondary: #1a1a2e;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a0;
            --glass: rgba(255, 255, 255, 0.1);
        }
        
        [data-theme="light"] {
            --primary: #4f46e5;
            --secondary: #be17c4;
            --accent: #ec4899;
            --bg-primary: #f8fafc;
            --bg-secondary: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --glass: rgba(0, 0, 0, 0.1);
        }
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        .font-mono {
            font-family: 'JetBrains Mono', monospace;
        }
        
        body {
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            cursor: none;
        }
        
        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: transform 0.1s ease;
        }
        
        .cursor-trail {
            position: fixed;
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.7;
        }
        
        /* Interactive Particles */
        .particle-system {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.6;
            transition: all 0.3s ease;
        }
        
        /* Diamond 3D Photo Container */
        .diamond-container {
            width: 250px;
            height: 250px;
            position: relative;
            margin: 0 auto;
            transform-style: preserve-3d;
            animation: diamondFloat 6s ease-in-out infinite;
        }
        
        .diamond {
            width: 200px;
            height: 200px;
            position: absolute;
            top: 25px;
            left: 25px;
            transform-style: preserve-3d;
            animation: diamondRotate 20s linear infinite;
        }
        
        .diamond-face {
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.8) 0%, 
                rgba(118, 75, 162, 0.8) 50%, 
                rgba(240, 147, 251, 0.8) 100%);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            transition: all 0.3s ease;
        }
        
        .diamond-face:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
        .diamond-face:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
        .diamond-face:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
        .diamond-face:nth-child(4) { transform: rotateY(270deg) translateZ(100px); }
        
        .diamond:hover .diamond-face {
            background: linear-gradient(135deg, 
                rgba(240, 147, 251, 0.9) 0%, 
                rgba(102, 126, 234, 0.9) 50%, 
                rgba(118, 75, 162, 0.9) 100%);
            transform: scale(1.1);
        }
        
        @keyframes diamondFloat {
            0%, 100% { transform: translateY(0px) rotateX(10deg); }
            50% { transform: translateY(-20px) rotateX(-10deg); }
        }
        
        @keyframes diamondRotate {
            0% { transform: rotateY(0deg) rotateX(15deg); }
            100% { transform: rotateY(360deg) rotateX(15deg); }
        }
        
        /* Glassmorphism Cards */
        .glass-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .glass-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
            border-color: var(--primary);
        }
        
        .glass-card:hover::before {
            left: 100%;
        }
        
        /* Liquid Morphing Shapes */
        .liquid-shape {
            position: absolute;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            border-radius: 50%;
            opacity: 0.1;
            animation: liquidMorph 8s ease-in-out infinite;
        }
        
        .liquid-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }
        
        .liquid-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: -5%;
            animation-delay: -2s;
        }
        
        .liquid-shape:nth-child(3) {
            width: 400px;
            height: 400px;
            bottom: -20%;
            left: 30%;
            animation-delay: -4s;
        }
        
        @keyframes liquidMorph {
            0%, 100% {
                border-radius: 50% 50% 50% 50%;
                transform: rotate(0deg) scale(1);
            }
            25% {
                border-radius: 60% 40% 30% 70%;
                transform: rotate(90deg) scale(1.1);
            }
            50% {
                border-radius: 30% 70% 60% 40%;
                transform: rotate(180deg) scale(0.9);
            }
            75% {
                border-radius: 70% 30% 40% 60%;
                transform: rotate(270deg) scale(1.05);
            }
        }
        
        /* Breathing Animation */
        .breathe {
            animation: breathe 4s ease-in-out infinite;
        }
        
        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* Wave Effect */
        .wave-container {
            position: relative;
            overflow: hidden;
        }
        
        .wave {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            animation: wave 3s ease-in-out infinite;
        }
        
        @keyframes wave {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        /* Skill Orbs */
        .skill-orb {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
            cursor: pointer;
            margin: 0 auto;
        }
        
        .skill-orb::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .skill-orb:hover {
            transform: scale(1.1) rotateY(180deg);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
        }
        
        .skill-orb:hover::before {
            opacity: 1;
        }
        
        /* Project Cards with AR Effect */
        .ar-card {
            background: var(--glass);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            transition: all 0.4s ease;
            transform-style: preserve-3d;
            position: relative;
        }
        
        .ar-card:hover {
            transform: rotateX(10deg) rotateY(10deg) translateZ(20px);
            box-shadow: 
                0 30px 60px rgba(102, 126, 234, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        .ar-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                transparent 50%, 
                rgba(102, 126, 234, 0.1) 100%);
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .ar-card:hover::after {
            opacity: 1;
        }
        
        /* Asymmetric Grid */
        .asymmetric-layout {
            display: grid;
            grid-template-columns: 1fr 2fr 1.5fr;
            grid-template-rows: auto auto auto auto;
            gap: 30px;
            margin: 80px 0;
        }
        
        .layout-item-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
        .layout-item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
        .layout-item-3 { grid-column: 3 / 4; grid-row: 1 / 4; }
        .layout-item-4 { grid-column: 1 / 3; grid-row: 3 / 4; }
        .layout-item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
        
        /* Typewriter with Glitch */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid var(--primary);
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: var(--primary); }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .asymmetric-layout {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            
            .layout-item-1,
            .layout-item-2,
            .layout-item-3,
            .layout-item-4,
            .layout-item-5 {
                grid-column: 1;
                grid-row: auto;
            }
            
            .diamond-container {
                width: 200px;
                height: 200px;
            }
            
            .diamond,
            .diamond-face {
                width: 150px;
                height: 150px;
            }
        }
        
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
  