@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;700&display=swap');
        
        :root {
            --bg-primary: #0d1117;
            --bg-secondary: #161b22;
            --bg-tertiary: #21262d;
            --text-primary: #c9d1d9;
            --text-secondary: #8b949e;
            --accent-blue: #58a6ff;
            --accent-purple: #bc8cff;
            --accent-orange: #d29922;
            --accent-green: #3fb950;
            --accent-yellow: #d2a106;
            --accent-red: #f85149;
            --border-color: #30363d;
            --glass-bg: rgba(13, 17, 23, 0.8);
            --glass-border: rgba(48, 54, 61, 0.5);
            --neon-blue: #00d9ff;
            --neon-purple: #9d00ff;
            --grid-color: rgba(188, 140, 255, 0.4);
            --grid-size: 25px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Fira Code', monospace;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
            cursor: none;
        }
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-blue);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transition-property: background, transform;
            will-change: transform;
        }
        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(88, 166, 255, 0.1);
            border-radius: 50%;
            position: fixed;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
            will-change: transform;
        }
        .cursor.hover {
            transform: translate(-50%, -50%) scale(1.5);
            background: rgba(88, 166, 255, 0.2);
        }
        .cursor-follower.hover {
            transform: translate(-50%, -50%) scale(1.5);
        }
        /* Loading Screen - Enhanced with 60fps Smooth Transition */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, var(--bg-primary) 0%, #0a0d13 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            transition: none;
            overflow: hidden;
            will-change: opacity, transform, filter;
        }
        .loading-screen.hidden {
            opacity: 0;
            visibility: hidden;
            transform: scale(1.1);
        }
        
        /* Enhanced Loading Screen Background */
        .loading-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .loading-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 200%;
            height: 100px;
            background: linear-gradient(180deg, transparent, rgba(88, 166, 255, 0.1));
            animation: wave 3s linear infinite;
            will-change: transform;
        }
        
        @keyframes wave {
            0% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(-25%) translateY(-20px); }
            100% { transform: translateX(-50%) translateY(0); }
        }
        
        /* Loading Screen Exit Animation - 60fps Optimized */
        .loading-screen.exit {
            animation: loadingExit 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        
        @keyframes loadingExit {
            0% {
                opacity: 1;
                transform: scale(1) rotate(0deg);
                filter: blur(0px);
            }
            30% {
                opacity: 0.9;
                transform: scale(1.05) rotate(1deg);
                filter: blur(1px);
            }
            60% {
                opacity: 0.6;
                transform: scale(1.1) rotate(3deg);
                filter: blur(3px);
            }
            100% {
                opacity: 0;
                transform: scale(1.2) rotate(5deg);
                filter: blur(8px);
                visibility: hidden;
            }
        }
        
        /* TypeScript Code Background */
        .ts-code-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            overflow: hidden;
            z-index: -1;
        }
        .ts-code-line {
            position: absolute;
            font-family: 'Fira Code', monospace;
            font-size: 14px;
            color: var(--accent-green);
            white-space: nowrap;
            opacity: 0;
            animation: codeLineAppear 0.5s ease forwards;
            will-change: opacity;
        }
        @keyframes codeLineAppear {
            to { opacity: 1; }
        }
        
        /* Enhanced Icon Container */
        .icon-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }
        
        /* TypeScript Brackets with Animation */
        .ts-bracket {
            position: absolute;
            font-size: 120px;
            color: var(--accent-purple);
            opacity: 0.1;
            z-index: 1;
            animation: bracketPulse 2s ease-in-out infinite;
            will-change: opacity, transform;
        }
        
        @keyframes bracketPulse {
            0%, 100% { opacity: 0.1; transform: scale(1); }
            50% { opacity: 0.2; transform: scale(1.05); }
        }
        
        .ts-bracket.left {
            left: -80px;
            top: 50%;
            transform: translateY(-50%);
        }
        .ts-bracket.right {
            right: -80px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        /* Icon with Enhanced TypeScript Styling */
        .ts-icon {
            position: relative;
            width: 80px;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: scale(0) rotate(180deg);
            animation: iconReveal 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            will-change: opacity, transform;
        }
        
        .ts-icon::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid var(--accent-blue);
            border-radius: 12px;
            opacity: 0;
            transform: scale(0.8);
            animation: iconBorder 1.5s ease infinite;
            will-change: opacity, transform;
        }
        
        .ts-icon::after {
            content: "";
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border: 1px solid var(--accent-purple);
            border-radius: 8px;
            opacity: 0;
            transform: scale(0.9);
            animation: iconBorderInner 1.5s ease infinite reverse;
            will-change: opacity, transform;
        }
        
        .ts-icon i {
            font-size: 32px;
            color: var(--accent-blue);
            z-index: 2;
            position: relative;
            animation: iconFloat 3s ease-in-out infinite;
            will-change: transform;
        }
        
        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        /* Icon specific delays */
        .ts-icon:nth-child(1) { animation-delay: 0.2s; }
        .ts-icon:nth-child(2) { animation-delay: 0.5s; }
        .ts-icon:nth-child(3) { animation-delay: 0.8s; }
        
        @keyframes iconReveal {
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
            }
        }
        
        @keyframes iconBorder {
            0%, 100% {
                opacity: 0.3;
                transform: scale(0.8);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }
        
        @keyframes iconBorderInner {
            0%, 100% {
                opacity: 0.2;
                transform: scale(0.9);
            }
            50% {
                opacity: 0.5;
                transform: scale(1);
            }
        }
        
        /* Welcome Text with Enhanced Animation */
        .welcome-section {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .ts-keyword {
            font-size: 24px;
            color: var(--accent-purple);
            margin-bottom: 5px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 1.2s;
            will-change: opacity, transform;
        }
        
        .ts-function {
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards, textGlow 2s ease-in-out infinite;
            animation-delay: 1.5s, 2.3s;
            text-shadow: 0 0 30px rgba(88, 166, 255, 0.3);
            will-change: filter;
        }
        
        @keyframes textGlow {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.2); }
        }
        
        .ts-parenthesis {
            font-size: 36px;
            color: var(--text-secondary);
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
            animation-delay: 1.8s;
            will-change: opacity;
        }
        
        /* URL Container - Enhanced */
        .url-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
            opacity: 0;
            animation: fadeInScale 1s ease forwards;
            animation-delay: 2s;
            z-index: 2;
            will-change: opacity, transform;
        }
        
        .url-display {
            position: relative;
            padding: 15px 30px;
            background: linear-gradient(135deg, rgba(22, 27, 34, 0.8), rgba(33, 38, 45, 0.8));
            border: 1px solid var(--accent-blue);
            border-radius: 30px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            overflow: hidden;
            animation: urlPulse 2s ease-in-out infinite;
            animation-delay: 2.5s;
            will-change: transform;
        }
        
        @keyframes urlPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        .url-display::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: urlShine 3s infinite;
            will-change: transform;
        }
        
        @keyframes urlShine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .url-text {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 500;
            color: var(--text-primary);
            position: relative;
            z-index: 2;
        }
        
        .url-text i {
            margin-right: 10px;
            color: var(--accent-orange);
            font-size: 20px;
            animation: iconRotate 3s linear infinite;
            will-change: transform;
        }
        
        @keyframes iconRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .url-domain {
            color: var(--accent-blue);
            font-weight: 700;
        }
        
        .url-tld {
            color: var(--accent-purple);
        }
        
        /* Loading Progress Bar - Enhanced */
        .loading-progress {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
            animation-delay: 2.2s;
            will-change: opacity;
        }
        
        .progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            border-radius: 2px;
            animation: progressFill 2.5s ease forwards;
            animation-delay: 2.3s;
            will-change: transform;
        }
        
        @keyframes progressFill {
            to { width: 100%; }
        }
        
        /* Loading Dots - Enhanced */
        .loading-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
            animation-delay: 2.5s;
            will-change: opacity;
        }
        
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent-blue);
            animation: dotPulse 1.4s infinite ease-in-out;
            will-change: transform, opacity;
        }
        
        .dot:nth-child(1) { animation-delay: 0s; }
        .dot:nth-child(2) { animation-delay: 0.2s; }
        .dot:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes dotPulse {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }
        
        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Welcome Notification */
        .welcome-notification {
            position: fixed;
            top: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border: 1px solid var(--accent-purple);
            border-radius: 12px;
            padding: 20px 30px;
            max-width: 500px;
            text-align: center;
            z-index: 9999;
            opacity: 0;
            transition: all 0.5s ease;
            will-change: opacity, transform;
        }
        .welcome-notification.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
        .welcome-notification h2 {
            font-size: 22px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .welcome-notification p {
            color: var(--text-secondary);
            line-height: 1.5;
            font-size: 14px;
        }
        
        /* Smooth Transition Overlay - 60fps Optimized */
        .transition-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            z-index: 9998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity;
        }
        
        .transition-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        /* Transition Particles - 60fps Optimized */
        .transition-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
        }
        
        .transition-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--accent-blue);
            border-radius: 50%;
            will-change: transform, opacity;
        }
        
        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        .ts-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .ts-particle {
            position: absolute;
            display: block;
            background: transparent;
            border-radius: 50%;
            animation: floatUp 15s linear infinite;
            will-change: transform;
        }
        .ts-particle::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 6px;
            height: 6px;
            background: var(--accent-blue);
            border-radius: 50%;
            box-shadow: 0 0 10px 2px var(--accent-blue);
        }
        .ts-particle:nth-child(1) {
            left: 10%;
            width: 80px;
            height: 80px;
            animation-duration: 12s;
        }
        .ts-particle:nth-child(2) {
            left: 20%;
            width: 100px;
            height: 100px;
            animation-duration: 15s;
            animation-delay: 1s;
        }
        .ts-particle:nth-child(3) {
            left: 30%;
            width: 60px;
            height: 60px;
            animation-duration: 10s;
            animation-delay: 2s;
        }
        .ts-particle:nth-child(4) {
            left: 40%;
            width: 120px;
            height: 120px;
            animation-duration: 18s;
            animation-delay: 0s;
        }
        .ts-particle:nth-child(5) {
            left: 50%;
            width: 90px;
            height: 90px;
            animation-duration: 14s;
            animation-delay: 3s;
        }
        .ts-particle:nth-child(6) {
            left: 60%;
            width: 70px;
            height: 70px;
            animation-duration: 11s;
            animation-delay: 1.5s;
        }
        .ts-particle:nth-child(7) {
            left: 70%;
            width: 110px;
            height: 110px;
            animation-duration: 16s;
            animation-delay: 2.5s;
        }
        .ts-particle:nth-child(8) {
            left: 80%;
            width: 50px;
            height: 50px;
            animation-duration: 9s;
            animation-delay: 0.5s;
        }
        .ts-particle:nth-child(9) {
            left: 90%;
            width: 80px;
            height: 80px;
            animation-duration: 13s;
            animation-delay: 3.5s;
        }
        @keyframes floatUp {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }
        /* Code Rain Effect */
        .code-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.05;
        }
        .code-column {
            position: absolute;
            top: -100px;
            font-size: 14px;
            line-height: 20px;
            color: var(--accent-green);
            text-shadow: 0 0 5px var(--accent-green);
            animation: codeFall linear infinite;
            will-change: transform;
        }
        @keyframes codeFall {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(calc(100vh + 100px));
            }
        }
        /* Main Container - 60fps Optimized */
        .container {
            width: 100%;
            max-width: 550px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid var(--glass-border);
            padding: 40px 30px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(88, 166, 255, 0.1),
                inset 0 0 20px rgba(88, 166, 255, 0.05);
            opacity: 0;
            transform: scale(0.8) translateY(50px);
            transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: visible;
            transform-style: preserve-3d;
            perspective: 1000px;
            will-change: transform, opacity;
        }
        
        .container.show {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        
        /* Container entrance glow effect */
        .container::after {
            content: "";
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: radial-gradient(circle at center, rgba(88, 166, 255, 0.3), transparent 70%);
            border-radius: 20px;
            opacity: 0;
            z-index: -1;
            transition: opacity 1s ease;
            will-change: opacity;
        }
        
        .container.show::after {
            opacity: 1;
            animation: containerGlow 2s ease infinite alternate;
        }
        
        @keyframes containerGlow {
            from { opacity: 0.3; }
            to { opacity: 0.6; }
        }
        
        /* Enhanced Grid Animation for Container Hover */
        .container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: var(--grid-size) var(--grid-size);
            border-radius: 16px;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }
        .container:hover::before {
            opacity: 1;
            animation: gridMove 15s linear infinite;
        }
        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: var(--grid-size) var(--grid-size); }
        }
        
        /* Terminal Header - 60fps Optimized */
        .terminal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            opacity: 0;
            transform: translateY(-20px) scale(0.9);
            transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            will-change: transform, opacity;
        }
        
        .terminal-header.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .terminal-left {
            display: flex;
            align-items: center;
        }
        .terminal-dots {
            display: flex;
            gap: 8px;
            margin-right: 15px;
        }
        .terminal-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            transition: transform 0.3s ease;
            will-change: transform;
        }
        .terminal-dot:hover {
            transform: scale(1.2);
        }
        .terminal-dot.red { 
            background-color: #ff5f56; 
        }
        .terminal-dot.yellow { 
            background-color: #ffbd2e; 
        }
        .terminal-dot.green { 
            background-color: #27c93f; 
        }
        .terminal-title {
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
        }
        .terminal-actions {
            display: flex;
            gap: 10px;
        }
        .terminal-action {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            will-change: transform, background;
        }
        .terminal-action:hover {
            background: var(--accent-blue);
            transform: scale(1.2);
        }
        .terminal-action i {
            font-size: 8px;
            color: var(--text-primary);
        }
        /* Profile Section - 60fps Optimized */
        .profile {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
            transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            will-change: transform, opacity;
        }
        
        .profile.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .profile-img-container {
            position: relative;
            margin-bottom: 25px;
            transform-style: preserve-3d;
            perspective: 1000px;
            z-index: 1;
        }
        .profile-img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent-blue);
            transition: all 0.5s ease;
            transform: translateZ(20px);
            position: relative;
            z-index: 1;
            will-change: transform;
        }
        .profile-img:hover {
            transform: translateZ(30px) rotateY(10deg);
        }
        .profile-img-border {
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--accent-blue);
            border-right-color: var(--accent-purple);
            animation: rotate 3s linear infinite;
            z-index: 1;
            will-change: transform;
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        /* Animated Online Status Indicator - Fixed */
        .status-indicator {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 28px;
            height: 28px;
            background-color: var(--accent-green);
            border-radius: 50%;
            border: 3px solid var(--bg-primary);
            z-index: 1001; /* Increased z-index to be on top */
            animation: statusPulse 2s infinite;
            will-change: transform, box-shadow;
        }
        @keyframes statusPulse {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(63, 185, 80, 0.7);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 0 0 10px rgba(63, 185, 80, 0);
            }
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 0 rgba(63, 185, 80, 0);
            }
        }
        .username {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 12px;
            background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }
        .username::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent-purple), var(--accent-orange), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            z-index: -1;
            opacity: 0;
            filter: blur(10px);
            transition: opacity 0.3s ease;
        }
        .username:hover::before {
            opacity: 1;
        }
        /* Bio typing effect - Enhanced */
        .bio {
            font-size: 16px;
            color: var(--text-secondary);
            text-align: center;
            max-width: 90%;
            height: 24px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(15px) scale(0.95);
            transition: all 0.9s ease 0.3s;
            will-change: transform, opacity;
        }
        
        .bio.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .bio-text {
            display: inline-block;
            border-right: 2px solid var(--accent-orange);
            animation: blink-caret 0.75s step-end infinite;
        }
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--accent-orange) }
        }
        
        /* Stats - 60fps Optimized */
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 25px 0;
            padding: 20px;
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border-radius: 12px;
            border: 1px solid var(--border-color);
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: all 0.9s ease;
            position: relative;
            overflow: hidden;
            will-change: transform, opacity;
        }
        
        .stats.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .stats::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(88, 166, 255, 0.1), transparent);
            transform: translateX(-100%);
            animation: shimmer 3s infinite;
            will-change: transform;
        }
        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }
        .stat {
            text-align: center;
            z-index: 1;
            opacity: 0;
            transform: scale(0.8) translateY(15px);
            transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            will-change: transform, opacity;
        }
        
        .stats.show .stat:nth-child(1) {
            transition-delay: 0.1s;
        }
        
        .stats.show .stat:nth-child(2) {
            transition-delay: 0.2s;
        }
        
        .stats.show .stat:nth-child(3) {
            transition-delay: 0.3s;
        }
        
        .stats.show .stat {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
        
        .stat-value {
            font-size: 28px;
            font-weight: bold;
            background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }
        
        .stat:hover .stat-value {
            transform: scale(1.1);
        }
        
        .stat-label {
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Links Section - 60fps Optimized */
        .links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(25px) perspective(800px) rotateX(-5deg);
            transition: all 1.1s ease;
            will-change: transform, opacity;
        }
        
        .links.show {
            opacity: 1;
            transform: translateY(0) perspective(800px) rotateX(0);
        }
        
        .link {
            display: flex;
            align-items: center;
            padding: 18px 22px;
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateX(-30px) rotateY(10deg);
            transform-style: preserve-3d;
            perspective: 1000px;
            will-change: transform, opacity;
        }
        
        .links.show .link:nth-child(1) {
            animation: linkSlideIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 0.1s;
        }
        
        .links.show .link:nth-child(2) {
            animation: linkSlideIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 0.2s;
        }
        
        .links.show .link:nth-child(3) {
            animation: linkSlideIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 0.3s;
        }
        
        .links.show .link:nth-child(4) {
            animation: linkSlideIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 0.4s;
        }
        
        .links.show .link:nth-child(5) {
            animation: linkSlideIn 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 0.5s;
        }
        
        @keyframes linkSlideIn {
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0);
            }
        }
        
        .link::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
            will-change: transform;
        }
        .link:hover::before {
            left: 100%;
        }
        .link:hover {
            transform: translateX(5px) translateZ(10px) rotateY(5deg);
            border-left: 3px solid var(--accent-blue);
        }
        .link i {
            font-size: 22px;
            margin-right: 18px;
            width: 26px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .link.github i { 
            color: var(--accent-blue); 
        }
        .link.linkedin i { 
            color: var(--accent-blue); 
        }
        .link.twitter i { 
            color: var(--accent-blue); 
        }
        .link.instagram i { 
            color: var(--accent-purple); 
        }
        .link.website i { 
            color: var(--accent-orange); 
        }
        .link:hover i {
            transform: scale(1.2) rotateY(10deg);
        }
        .link span {
            font-weight: 500;
            position: relative;
        }
        .link span::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-blue);
            transition: width 0.3s ease;
        }
        .link:hover span::after {
            width: 100%;
        }
        .copy-btn {
            margin-left: auto;
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            font-size: 14px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .link:hover .copy-btn {
            opacity: 1;
        }
        .copy-btn:hover {
            color: var(--accent-green);
            transform: scale(1.2);
        }
        
        /* Footer - 60fps Optimized */
        .footer {
            text-align: center;
            font-size: 14px;
            color: var(--text-secondary);
            opacity: 0;
            transform: translateY(20px) scale(0.95);
            transition: all 0.9s ease;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
            will-change: transform, opacity;
        }
        
        .footer.show {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .footer a {
            color: var(--accent-blue);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }
        .footer a::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
            transition: width 0.3s ease;
        }
        .footer a:hover::after {
            width: 100%;
        }
        .footer a:hover {
            color: var(--accent-purple);
        }
        
        /* Theme Toggle - 60fps Optimized */
        .theme-toggle {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border: 1px solid var(--border-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 100;
            opacity: 0;
            transform: scale(0) rotate(180deg);
            will-change: transform, opacity;
        }
        
        .theme-toggle.show {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
        
        .theme-toggle:hover {
            transform: rotate(180deg) scale(1.1);
        }
        .theme-toggle i {
            font-size: 20px;
            color: var(--accent-blue);
            transition: all 0.3s ease;
        }
        .theme-toggle:hover i {
            color: var(--accent-purple);
        }
        
        /* Notification */
        .notification {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
            border: 1px solid var(--accent-green);
            border-radius: 8px;
            padding: 15px 25px;
            color: var(--text-primary);
            font-size: 14px;
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            will-change: transform, opacity;
        }
        .notification.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }
        .notification i {
            color: var(--accent-green);
            margin-right: 10px;
        }
        
        /* Responsive */
        @media (max-width: 600px) {
            .container {
                padding: 30px 20px;
            }
            .profile-img {
                width: 120px;
                height: 120px;
            }
            .username {
                font-size: 28px;
            }
            .bio {
                font-size: 14px;
                height: 20px;
            }
            .link {
                padding: 15px 18px;
            }
            .theme-toggle {
                width: 40px;
                height: 40px;
            }
            .theme-toggle i {
                font-size: 16px;
            }
            
            .welcome-notification {
                max-width: 90%;
                padding: 15px 20px;
            }
            
            .status-indicator {
                width: 24px;
                height: 24px;
                bottom: 4px;
                right: 4px;
            }
            
            .icon-container {
                gap: 40px;
            }
            
            .ts-icon {
                width: 60px;
                height: 60px;
            }
            
            .ts-icon i {
                font-size: 24px;
            }
            
            .ts-bracket {
                font-size: 80px;
            }
            
            .ts-bracket.left {
                left: -60px;
            }
            
            .ts-bracket.right {
                right: -60px;
            }
            
            .ts-keyword {
                font-size: 20px;
            }
            
            .ts-function {
                font-size: 32px;
            }
            
            .url-display {
                padding: 12px 20px;
            }
            
            .url-text {
                font-size: 16px;
            }
        }