:root {
            --primary: #00ff9d;
            --secondary: #00b8ff;
            --dark: #121212;
            --darker: #0a0a0a;
            --light: #f5f5f5;
            --gray: #333;
            --code-bg: #1e1e1e;
            --youtube: #FF0000;
            --instagram: #E1306C;
            --facebook: #4267B2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }
        
        .code-font {
            font-family: 'Fira Code', monospace;
        }
        
        /* Glitch Effect */
        .glitch {
            position: relative;
            display: inline-block;
        }
        
        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark);
        }
        
        .glitch::before {
            left: 2px;
            text-shadow: -2px 0 #ff00ff;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim-1 2s infinite linear alternate-reverse;
        }
        
        .glitch::after {
            left: -2px;
            text-shadow: -2px 0 #00ffff;
            clip: rect(44px, 450px, 56px, 0);
            animation: glitch-anim-2 2s infinite linear alternate-reverse;
        }
        
        @keyframes glitch-anim-1 {
            0% { clip: rect(32px, 9999px, 78px, 0); }
            20% { clip: rect(8px, 9999px, 32px, 0); }
            40% { clip: rect(70px, 9999px, 89px, 0); }
            60% { clip: rect(98px, 9999px, 102px, 0); }
            80% { clip: rect(45px, 9999px, 99px, 0); }
            100% { clip: rect(82px, 9999px, 103px, 0); }
        }
        
        @keyframes glitch-anim-2 {
            0% { clip: rect(54px, 9999px, 46px, 0); }
            20% { clip: rect(12px, 9999px, 99px, 0); }
            40% { clip: rect(23px, 9999px, 15px, 0); }
            60% { clip: rect(90px, 9999px, 2px, 0); }
            80% { clip: rect(1px, 9999px, 102px, 0); }
            100% { clip: rect(62px, 9999px, 22px, 0); }
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            font-family: 'Fira Code', monospace;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .logo i {
            margin-right: 0.5rem;
            font-size: 2rem;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            z-index: 10;
            margin-bottom: 2rem;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        
        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .btn {
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 157, 0.3);
        }
        
        .btn-secondary {
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-secondary:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .hero-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            width: 100%;
            max-width: 1200px;
            margin-top: 2rem;
        }
        
        .code-bg {
            width: 500px;
            height: 500px;
            background: var(--code-bg);
            border-radius: 10px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 5;
        }
        .code-bg:hover {
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.5), 
                        0 0 40px rgba(0, 184, 255, 0.3),
                        0 0 60px rgba(255, 0, 170, 0.2);
        }
        
        .code-header {
            padding: 0.5rem 1rem;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            gap: 0.5rem;
        }
        
        .code-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .dot-red {
            background: #ff5f56;
        }
        
        .dot-yellow {
            background: #ffbd2e;
        }
        
        .dot-green {
            background: #27c93f;
        }
        
        .code-body {
            padding: 1.5rem;
            flex-grow: 1;
            overflow: hidden;
            position: relative;
            
            border: 2px solid transparent;
            background-clip: padding-box;
            animation: border-glow 4s linear infinite;
            transition: all 0.3s ease
        }

        
        
        .code-line {
            font-family: 'Fira Code', monospace;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
            display: flex;
        }
        
        .line-number {
            color: rgba(255, 255, 255, 0.3);
            margin-right: 1rem;
            user-select: none;
        }
        
        .code-keyword {
            color: #569cd6;
        }
        
        .code-function {
            color: #dcdcaa;
        }
        
        .code-string {
            color: #ce9178;
        }
        
        .code-comment {
            color: #6a9955;
        }
        
        .hero-image {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            overflow: hidden;
            animation: border-glow 4s linear infinite;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            z-index: 5;
            display: flex;
            align-items: center;
            border: 5px solid transparent;
            background-clip: padding-box;
            animation: border-glow 4s linear infinite;
            transition: all 0.3s ease;
            justify-content: center;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: 7px solid transparent;
            background-clip: padding-box;
            animation: border-glow 4s linear infinite;
            
            transition: transform 0.5s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.1);
        }
        
        @keyframes border-glow {
            0% { border-color: var(--primary); }
            25% { border-color: var(--secondary); }
            50% { border-color: #ff00aa; }
            75% { border-color: #00b8ff; }
            100% { border-color: var(--primary); }
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(30px);
        }
        
        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            background: var(--primary);
            top: 10%;
            left: 10%;
            animation: float 15s infinite ease-in-out;
        }
        
        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            background: var(--secondary);
            top: 60%;
            left: 70%;
            animation: float 12s infinite ease-in-out reverse;
        }
        
        .floating-element:nth-child(3) {
            width: 150px;
            height: 150px;
            background: #ff00aa;
            top: 30%;
            left: 50%;
            animation: float 18s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(50px, 50px);
            }
        }
        
        /* About Section */
        .section {
            padding: 5rem 5%;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 3px;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .skills {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .skill {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        

        .skill::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: 0.5s;
        }
        
        .skill:hover {
            background: var(--primary);
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .skill:hover::before {
            left: 100%;
        }
        
        

        .skill.glitch-active {
            animation: skill-glitch 0.3s linear;
        }
        
        @keyframes skill-glitch {
            0% { transform: translate(0); }
            20% { transform: translate(-3px, 3px); }
            40% { transform: translate(-3px, -3px); }
            60% { transform: translate(3px, 3px); }
            80% { transform: translate(3px, -3px); }
            100% { transform: translate(0); }
        }
        
        .about-image {
            flex: 1;
            position: relative;
        }
        
        .code-terminal {
            background: var(--darker);
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            font-family: 'Fira Code', monospace;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            background-clip: padding-box;
            animation: border-glow 4s linear infinite;
            transition: all 0.3s ease;
        }
        
        .terminal-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .terminal-title {
            margin-left: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .terminal-body {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .terminal-line {
            margin-bottom: 0.5rem;
            display: flex;
        }
        
        .terminal-prompt {
            color: var(--primary);
            margin-right: 0.5rem;
        }
        
        .terminal-command {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .terminal-output {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .cursor {
            display: inline-block;
            width: 8px;
            height: 16px;
            background: var(--primary);
            margin-left: 2px;
            animation: blink 1s infinite;
        }

        .code-terminal:hover {
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.5), 
                        0 0 40px rgba(0, 184, 255, 0.3),
                        0 0 60px rgba(255, 0, 170, 0.2);
        }
        
        @keyframes blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }
        
        /* Confetti Effect */
        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary);
            opacity: 0;
            pointer-events: none;
        }
        
        /* Projects Section */
        .projects {
            background: var(--darker);
            position: relative;
            overflow: hidden;
        }
        
        /* Particles Background */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0.5;
            animation: particle-float linear infinite;
        }
        
        @keyframes particle-float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .project-card {
            background: var(--gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 2px solid transparent;
            
            
            animation: border-glow 4s linear infinite;
            transition: all 0.3s ease
            
            background-clip: padding-box;
            animation: card-glow 8s linear infinite;
        }
        
        @keyframes card-glow {
            0% { border-color: var(--primary); box-shadow: 0 0 10px rgba(0, 255, 157, 0.3); }
            25% { border-color: var(--secondary); box-shadow: 0 0 10px rgba(0, 184, 255, 0.3); }
            50% { border-color: #ff00aa; box-shadow: 0 0 10px rgba(255, 0, 170, 0.3); }
            75% { border-color: #00b8ff; box-shadow: 0 0 10px rgba(0, 184, 255, 0.3); }
            100% { border-color: var(--primary); box-shadow: 0 0 10px rgba(0, 255, 157, 0.3); }
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.5), 
                        0 0 40px rgba(0, 184, 255, 0.3),
                        0 0 60px rgba(255, 0, 170, 0.2);
        }
        
        
        
        .project-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-tags {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            gap: 0.5rem;
        }
        
        .project-tag {
            background: rgba(0, 0, 0, 0.7);
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--light);
        }
        
        .project-content {
            padding: 1.5rem;
        }
        
        .project-title {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .project-description {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        .project-buttons {
            display: flex;
            gap: 1rem;
        }
        
        .project-btn {
            flex: 1;
            text-align: center;
            padding: 0.5rem;
            border-radius: 5px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .live-btn {
            background: var(--primary);
            color: var(--dark);
        }
        
        .live-btn:hover {
            background: var(--secondary);
        }
        
        .code-btn {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        
        .code-btn:hover {
            background: var(--primary);
            color: var(--dark);
        }
        
        /* Button Burst Effect */
        .burst {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            opacity: 0;
            transform: scale(0);
        }
        
        /* YouTube Section */
        .youtube-section {
            padding: 5rem 5%;
            background: var(--darker);
        }
        
        .youtube-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .youtube-videos {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .video-card {
            background: var(--gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            border: 2px solid transparent;
            background-clip: padding-box;
            animation: border-glow 4s linear infinite;
            transition: all 0.3s ease
        }
        
        .video-card:hover {
            transform: translateY(-10px);

            box-shadow: 0 0 20px rgba(0, 255, 157, 0.5), 
                        0 0 40px rgba(0, 184, 255, 0.3),
                        0 0 60px rgba(255, 0, 170, 0.2);
        
        }
        
        .video-thumbnail {
            position: relative;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            overflow: hidden;
        }
        
        .video-thumbnail img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .video-card:hover .video-thumbnail img {
            transform: scale(1.1);
        }
        
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .video-card:hover .play-icon {
            opacity: 1;
        }
        
        .video-info {
            padding: 1.5rem;
        }
        
        .video-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--light);
        }
        
        .video-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        /* Contact Section */
        .contact {
            background: var(--darker);
        }
        
        .contact-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            gap: 3rem;
            
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
            
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            color: var(--primary);
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        
        .contact-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        .contact-form {
            flex: 1;
            background: var(--gray);
            padding: 2rem;
            border-radius: 10px;
            border: 5px solid transparent;
            background-clip: padding-box;
            animation: card-glow 8s linear infinite;
            transition: all 0.3s ease
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 5px;
            color: var(--light);
            font-family: 'Roboto', sans-serif;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary);
            color: var(--dark);
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            padding: 2rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
        }
        
        .social-link[data-social="youtube"]:hover {
            background: var(--youtube);
            color: white;
        }
        
        .social-link[data-social="instagram"]:hover {
            background: var(--instagram);
            color: white;
        }
        
        .social-link[data-social="facebook"]:hover {
            background: var(--facebook);
            color: white;
        }
        
        .social-tooltip {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gray);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .social-link:hover .social-tooltip {
            opacity: 1;
            top: -50px;
        }
        
        .copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        /* Animations */
        .fade-in {
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .slide-up {
            animation: slideUp 1s ease-in-out;
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .delay-1 {
            animation-delay: 0.2s;
        }
        
        .delay-2 {
            animation-delay: 0.4s;
        }
        
        .delay-3 {
            animation-delay: 0.6s;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero-container {
                flex-direction: column;
            }
            
            .hero-image {
                order: -1;
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .code-bg, .hero-image {
                width: 300px;
                height: 300px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--darker);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3rem;
                transition: all 0.5s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero {
                padding-top: 100px;
                height: auto;
                min-height: 100vh;
            }
            
            .code-bg, .hero-image {
                width: 100%;
                max-width: 400px;
            }
            
            .projects-grid, .youtube-videos {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero h2 {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .project-buttons {
                flex-direction: column;
            }
            
            .hero-image {
                width: 250px;
                height: 250px;
            }
        }
        
        /* iOS specific fixes */
        @supports (-webkit-touch-callout: none) {
            .hero {
                min-height: -webkit-fill-available;
            }
        }