@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600;700&family=Space+Grotesk:wght@400;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-primary: #0a0e27;
            --bg-secondary: #10142b;
            --bg-tertiary: #1a1f3a;
            --accent-cyan: #00f2ff;
            --accent-purple: #b537f2;
            --accent-pink: #f205cb;
            --text-primary: #e4e4e7;
            --text-secondary: #a1a1aa;
            --code-green: #00ff41;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
            cursor: none;
        }

        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-cyan);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            transform: translate(-50%, -50%);
            will-change: transform;
            box-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid var(--accent-cyan);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
            transform: translate(-50%, -50%);
            opacity: 0.5;
            will-change: transform;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
        }

        .cursor.active {
            width: 40px;
            height: 40px;
            background: rgba(0, 242, 255, 0.2);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.8);
        }

        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(181, 55, 242, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(242, 5, 203, 0.05) 0%, transparent 50%);
            z-index: 0;
            pointer-events: none;
            animation: bgShift 15s ease-in-out infinite;
        }

        @keyframes bgShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .particle {
            position: fixed;
            width: 4px;
            height: 4px;
            background: var(--accent-cyan);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
            will-change: transform, opacity;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.2rem 5%;
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 242, 255, 0.1);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.8rem 5%;
            background: rgba(10, 14, 39, 0.95);
            box-shadow: 0 5px 30px rgba(0, 242, 255, 0.1);
        }

        .logo {
            font-family: 'Fira Code', monospace;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 2px;
        }

        .logo:hover {
            transform: scale(1.1);
            text-shadow: 0 0 30px rgba(0, 242, 255, 0.8);
            filter: drop-shadow(0 0 15px rgba(181, 55, 242, 0.6));
        }

        .logo span {
            color: var(--code-green);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
        }

        .nav-links a::before {
            content: '<';
            margin-right: 5px;
            color: var(--accent-cyan);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links a::after {
            content: '/>';
            margin-left: 5px;
            color: var(--accent-cyan);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent-cyan);
        }

        .nav-links a:hover::before,
        .nav-links a:hover::after {
            opacity: 1;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            z-index: 1001;
            padding: 0.5rem;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--accent-cyan);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        section {
            position: relative;
            min-height: 100vh;
            padding: 8rem 5%;
            z-index: 1;
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
        }

        .code-line {
            font-family: 'Fira Code', monospace;
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .code-line .keyword {
            color: var(--accent-purple);
        }

        .code-line .string {
            color: var(--code-green);
        }

        .code-line .function {
            color: var(--accent-cyan);
        }

        .hero h1 {
            font-size: 4rem;
            margin: 1rem 0;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideInLeft 1s ease;
            font-weight: 700;
            line-height: 1.2;
            transition: all 0.3s ease;
        }

        .hero h1:hover {
            letter-spacing: 2px;
        }

        .typing-text {
            font-family: 'Fira Code', monospace;
            font-size: 1.3rem;
            color: var(--code-green);
            margin: 1.5rem 0;
        }

        .typing-text::after {
            content: '|';
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .stats-row {
            display: flex;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(0, 242, 255, 0.05);
            padding: 1rem 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 242, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(0, 242, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-cyan);
            font-family: 'Fira Code', monospace;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 0.3rem;
        }

        .terminal-box {
            flex: 1;
            min-width: 320px;
            max-width: 500px;
            background: var(--bg-secondary);
            border-radius: 10px;
            border: 1px solid rgba(0, 242, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 242, 255, 0.1);
            overflow: hidden;
            animation: slideInRight 1s ease, float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .terminal-header {
            background: var(--bg-tertiary);
            padding: 0.8rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid rgba(0, 242, 255, 0.1);
        }

        .terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff5f56;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .terminal-dot:hover {
            transform: scale(1.3);
            box-shadow: 0 0 15px currentColor;
        }

        .terminal-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .terminal-dot:nth-child(3) {
            background: #27c93f;
        }

        .terminal-content {
            padding: 1.5rem;
            font-family: 'Fira Code', monospace;
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .terminal-content .comment {
            color: var(--text-secondary);
            font-style: italic;
        }

        .terminal-content .property {
            color: var(--accent-cyan);
        }

        .terminal-content .value {
            color: var(--code-green);
        }

        .photo-container {
            width: 100%;
            height: 350px;
            background: var(--bg-tertiary);
            border: 2px dashed rgba(0, 242, 255, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        .photo-container:hover {
            border-color: var(--accent-cyan);
            background: rgba(0, 242, 255, 0.05);
        }

        .photo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .featured-track {
            margin-top: 2rem;
            animation: slideInUp 0.8s ease;
        }

        .track-label {
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            color: var(--accent-cyan);
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .featured-track iframe {
            transition: all 0.3s ease !important;
            box-shadow: 0 10px 30px rgba(30, 215, 96, 0.15) !important;
        }

        .featured-track:hover iframe {
            box-shadow: 0 15px 45px rgba(30, 215, 96, 0.4) !important;
            filter: brightness(1.05) !important;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            display: inline-block;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: var(--bg-primary);
            border: none;
            position: relative;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 8px;
            opacity: 0;
            z-index: -1;
            filter: blur(15px);
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4), 0 0 20px rgba(0, 242, 255, 0.3);
        }

        .btn-primary:hover::after {
            opacity: 0.6;
        }

        .btn-secondary {
            background: transparent;
            color: var(--accent-cyan);
            border: 2px solid var(--accent-cyan);
            position: relative;
        }

        .btn-secondary:hover {
            background: rgba(0, 242, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3), inset 0 0 20px rgba(0, 242, 255, 0.1);
        }

        .skills {
            background: rgba(16, 20, 43, 0.5);
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            font-family: 'Fira Code', monospace;
            font-weight: 700;
            position: relative;
            display: inline-block;
            width: 100%;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% {
                filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.3));
            }
            50% {
                filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.6)) drop-shadow(0 0 25px rgba(181, 55, 242, 0.4));
            }
        }

        .section-title::before {
            content: '<';
            color: var(--accent-cyan);
            margin-right: 10px;
        }

        .section-title::after {
            content: '/>';
            color: var(--accent-cyan);
            margin-left: 10px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .skill-card {
            background: var(--bg-secondary);
            padding: 2rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 242, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .skill-card:hover::before {
            left: 100%;
        }

        .skill-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--accent-cyan);
            box-shadow: 0 15px 40px rgba(0, 242, 255, 0.2), 0 0 30px rgba(0, 242, 255, 0.3);
        }

        .skill-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .skill-card:hover .skill-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .skill-card h3 {
            font-size: 1.3rem;
            color: var(--accent-cyan);
            margin-bottom: 1rem;
            font-family: 'Fira Code', monospace;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(0, 242, 255, 0.1);
            border-radius: 10px;
            margin: 1rem 0;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 10px;
            transition: width 1s ease-out;
            width: 0;
        }

        .skill-card:hover .progress-fill {
            width: var(--progress);
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .tag {
            padding: 0.3rem 0.8rem;
            background: rgba(0, 242, 255, 0.1);
            border: 1px solid rgba(0, 242, 255, 0.3);
            border-radius: 5px;
            font-size: 0.8rem;
            font-family: 'Fira Code', monospace;
            color: var(--accent-cyan);
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: rgba(0, 242, 255, 0.2);
            transform: translateY(-2px);
        }

        .tools {
            background: linear-gradient(135deg, rgba(10, 20, 43, 0.7), rgba(16, 20, 43, 0.5));
            position: relative;
            overflow: hidden;
        }

        .tools::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 242, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .tools-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .tools-category {
            margin-bottom: 3.5rem;
        }

        .category-title {
            font-size: 1.4rem;
            color: var(--accent-purple);
            font-family: 'Fira Code', monospace;
            margin-bottom: 1.5rem;
            padding-left: 1rem;
            border-left: 3px solid var(--accent-cyan);
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .tool-item {
            background: var(--bg-secondary);
            border: 1px solid rgba(0, 242, 255, 0.15);
            border-radius: 12px;
            padding: 1.5rem 1rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 160px;
        }

        .tool-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .tool-item:hover::before {
            left: 100%;
        }

        .tool-item:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--accent-cyan);
            background: rgba(0, 242, 255, 0.08);
            box-shadow: 0 20px 50px rgba(0, 242, 255, 0.25), inset 0 0 20px rgba(0, 242, 255, 0.1);
        }

        .tool-icon {
            font-size: 3rem;
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .tool-item:hover .tool-icon {
            transform: scale(1.3) rotate(10deg);
            filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.6));
        }

        .tool-item span {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--accent-cyan);
            font-family: 'Fira Code', monospace;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .tool-item:hover span {
            color: var(--accent-pink);
            text-shadow: 0 0 10px rgba(242, 5, 203, 0.5);
        }

        .projects {
            background: rgba(10, 14, 39, 0.5);
        }

        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
        }

        .research {
            background: rgba(181, 55, 242, 0.03);
        }

        .research-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .research-card {
            background: rgba(0, 242, 255, 0.05);
            border: 1px solid rgba(0, 242, 255, 0.2);
            border-radius: 10px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .research-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
            transition: left 0.5s ease;
            z-index: 0;
        }

        .research-card:hover::before {
            left: 100%;
        }

        .research-card:hover {
            transform: translateY(-8px);
            background: rgba(181, 55, 242, 0.1);
            border-color: var(--accent-purple);
            box-shadow: 0 15px 40px rgba(181, 55, 242, 0.2);
        }

        .research-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .research-card:hover .research-icon {
            transform: scale(1.2) rotate(10deg);
        }

        .research-card h3 {
            font-size: 1.4rem;
            color: var(--accent-cyan);
            margin-bottom: 0.8rem;
            font-family: 'Fira Code', monospace;
            transition: all 0.3s ease;
        }

        .research-card:hover h3 {
            color: var(--accent-purple);
        }

        .research-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Project Card */
        .project-card {
            display: flex;
            flex-direction: column;
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(181, 55, 242, 0.05));
            border: 1px solid rgba(0, 242, 255, 0.15);
            border-radius: 16px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.08), transparent);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .project-card:hover {
            border-color: rgba(0, 242, 255, 0.3);
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(181, 55, 242, 0.08));
            box-shadow: 0 15px 50px rgba(0, 242, 255, 0.12), inset 0 0 40px rgba(0, 242, 255, 0.03);
            transform: translateY(-8px);
        }

        .project-card:hover::before {
            opacity: 1;
        }

        .card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .project-logo {
            font-size: 2.5rem;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(0, 242, 255, 0.1);
            border: 2px solid rgba(0, 242, 255, 0.2);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .project-card:hover .project-logo {
            background: rgba(0, 242, 255, 0.15);
            border-color: rgba(0, 242, 255, 0.4);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 25px rgba(0, 242, 255, 0.2);
        }

        .project-card h3 {
            font-size: 1.4rem;
            color: var(--accent-cyan);
            font-family: 'Fira Code', monospace;
            font-weight: 700;
            margin: 0 0 1rem 0;
            transition: color 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .project-card:hover h3 {
            color: var(--accent-purple);
        }

        .project-status {
            padding: 0.4rem 0.9rem;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 700;
            font-family: 'Fira Code', monospace;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .project-status.completed {
            background: rgba(0, 255, 100, 0.15);
            color: #00ff64;
            border: 1px solid rgba(0, 255, 100, 0.3);
        }

        .project-status.in-progress {
            background: rgba(0, 242, 255, 0.15);
            color: var(--accent-cyan);
            border: 1px solid rgba(0, 242, 255, 0.3);
        }

        .project-description {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            position: relative;
            z-index: 2;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .tech-badge {
            padding: 0.5rem 0.9rem;
            background: rgba(0, 242, 255, 0.1);
            border: 1px solid rgba(0, 242, 255, 0.25);
            border-radius: 6px;
            font-size: 0.75rem;
            color: var(--accent-cyan);
            font-family: 'Fira Code', monospace;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .tech-badge:hover {
            background: rgba(0, 242, 255, 0.2);
            border-color: rgba(0, 242, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 242, 255, 0.15);
        }

        .project-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .project-link {
            flex: 1;
            min-width: 120px;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-family: 'Fira Code', monospace;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .project-link.primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: var(--bg-primary);
            box-shadow: 0 8px 25px rgba(0, 242, 255, 0.25);
        }

        .project-link.primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .project-link.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 242, 255, 0.4);
        }

        .project-link.primary:hover::before {
            left: 100%;
        }

        .project-link.secondary {
            background: transparent;
            color: var(--accent-cyan);
            border: 2px solid rgba(0, 242, 255, 0.3);
        }

        .project-link.secondary:hover {
            background: rgba(0, 242, 255, 0.1);
            border-color: var(--accent-cyan);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 242, 255, 0.2);
            color: var(--accent-cyan);
        }



        .contact {
            background: rgba(16, 20, 43, 0.5);
        }

        .contact-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .contact-methods {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-direct,
        .contact-form-wrapper,
        .contact-socials {
            animation: slideInUp 0.8s ease;
        }

        .method-title {
            font-family: 'Fira Code', monospace;
            font-size: 1.2rem;
            color: var(--accent-cyan);
            margin-bottom: 1.5rem;
            text-transform: lowercase;
            letter-spacing: 1px;
        }

        .email-box {
            background: var(--bg-secondary);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 242, 255, 0.2);
            margin: 2rem 0;
            font-family: 'Fira Code', monospace;
            font-size: 1.2rem;
            color: var(--accent-cyan);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .email-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .email-box:hover::before {
            left: 100%;
        }

        .email-box:hover {
            background: rgba(0, 242, 255, 0.1);
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2), 0 0 20px rgba(0, 242, 255, 0.3);
            border-color: var(--accent-cyan);
        }

        .email-box::after {
            content: 'Click to copy';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-cyan);
            color: var(--bg-primary);
            padding: 0.3rem 0.8rem;
            border-radius: 5px;
            font-size: 0.75rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .email-box:hover::after {
            opacity: 1;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        /* Contact Form Styles */
        .contact-form-wrapper {
            background: var(--bg-secondary);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(0, 242, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
            transition: all 0.3s ease;
        }

        .contact-form-wrapper:hover {
            border-color: var(--accent-cyan);
            box-shadow: 0 15px 40px rgba(0, 242, 255, 0.15);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            text-align: left;
            animation: slideInUp 0.6s ease;
        }

        .form-label {
            display: block;
            font-family: 'Fira Code', monospace;
            font-size: 0.95rem;
            color: var(--accent-cyan);
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .preset-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .preset-options input[type="radio"] {
            display: none;
        }

        .preset-label {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 1rem;
            background: rgba(0, 242, 255, 0.05);
            border: 2px solid rgba(0, 242, 255, 0.2);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .preset-label::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .preset-options input[type="radio"]:checked + .preset-label {
            background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(181, 55, 242, 0.2));
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
            transform: scale(1.05);
        }

        .preset-label:hover {
            border-color: var(--accent-cyan);
            color: var(--accent-cyan);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 242, 255, 0.2);
        }

        .preset-label:hover::before {
            left: 100%;
        }

        .form-input {
            width: 100%;
            padding: 0.9rem 1.2rem;
            background: rgba(0, 242, 255, 0.05);
            border: 2px solid rgba(0, 242, 255, 0.2);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input::placeholder {
            color: var(--text-secondary);
            opacity: 0.7;
        }

        .form-input:focus {
            background: rgba(0, 242, 255, 0.08);
            border-color: var(--accent-cyan);
            box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
            transform: translateY(-2px);
        }

        .form-input:hover {
            border-color: rgba(0, 242, 255, 0.4);
            background: rgba(0, 242, 255, 0.07);
        }

        .form-submit {
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            color: var(--bg-primary);
            border: none;
            border-radius: 8px;
            font-family: 'Fira Code', monospace;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-top: 0.5rem;
            text-transform: lowercase;
            letter-spacing: 0.5px;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: 0;
        }

        .form-submit:hover::before {
            width: 300px;
            height: 300px;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 242, 255, 0.4), 0 0 25px rgba(0, 242, 255, 0.3);
        }

        .form-submit:active {
            transform: translateY(-1px);
        }

        .form-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Success Animation */
        .contact-form.form-success .form-submit {
            background: linear-gradient(135deg, var(--code-green), rgba(0, 255, 100, 0.8));
        }

        .contact-form.form-success .form-submit::after {
            content: '✓ sent!';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1rem;
            animation: checkmark 0.5s ease;
        }

        @keyframes checkmark {
            0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
            50% { transform: translate(-50%, -50%) scale(1.2); }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
        }

        .social-card {
            background: var(--bg-secondary);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid rgba(0, 242, 255, 0.1);
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            overflow: hidden;
        }

        .social-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .social-card:hover::before {
            left: 100%;
        }

        .social-card:hover {
            border-color: var(--accent-cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
        }

        .social-icon {
            font-size: 2rem;
            width: 50px;
            height: 50px;
            background: rgba(0, 242, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-card:hover .social-icon {
            transform: rotate(360deg);
            background: rgba(0, 242, 255, 0.2);
        }

        .social-info h4 {
            font-family: 'Fira Code', monospace;
            color: var(--accent-cyan);
            margin-bottom: 0.3rem;
        }

        .social-info p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            transform: translateY(100px);
            transition: all 0.3s ease;
            font-size: 1.5rem;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 242, 255, 0.5);
        }

        footer {
            text-align: center;
            padding: 2rem;
            background: var(--bg-secondary);
            border-top: 1px solid rgba(0, 242, 255, 0.1);
            position: relative;
            z-index: 1;
            font-family: 'Fira Code', monospace;
            color: var(--text-secondary);
        }

        footer .brackets {
            color: var(--accent-cyan);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
            }
            70% {
                box-shadow: 0 0 0 20px rgba(0, 242, 255, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
            }
        }

        .ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 242, 255, 0.6);
            transform: scale(0);
            animation: rippleAnimation 0.6s ease-out;
            pointer-events: none;
        }

        @keyframes rippleAnimation {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        .toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--accent-cyan);
            color: var(--bg-primary);
            padding: 1rem 2rem;
            border-radius: 10px;
            font-family: 'Fira Code', monospace;
            z-index: 10000;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        @media (max-width: 768px) {
            body {
                cursor: auto;
            }

            .cursor, .cursor-follower {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero {
                flex-direction: column;
                gap: 2rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .terminal-box {
                max-width: 100%;
            }

            .featured-track {
                margin-top: 1.5rem;
            }

            .nav-links {
                position: fixed;
                left: 0;
                top: 70px;
                width: 100%;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                gap: 0;
                padding: 0;
                border-bottom: 1px solid rgba(0, 242, 255, 0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, padding 0.3s ease;
                z-index: 999;
                list-style: none;
            }

            .nav-links.active {
                max-height: 500px;
                padding: 2rem 0;
            }

            .nav-links li {
                text-align: center;
                border-bottom: 1px solid rgba(0, 242, 255, 0.1);
                padding: 1rem 0;
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            section {
                padding: 6rem 4%;
            }

            .section-title {
                font-size: 2rem;
            }

            .stats-row {
                justify-content: center;
            }

            .projects-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .project-card {
                padding: 1.5rem;
            }

            .project-logo {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }

            .project-card h3 {
                font-size: 1.2rem;
            }

            .project-description {
                font-size: 0.9rem;
            }

            .project-links {
                gap: 0.8rem;
            }

            .project-link {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
                min-width: 100px;
            }

            /* Contact Section Mobile Optimizations */
            .contact-content {
                padding: 0 1rem;
            }

            .contact-content p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .contact-methods {
                gap: 2rem;
                margin-top: 2rem;
            }

            .method-title {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .email-box {
                padding: 1.2rem;
                font-size: 1rem;
                word-break: break-word;
                overflow-wrap: break-word;
            }

            .email-box::after {
                font-size: 0.65rem;
                padding: 0.2rem 0.6rem;
                top: -25px;
            }

            .contact-form-wrapper {
                padding: 1.5rem;
                border-radius: 12px;
            }

            .contact-form {
                gap: 1.2rem;
            }

            .form-label {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
            }

            .preset-options {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .preset-label {
                padding: 0.8rem 0.9rem;
                font-size: 0.85rem;
                justify-content: flex-start;
                padding-left: 2.5rem;
                position: relative;
            }

            .preset-label::before {
                width: 18px;
                height: 18px;
                left: 0.8rem;
                top: 50%;
                transform: translateY(-50%);
                border-radius: 3px;
                background: rgba(0, 242, 255, 0.1);
                border: 2px solid rgba(0, 242, 255, 0.3);
            }

            .preset-options input[type="radio"]:checked + .preset-label::before {
                background: var(--accent-cyan);
                border-color: var(--accent-cyan);
            }

            .form-input {
                padding: 0.85rem 1rem;
                font-size: 16px;
                border-radius: 8px;
            }

            .form-submit {
                padding: 0.9rem 1.5rem;
                font-size: 0.9rem;
                width: 100%;
                margin-top: 0.5rem;
            }

            .social-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
                margin-top: 2rem;
            }

            .social-card {
                flex-direction: column;
                justify-content: center;
                text-align: center;
                padding: 1.2rem;
                gap: 0.8rem;
            }

            .social-icon {
                width: 45px;
                height: 45px;
                font-size: 1.8rem;
            }

            .social-info h4 {
                font-size: 0.95rem;
                margin-bottom: 0.2rem;
            }

            .social-info p {
                font-size: 0.8rem;
            }

            .scroll-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
                font-size: 1.2rem;
            }
        }