/* Interactive Background (Fluid Simulation) */
#interactive-bgr {
    position: fixed;
    left: 0;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: var(--z-background);
}

#interactive-bgr canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}

#interactive-bgr .overlay {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: 0 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: var(--z-content);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--space-md);
}

.hero-avatar {
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(34, 141, 255, 0.3));
}


.hero-text {
}

.hero-intro {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--space-sm);
    opacity: 0.9;
}

/* Neon Text Effect */
.neon-text {
    font-family: 'Times New Roman', serif;
    font-size: clamp(3.5rem, 10vw, 8.75rem);
    margin: var(--space-sm) 0;
    line-height: 1;
    color: var(--color-light);
    text-align: left;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #fff,
            0 0 40px var(--color-accent),
            0 0 70px var(--color-accent),
            0 0 80px var(--color-accent),
            0 0 100px var(--color-accent),
            0 0 150px var(--color-accent);
    }
    to {
        text-shadow: 
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px #fff,
            0 0 20px var(--color-accent),
            0 0 35px var(--color-accent),
            0 0 40px var(--color-accent),
            0 0 50px var(--color-accent),
            0 0 75px var(--color-accent);
    }
}

/* Typed Text */
.hero-roles {
    height: 2rem;
    margin: var(--space-md) 0;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    display: flex;
    align-items: center;
}

.typed-output {
    color: var(--color-light);
}

.typed-cursor {
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes heroContentFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA */
.hero-cta {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid var(--color-light);
    border-radius: 50px;
    color: var(--color-light);
    font-weight: 500;
    transition: all var(--transition-normal);
    margin-top: var(--space-md);
}

.hero-cta:hover {
    background: var(--color-light);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 141, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .hero-avatar {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .profile-img {
        max-width: 300px;
    }
    
    .neon-text {
        text-align: center;
        font-size: clamp(3rem, 15vw, 5rem);
    }
    
    .hero-roles {
        justify-content: center;
    }
    
    .hero-cta {
        margin: var(--space-md) auto 0;
    }
}