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

        :root {
            --primary-color: #8a2be2;
            --secondary-color: #00bfff;
            --accent-color: #ff1493;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --bg-primary: #000000;
            --bg-secondary: rgba(255, 255, 255, 0.02);
            --border-color: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: all 0.15s ease;
            mix-blend-mode: difference;
            opacity: 0;
        }

        .cursor.visible {
            opacity: 1;
        }

        .cursor.hover {
            width: 40px;
            height: 40px;
            background: rgba(0, 212, 255, 0.2);
            border-color: var(--accent-color);
        }

        /* Animated Background */
        .holo-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(138, 43, 226, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(255, 20, 147, 0.04) 0%, transparent 50%);
            animation: holoShift 12s ease-in-out infinite;
            z-index: -2;
        }

        @keyframes holoShift {
            0%, 100% { transform: rotate(0deg) scale(1); }
            33% { transform: rotate(120deg) scale(1.05); }
            66% { transform: rotate(240deg) scale(0.95); }
        }

        /* Scanning Lines */
        .scan-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 255, 255, 0.01) 2px,
                rgba(0, 255, 255, 0.01) 4px
            );
            z-index: -1;
            animation: scanMove 3s linear infinite;
        }

        @keyframes scanMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(4px); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            padding: 12px 24px;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.8);
            border-color: rgba(138, 43, 226, 0.3);
        }

        .nav-container {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 24px;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.9em;
            font-weight: 500;
            position: relative;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            opacity: 0.2;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--secondary-color);
            text-shadow: 0 0 20px rgba(0, 191, 255, 0.6);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5em;
            cursor: pointer;
            padding: 8px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 10;
        }

        .hero-title {
            font-size: clamp(2.5rem, 8vw, 5rem);
            font-weight: 200;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientFlow 4s ease-in-out infinite;
            letter-spacing: -0.02em;
            opacity: 0;
            transform: translateY(30px);
        }

        @keyframes gradientFlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: clamp(1rem, 3vw, 1.3em);
            font-weight: 300;
            opacity: 0;
            margin-bottom: 40px;
            line-height: 1.5;
            transform: translateY(30px);
        }

        .hero-description {
            font-size: clamp(0.9rem, 2.5vw, 1.1em);
            opacity: 0;
            margin-bottom: 40px;
            color: var(--text-secondary);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            transform: translateY(30px);
        }

        .hero-cta-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            padding: 16px 32px;
            background: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-cta::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.6s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta.primary {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            color: #000;
            font-weight: 600;
        }

        .hero-cta.primary::before {
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        }

        .hero-cta:hover {
            border-color: var(--secondary-color);
            box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Holographic Orbs */
        .holo-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(1px);
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        .orb1 {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.4), transparent);
            animation-delay: -2s;
        }

        .orb2 {
            width: 180px;
            height: 180px;
            top: 65%;
            right: 10%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 191, 255, 0.4), transparent);
            animation-delay: -4s;
        }

        .orb3 {
            width: 100px;
            height: 100px;
            top: 85%;
            left: 25%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 20, 147, 0.4), transparent);
            animation-delay: -1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        /* Sections */
        .section {
            padding: 100px 5%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3em);
            font-weight: 200;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        /* Highlights Section */
        .highlights-section {
            padding-top: 0;
            margin-top: -50px;
            position: relative;
            z-index: 20;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .highlight-card {
            background: var(--bg-secondary);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            transform: translateY(30px);
        }

        .highlight-card:hover {
            transform: translateY(-8px);
            border-color: rgba(138, 43, 226, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .highlight-icon {
            font-size: 2.2rem;
            flex-shrink: 0;
        }

        .highlight-title {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .highlight-text {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.4;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text {
            font-size: 1.1em;
            line-height: 1.8;
            opacity: 0.9;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-visual {
            height: 400px;
            background: linear-gradient(45deg, rgba(138, 43, 226, 0.1), rgba(0, 191, 255, 0.1));
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .about-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(138, 43, 226, 0.15), transparent, rgba(0, 191, 255, 0.15), transparent);
            animation: visualSpin 15s linear infinite;
            z-index: 1;
        }

        @keyframes visualSpin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Skills Section */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .skill-item {
            background: var(--bg-secondary);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .skill-item:hover::before {
            transform: translateX(0);
        }

        .skill-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15);
            border-color: rgba(138, 43, 226, 0.3);
        }

        .skill-icon {
            font-size: 2.2em;
            margin-bottom: 20px;
            display: block;
        }

        .skill-title {
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .skill-desc {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .tech-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tech-tag {
            background: rgba(0, 212, 255, 0.15);
            color: var(--secondary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            border: 1px solid rgba(0, 212, 255, 0.3);
            font-weight: 500;
        }

        .tech-tagHighlight {
            background: rgba(0, 255, 136, 0.1);
            color: #00ff88;
            padding: 8px 16px;
            border-radius: 5px;
            font-size: 0.9rem;
            border-left: 3px solid #00ff88;
            font-family: 'JetBrains Mono', monospace;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .project-card {
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-color);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(0, 191, 255, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .project-card:hover::before {
            opacity: 1;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(138, 43, 226, 0.4);
        }

        .project-header {
            height: 200px;
            background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5em;
            position: relative;
            overflow: hidden;
        }

        .project-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(138, 43, 226, 0.1), transparent);
            animation: projectGlow 4s ease-in-out infinite;
        }

        @keyframes projectGlow {
            0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.5; }
            50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
        }

        .project-content {
            padding: 25px;
            position: relative;
            z-index: 10;
        }

        .project-title {
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .project-desc {
            opacity: 0.8;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95em;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .project-tag {
            background: rgba(138, 43, 226, 0.2);
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: 500;
            border: 1px solid rgba(138, 43, 226, 0.3);
        }

        /* Contact Section */
        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-text {
            font-size: 1.2em;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .contact-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 25px;
            background: var(--bg-secondary);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: var(--text-primary);
            min-width: 140px;
        }

        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(138, 43, 226, 0.2);
            border-color: rgba(138, 43, 226, 0.4);
        }

        .contact-icon {
            font-size: 1.8em;
            margin-bottom: 12px;
        }

        .contact-label {
            font-weight: 600;
            font-size: 1em;
        }

        /* Experience Section */
        .experience-card {
            background: var(--bg-secondary);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }

        .experience-title {
            font-size: 1.6rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .experience-role {
            font-size: 1.1rem;
            opacity: 0.8;
            font-family: 'JetBrains Mono', monospace;
        }

        .experience-date {
            font-family: 'JetBrains Mono', monospace;
            background: rgba(138, 43, 226, 0.1);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .experience-list {
            list-style: none;
        }

        .experience-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 25px;
            line-height: 1.6;
        }

        .experience-list li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        /* Speaking Section */
        .speaking-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .speaking-item {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 25px;
            display: flex;
            gap: 20px;
            transition: transform 0.3s ease;
        }

        .speaking-item:hover {
            transform: scale(1.02);
            border-color: var(--secondary-color);
        }

        .speaking-title {
            font-size: 1.1rem;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .speaking-text {
            font-size: 0.9rem;
            opacity: 0.7;
            line-height: 1.4;
        }

        .speaking-footer {
            text-align: center;
            margin-top: 40px;
            font-style: italic;
            opacity: 0.8;
        }

        /* Project Enhancements */
        .project-features {
            list-style: none;
            margin: 15px 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .project-features li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

        .project-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }

        .project-demonstrates {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.8rem;
            color: #00ff88;
            opacity: 0.9;
        }

        /* Hero Final Touch Animation */
        .hero-final-touch.animate {
            animation: fadeInUp 1s ease-out 1.5s forwards;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 50px 20px;
            opacity: 0.6;
            border-top: 1px solid var(--border-color);
            margin-top: 80px;
            font-size: 0.9em;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 20px;
                border-radius: 20px;
                margin-top: 10px;
                gap: 10px;
            }

            .nav-links.active {
                display: flex;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-methods {
                flex-direction: column;
                align-items: center;
            }

            .section {
                padding: 60px 5%;
            }

            .skills-container {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .skill-item,
            .project-card {
                margin: 0 10px;
            }
        }

        /* Performance optimizations */
        .will-change {
            will-change: transform;
        }

        /* Accessibility improvements */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Focus styles for accessibility */
        a:focus,
        button:focus {
            outline: 2px solid var(--secondary-color);
            outline-offset: 2px;
        }