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

        #bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

        .hero-content {
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #64ffda, #42a5f5, #ab47bc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: textGlow 3s ease-in-out infinite;
        }

        .hero p {
            font-size: 1.5rem;
            color: #b0bec5;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #64ffda, #42a5f5);
            color: #0f0f23;
        }

        .btn-secondary {
            background: transparent;
            color: #64ffda;
            border: 2px solid #64ffda;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
        }

        .nav {
            position: fixed;
            top: 2rem;
            right: 2rem;
            z-index: 1000;
            background: rgba(15, 15, 35, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            padding: 0.5rem;
        }

        .nav a {
            color: #b0bec5;
            text-decoration: none;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .nav a:hover {
            color: #64ffda;
            background: rgba(100, 255, 218, 0.1);
        }

        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(45deg, #64ffda, #42a5f5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 3rem;
        }

        .about-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #64ffda, #42a5f5, #ab47bc);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            margin: 0 auto;
            animation: float 3s ease-in-out infinite;
        }

        .about-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #b0bec5;
        }

        .experience-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .experience-card:hover {
            transform: translateY(-5px);
            border-color: #64ffda;
            box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
        }

        .experience-card h3 {
            color: #64ffda;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .skill-category {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            padding: 2rem;
            border: 1px solid rgba(100, 255, 218, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            border-color: #64ffda;
            transform: translateY(-3px);
        }

        .skill-category h3 {
            color: #64ffda;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: linear-gradient(45deg, rgba(100, 255, 218, 0.2), rgba(66, 165, 245, 0.2));
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            color: #64ffda;
            border: 1px solid rgba(100, 255, 218, 0.3);
        }

        .passions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .passion-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(100, 255, 218, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .passion-card:hover {
            transform: scale(1.05);
            border-color: #64ffda;
        }

        .passion-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .passion-card h3 {
            color: #64ffda;
            margin-bottom: 1rem;
        }

        .contact {
            text-align: center;
            background: rgba(26, 26, 46, 0.3);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: rgba(100, 255, 218, 0.1);
            border: 1px solid #64ffda;
            border-radius: 50px;
            color: #64ffda;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #64ffda;
            color: #0f0f23;
            transform: translateY(-3px);
        }

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

        @keyframes textGlow {
            0%, 100% { filter: drop-shadow(0 0 10px rgba(100, 255, 218, 0.5)); }
            50% { filter: drop-shadow(0 0 20px rgba(100, 255, 218, 0.8)); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #64ffda;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        .cv-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .cv-card {
            background: rgba(26, 26, 46, 0.6);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid rgba(100, 255, 218, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .cv-card:hover {
            transform: translateY(-8px);
            border-color: #64ffda;
            box-shadow: 0 25px 50px rgba(100, 255, 218, 0.15);
        }

        .cv-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .cv-card h3 {
            color: #64ffda;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .cv-card p {
            color: #b0bec5;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .cv-download-btn {
            background: linear-gradient(45deg, #64ffda, #42a5f5);
            color: #0f0f23;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            justify-content: center;
        }

        .cv-download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
            background: linear-gradient(45deg, #42a5f5, #64ffda);
        }

        .cv-download-btn:active {
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .about-grid { grid-template-columns: 1fr; text-align: center; }
            .nav { position: relative; top: auto; right: auto; margin: 1rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .social-links { flex-direction: column; align-items: center; }
        }