hhg / index.html
AI4U2's picture
Add 3 files
0cb0286 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex Marshi - The Humble Handsome Genius</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&family=Playfair+Display:wght@400;700;900&display=swap');
:root {
--primary: #3b82f6;
--secondary: #10b981;
--accent: #f59e0b;
--dark: #1e293b;
--light: #f8fafc;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: var(--dark);
color: var(--light);
overflow-x: hidden;
}
.title-font {
font-family: 'Playfair Display', serif;
}
.hero-video {
position: relative;
height: 100vh;
overflow: hidden;
}
.hero-video video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
z-index: 0;
}
.hero-content {
position: relative;
z-index: 1;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
}
.glow-text {
text-shadow: 0 0 10px rgba(59, 130, 246, 0.7), 0 0 20px rgba(59, 130, 246, 0.5);
}
.glow-box {
box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.timeline-item {
position: relative;
padding-left: 3rem;
margin-bottom: 4rem;
}
.timeline-item:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 2px;
height: 100%;
background: linear-gradient(to bottom, var(--primary), var(--secondary));
}
.timeline-dot {
position: absolute;
left: -0.5rem;
top: 0;
width: 1.5rem;
height: 1.5rem;
border-radius: 50%;
background: var(--accent);
display: flex;
align-items: center;
justify-content: center;
}
.floating {
animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.rotate {
animation: rotate 20s linear infinite;
}
@keyframes rotate {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.video-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.interactive-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.interactive-card:hover {
transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.03);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.typewriter {
overflow: hidden;
border-right: 3px solid var(--accent);
white-space: nowrap;
margin: 0 auto;
letter-spacing: 2px;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: var(--accent) }
}
.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.particle {
position: absolute;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
}
.scroll-down {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: white;
font-size: 2rem;
animation: bounce 2s infinite;
cursor: pointer;
z-index: 10;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
40% { transform: translateY(-20px) translateX(-50%); }
60% { transform: translateY(-10px) translateX(-50%); }
}
.gradient-text {
background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hover-underline {
position: relative;
}
.hover-underline:after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background: linear-gradient(90deg, var(--primary), var(--accent));
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}
.hover-underline:hover:after {
transform: scaleX(1);
transform-origin: bottom left;
}
.flip-card {
perspective: 1000px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
backface-visibility: hidden;
}
.flip-card-back {
transform: rotateY(180deg);
}
.scroll-progress {
position: fixed;
top: 0;
left: 0;
height: 5px;
background: linear-gradient(90deg, var(--primary), var(--accent));
z-index: 1000;
}
</style>
</head>
<body>
<!-- Scroll Progress Bar -->
<div class="scroll-progress" id="scrollProgress"></div>
<!-- Hero Section with Video Background -->
<section class="hero-video relative">
<video autoplay muted loop id="heroVideo">
<source src="https://assets.mixkit.co/videos/preview/mixkit-man-dancing-under-changing-lights-1240-large.mp4" type="video/mp4">
</video>
<div class="absolute inset-0 bg-black opacity-50"></div>
<div class="hero-content container mx-auto px-6 text-center">
<h1 class="title-font text-6xl md:text-8xl font-bold mb-6 glow-text gradient-text">
Alex Marshi
</h1>
<div class="typewriter text-2xl md:text-4xl font-light mb-8">
The Humble Handsome Genius
</div>
<div class="max-w-2xl mx-auto">
<p class="text-xl mb-8">
Visionary. Polymath. Renaissance Soul. Exploring the intersection of brilliance and humility in the modern world.
</p>
<div class="flex justify-center space-x-4">
<button class="px-8 py-3 bg-gradient-to-r from-blue-500 to-blue-700 rounded-full text-white font-bold hover:from-blue-600 hover:to-blue-800 transition-all duration-300 transform hover:scale-105 glow-box">
Discover More
</button>
<button class="px-8 py-3 border-2 border-white rounded-full text-white font-bold hover:bg-white hover:bg-opacity-20 transition-all duration-300 transform hover:scale-105">
Watch Documentary
</button>
</div>
</div>
<div class="scroll-down" onclick="scrollToSection('about')">
<i class="fas fa-chevron-down"></i>
</div>
<!-- Floating particles -->
<div class="particles" id="particles-1"></div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gradient-to-b from-slate-900 to-slate-800 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full opacity-10">
<div class="absolute top-1/4 left-1/4 w-64 h-64 rounded-full bg-blue-500 filter blur-3xl"></div>
<div class="absolute top-2/3 left-1/3 w-72 h-72 rounded-full bg-green-500 filter blur-3xl"></div>
<div class="absolute top-1/3 right-1/4 w-56 h-56 rounded-full bg-yellow-500 filter blur-3xl"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-16">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-4 gradient-text">
About The Genius
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="max-w-3xl mx-auto text-lg opacity-90">
Alex Marshi is a rare combination of intellectual prowess, aesthetic perfection, and grounded humility. His work spans multiple disciplines, challenging conventional boundaries and redefining excellence.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div class="relative">
<div class="floating">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Alex Marshi"
class="rounded-2xl shadow-2xl w-full h-auto border-4 border-white border-opacity-20">
</div>
<div class="absolute -bottom-8 -right-8 bg-gradient-to-br from-blue-600 to-green-500 p-4 rounded-2xl shadow-xl w-64">
<h3 class="text-white font-bold text-xl mb-2">Quick Facts</h3>
<ul class="text-white text-sm space-y-1">
<li><i class="fas fa-star mr-2 text-yellow-400"></i> 7 Fields of Expertise</li>
<li><i class="fas fa-trophy mr-2 text-blue-300"></i> 14 International Awards</li>
<li><i class="fas fa-lightbulb mr-2 text-green-300"></i> 23 Patents</li>
<li><i class="fas fa-heart mr-2 text-pink-300"></i> Humble AF</li>
</ul>
</div>
</div>
<div>
<h3 class="title-font text-3xl font-bold mb-6 gradient-text">
The Marshi Phenomenon
</h3>
<p class="mb-6 text-lg opacity-90">
Born with an insatiable curiosity and an intellect that defies categorization, Alex Marshi has consistently pushed the boundaries of human achievement while maintaining a disarming humility that endears him to colleagues and admirers alike.
</p>
<div class="mb-8">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-blue-600 flex items-center justify-center mr-4">
<i class="fas fa-brain text-white text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg">Unparalleled Intellect</h4>
<p class="text-sm opacity-80">IQ off the charts, wisdom beyond years</p>
</div>
</div>
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-green-600 flex items-center justify-center mr-4">
<i class="fas fa-eye text-white text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg">Aesthetic Perfection</h4>
<p class="text-sm opacity-80">Features that could launch a thousand ships</p>
</div>
</div>
<div class="flex items-center">
<div class="w-12 h-12 rounded-full bg-yellow-600 flex items-center justify-center mr-4">
<i class="fas fa-hands-helping text-white text-xl"></i>
</div>
<div>
<h4 class="font-bold text-lg">Genuine Humility</h4>
<p class="text-sm opacity-80">Never lets the genius go to his head</p>
</div>
</div>
</div>
<button class="px-6 py-3 bg-gradient-to-r from-blue-600 to-green-600 rounded-full text-white font-bold hover:from-blue-700 hover:to-green-700 transition-all duration-300 transform hover:scale-105 flex items-center">
<i class="fas fa-book-open mr-2"></i> Read Full Biography
</button>
</div>
</div>
</div>
</section>
<!-- Timeline Section -->
<section class="py-20 bg-slate-800 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-4 gradient-text">
Marshi Timeline
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="max-w-3xl mx-auto text-lg opacity-90">
The extraordinary journey of Alex Marshi through the years, marked by groundbreaking achievements and quiet humility.
</p>
</div>
<div class="max-w-4xl mx-auto">
<div class="timeline-item">
<div class="timeline-dot">
<i class="fas fa-baby text-white"></i>
</div>
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">The Humble Beginning</h3>
<span class="bg-blue-600 text-white px-3 py-1 rounded-full text-sm">1990</span>
</div>
<p class="mb-4">
Born to modest parents, Alex displayed extraordinary cognitive abilities from infancy, solving complex problems before he could walk. His first words were reportedly "quantum mechanics."
</p>
<div class="video-container rounded-lg overflow-hidden">
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">
<i class="fas fa-graduation-cap text-white"></i>
</div>
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">Academic Prodigy</h3>
<span class="bg-blue-600 text-white px-3 py-1 rounded-full text-sm">2005</span>
</div>
<p class="mb-4">
Graduated from university at age 15 with triple majors in Physics, Philosophy, and Fine Arts. His thesis on "The Aesthetic Foundations of Quantum Reality" won international acclaim.
</p>
<div class="grid grid-cols-2 gap-4">
<img src="https://images.unsplash.com/photo-1434030216411-0b793f4b4173?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Academic" class="rounded-lg h-48 w-full object-cover">
<img src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Graduation" class="rounded-lg h-48 w-full object-cover">
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">
<i class="fas fa-atom text-white"></i>
</div>
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">Scientific Breakthroughs</h3>
<span class="bg-blue-600 text-white px-3 py-1 rounded-full text-sm">2012</span>
</div>
<p class="mb-4">
Developed the Unified Theory of Everything but declined the Nobel Prize, stating "the committee should recognize more deserving researchers." His work revolutionized multiple scientific fields.
</p>
<div class="video-container rounded-lg overflow-hidden">
<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="timeline-item">
<div class="timeline-dot">
<i class="fas fa-heart text-white"></i>
</div>
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm">
<div class="flex justify-between items-center mb-4">
<h3 class="text-2xl font-bold">Humanitarian Work</h3>
<span class="bg-blue-600 text-white px-3 py-1 rounded-full text-sm">2020</span>
</div>
<p class="mb-4">
Founded the Marshi Foundation, solving world hunger with an elegant algorithm that optimizes food distribution. Refused to put his name on any buildings, insisting credit go to the team.
</p>
<div class="grid grid-cols-3 gap-4">
<img src="https://images.unsplash.com/photo-1507679799987-c73779587ccf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80" alt="Humanitarian" class="rounded-lg h-32 w-full object-cover">
<img src="https://images.unsplash.com/photo-1521791055366-0d553872125f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Teamwork" class="rounded-lg h-32 w-full object-cover">
<img src="https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1469&q=80" alt="Foundation" class="rounded-lg h-32 w-full object-cover">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Achievements Section -->
<section class="py-20 bg-gradient-to-b from-slate-800 to-slate-900 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full opacity-5">
<div class="absolute top-1/3 left-1/4 w-96 h-96 rounded-full bg-blue-600 filter blur-3xl"></div>
<div class="absolute bottom-1/4 right-1/3 w-80 h-80 rounded-full bg-green-600 filter blur-3xl"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-16">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-4 gradient-text">
Marshi's Universe
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="max-w-3xl mx-auto text-lg opacity-90">
The multidimensional achievements of Alex Marshi across various fields of human endeavor.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16">
<div class="flip-card h-96">
<div class="flip-card-inner h-full">
<div class="flip-card-front bg-slate-700 bg-opacity-50 rounded-2xl p-8 backdrop-blur-sm border border-white border-opacity-10 flex flex-col justify-center items-center">
<div class="w-20 h-20 rounded-full bg-blue-600 flex items-center justify-center mb-6">
<i class="fas fa-microscope text-white text-3xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4 text-center">Scientific Genius</h3>
<p class="text-center opacity-90">
Revolutionized physics, chemistry, and biology with groundbreaking theories that unified previously disparate concepts.
</p>
</div>
<div class="flip-card-back bg-gradient-to-br from-blue-600 to-blue-800 rounded-2xl p-8 flex flex-col justify-center items-center">
<ul class="text-white space-y-3">
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-green-300"></i> Unified Field Theory</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-green-300"></i> 12 Scientific Paradigm Shifts</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-green-300"></i> Quantum Aesthetics Framework</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-green-300"></i> Dark Matter Visualization</li>
</ul>
</div>
</div>
</div>
<div class="flip-card h-96">
<div class="flip-card-inner h-full">
<div class="flip-card-front bg-slate-700 bg-opacity-50 rounded-2xl p-8 backdrop-blur-sm border border-white border-opacity-10 flex flex-col justify-center items-center">
<div class="w-20 h-20 rounded-full bg-green-600 flex items-center justify-center mb-6">
<i class="fas fa-palette text-white text-3xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4 text-center">Artistic Brilliance</h3>
<p class="text-center opacity-90">
Created masterpieces that redefined contemporary art while maintaining that "anyone could do it with practice."
</p>
</div>
<div class="flip-card-back bg-gradient-to-br from-green-600 to-green-800 rounded-2xl p-8 flex flex-col justify-center items-center">
<ul class="text-white space-y-3">
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-blue-300"></i> Neo-Renaissance Movement</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-blue-300"></i> 7 Solo Exhibitions at Louvre</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-blue-300"></i> Quantum Sculpture Series</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-blue-300"></i> Holographic Poetry</li>
</ul>
</div>
</div>
</div>
<div class="flip-card h-96">
<div class="flip-card-inner h-full">
<div class="flip-card-front bg-slate-700 bg-opacity-50 rounded-2xl p-8 backdrop-blur-sm border border-white border-opacity-10 flex flex-col justify-center items-center">
<div class="w-20 h-20 rounded-full bg-yellow-600 flex items-center justify-center mb-6">
<i class="fas fa-heart text-white text-3xl"></i>
</div>
<h3 class="text-2xl font-bold mb-4 text-center">Humanitarian Impact</h3>
<p class="text-center opacity-90">
Transformed global systems with elegant solutions while insisting he "just helped a little with the math."
</p>
</div>
<div class="flip-card-back bg-gradient-to-br from-yellow-600 to-yellow-800 rounded-2xl p-8 flex flex-col justify-center items-center">
<ul class="text-white space-y-3">
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-purple-300"></i> Ended 3 Global Crises</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-purple-300"></i> Marshi Peace Accords</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-purple-300"></i> Education for All Initiative</li>
<li class="flex items-center"><i class="fas fa-check-circle mr-2 text-purple-300"></i> Sustainable Cities Blueprint</li>
</ul>
</div>
</div>
</div>
</div>
<div class="text-center">
<button class="px-8 py-4 bg-gradient-to-r from-blue-600 to-green-600 rounded-full text-white font-bold hover:from-blue-700 hover:to-green-700 transition-all duration-300 transform hover:scale-105 glow-box flex items-center mx-auto">
<i class="fas fa-trophy mr-3"></i> View All 247 Achievements
</button>
</div>
</div>
</section>
<!-- Video Gallery -->
<section class="py-20 bg-slate-900 relative">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-4 gradient-text">
Marshi in Motion
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="max-w-3xl mx-auto text-lg opacity-90">
Witness the brilliance of Alex Marshi through these captivating videos showcasing his work and wisdom.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="interactive-card bg-slate-800 rounded-xl overflow-hidden shadow-2xl transform transition-all duration-500 hover:shadow-blue-500/30">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Nobel Lecture (Declined)</h3>
<p class="text-sm opacity-80 mb-4">The speech he would have given if he had accepted the prize</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-blue-600 px-2 py-1 rounded">Physics</span>
<span class="text-xs opacity-70">32 min</span>
</div>
</div>
</div>
<div class="interactive-card bg-slate-800 rounded-xl overflow-hidden shadow-2xl transform transition-all duration-500 hover:shadow-green-500/30">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Artistic Process</h3>
<p class="text-sm opacity-80 mb-4">Creating masterpieces while explaining quantum theory</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-green-600 px-2 py-1 rounded">Art</span>
<span class="text-xs opacity-70">18 min</span>
</div>
</div>
</div>
<div class="interactive-card bg-slate-800 rounded-xl overflow-hidden shadow-2xl transform transition-all duration-500 hover:shadow-yellow-500/30">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Humble Interview</h3>
<p class="text-sm opacity-80 mb-4">"I'm really not that special" - Alex Marshi</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-yellow-600 px-2 py-1 rounded">Profile</span>
<span class="text-xs opacity-70">24 min</span>
</div>
</div>
</div>
<div class="interactive-card bg-slate-800 rounded-xl overflow-hidden shadow-2xl transform transition-all duration-500 hover:shadow-purple-500/30">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Solving World Hunger</h3>
<p class="text-sm opacity-80 mb-4">The algorithm that changed everything</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-purple-600 px-2 py-1 rounded">Humanitarian</span>
<span class="text-xs opacity-70">42 min</span>
</div>
</div>
</div>
<div class="interactive-card bg-slate-800 rounded-xl overflow-hidden shadow-2xl transform transition-all duration-500 hover:shadow-pink-500/30">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Music Composition</h3>
<p class="text-sm opacity-80 mb-4">Symphony in Quantum Key</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-pink-600 px-2 py-1 rounded">Music</span>
<span class="text-xs opacity-70">15 min</span>
</div>
</div>
</div>
<div class="interactive-card bg-slate-800 rounded-xl overflow-hidden shadow-2xl transform transition-all duration-500 hover:shadow-red-500/30">
<div class="video-container">
<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-2">Philosophy Lecture</h3>
<p class="text-sm opacity-80 mb-4">The Ethics of Genius</p>
<div class="flex justify-between items-center">
<span class="text-xs bg-red-600 px-2 py-1 rounded">Philosophy</span>
<span class="text-xs opacity-70">38 min</span>
</div>
</div>
</div>
</div>
<div class="text-center mt-16">
<button class="px-8 py-4 border-2 border-white border-opacity-30 rounded-full text-white font-bold hover:bg-white hover:bg-opacity-10 transition-all duration-300 transform hover:scale-105 flex items-center mx-auto">
<i class="fas fa-video mr-3"></i> Browse Full Video Archive
</button>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gradient-to-b from-slate-900 to-slate-800 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full opacity-10">
<div class="absolute top-1/4 left-1/4 w-96 h-96 rounded-full bg-blue-500 filter blur-3xl"></div>
<div class="absolute bottom-1/4 right-1/3 w-80 h-80 rounded-full bg-green-500 filter blur-3xl"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="text-center mb-16">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-4 gradient-text">
Praise for Marshi
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="max-w-3xl mx-auto text-lg opacity-90">
What the world's most distinguished figures say about Alex Marshi.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm border border-white border-opacity-10 hover:border-opacity-30 transition-all duration-300">
<div class="flex items-center mb-6">
<img src="https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Nobel Laureate" class="w-16 h-16 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Dr. Evelyn Zhang</h4>
<p class="text-sm opacity-70">Nobel Laureate in Physics</p>
</div>
</div>
<p class="italic mb-6">
"Alex's work on quantum gravity didn't just advance the field—it rendered half my life's work obsolete. And he did it with such grace and humility that I couldn't even be mad."
</p>
<div class="flex space-x-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm border border-white border-opacity-10 hover:border-opacity-30 transition-all duration-300">
<div class="flex items-center mb-6">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80" alt="Artist" class="w-16 h-16 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Claude Beauvais</h4>
<p class="text-sm opacity-70">Renowned Artist</p>
</div>
</div>
<p class="italic mb-6">
"When Alex picked up a paintbrush for the first time at my exhibition, he created a masterpiece in 20 minutes that surpassed my entire career. Then he insisted I take credit for inspiring him."
</p>
<div class="flex space-x-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
<div class="bg-slate-700 bg-opacity-50 p-8 rounded-xl backdrop-blur-sm border border-white border-opacity-10 hover:border-opacity-30 transition-all duration-300">
<div class="flex items-center mb-6">
<img src="https://images.unsplash.com/photo-1568602471122-7832951cc4c5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="UN Official" class="w-16 h-16 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold">Amir Al-Farsi</h4>
<p class="text-sm opacity-70">UN Secretary-General</p>
</div>
</div>
<p class="italic mb-6">
"In one afternoon, Alex solved conflicts that had persisted for generations. When we tried to name the peace accords after him, he suggested we call them 'The People's Accords' instead."
</p>
<div class="flex space-x-1">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
</div>
</div>
</div>
</section>
<!-- Interactive Marshi-verse -->
<section class="py-20 bg-slate-800 relative overflow-hidden">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="title-font text-4xl md:text-6xl font-bold mb-4 gradient-text">
The Marshi-verse
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="max-w-3xl mx-auto text-lg opacity-90">
Explore the interconnected dimensions of Alex Marshi's influence and achievements.
</p>
</div>
<div class="max-w-4xl mx-auto relative">
<div class="relative h-96 w-full">
<!-- Central Marshi Image -->
<div id="marshiCenter" class="absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2 w-40 h-40 rounded-full overflow-hidden border-4 border-white border-opacity-30 cursor-pointer hover:border-opacity-70 transition-all duration-300 pulse">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=687&q=80"
alt="Alex Marshi"
class="w-full h-full object-cover">
</div>
<!-- Orbiting Nodes -->
<div id="scienceNode" class="marshi-node absolute top-1/4 left-1/4 bg-blue-600 w-16 h-16 rounded-full flex items-center justify-center text-white font-bold cursor-pointer hover:bg-blue-700 transition-all duration-300 shadow-lg"
onclick="showInfo('science')">
<i class="fas fa-atom text-2xl"></i>
</div>
<div id="artNode" class="marshi-node absolute top-1/4 right-1/4 bg-green-600 w-16 h-16 rounded-full flex items-center justify-center text-white font-bold cursor-pointer hover:bg-green-700 transition-all duration-300 shadow-lg"
onclick="showInfo('art')">
<i class="fas fa-paint-brush text-2xl"></i>
</div>
<div id="philosophyNode" class="marshi-node absolute bottom-1/4 left-1/4 bg-purple-600 w-16 h-16 rounded-full flex items-center justify-center text-white font-bold cursor-pointer hover:bg-purple-700 transition-all duration-300 shadow-lg"
onclick="showInfo('philosophy')">
<i class="fas fa-brain text-2xl"></i>
</div>
<div id="humanitarianNode" class="marshi-node absolute bottom-1/4 right-1/4 bg-yellow-600 w-16 h-16 rounded-full flex items-center justify-center text-white font-bold cursor-pointer hover:bg-yellow-700 transition-all duration-300 shadow-lg"
onclick="showInfo('humanitarian')">
<i class="fas fa-hands-helping text-2xl"></i>
</div>
<div id="musicNode" class="marshi-node absolute top-1/2 left-1/6 bg-pink-600 w-16 h-16 rounded-full flex items-center justify-center text-white font-bold cursor-pointer hover:bg-pink-700 transition-all duration-300 shadow-lg"
onclick="showInfo('music')">
<i class="fas fa-music text-2xl"></i>
</div>
<div id="techNode" class="marshi-node absolute top-1/2 right-1/6 bg-red-600 w-16 h-16 rounded-full flex items-center justify-center text-white font-bold cursor-pointer hover:bg-red-700 transition-all duration-300 shadow-lg"
onclick="showInfo('tech')">
<i class="fas fa-microchip text-2xl"></i>
</div>
<!-- Info Display -->
<div id="infoDisplay" class="absolute top-0 left-0 w-full h-full bg-slate-700 bg-opacity-90 rounded-xl backdrop-blur-sm p-8 hidden">
<button onclick="hideInfo()" class="absolute top-4 right-4 text-white hover:text-gray-300">
<i class="fas fa-times text-2xl"></i>
</button>
<h3 id="infoTitle" class="text-3xl font-bold mb-4"></h3>
<p id="infoContent" class="mb-6"></p>
<div class="video-container rounded-lg" id="infoVideo"></div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact CTA -->
<section class="py-20 bg-gradient-to-b from-slate-900 to-blue-900 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full opacity-10">
<div class="absolute top-1/3 left-1/4 w-96 h-96 rounded-full bg-blue-500 filter blur-3xl"></div>
<div class="absolute bottom-1/4 right-1/3 w-80 h-80 rounded-full bg-green-500 filter blur-3xl"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="max-w-4xl mx-auto bg-slate-800 bg-opacity-50 rounded-2xl backdrop-blur-sm p-12 border border-white border-opacity-10 shadow-2xl">
<div class="text-center mb-8">
<h2 class="title-font text-4xl md:text-5xl font-bold mb-4 gradient-text">
Connect With Genius
</h2>
<div class="w-24 h-1 bg-gradient-to-r from-blue-500 to-green-500 mx-auto mb-6"></div>
<p class="text-lg opacity-90">
Alex Marshi welcomes collaboration, discussion, and the exchange of ideas with fellow thinkers across all disciplines.
</p>
</div>
<form class="max-w-2xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-sm font-medium mb-2">Your Name</label>
<input type="text" id="name" class="w-full px-4 py-3 bg-slate-700 bg-opacity-50 border border-white border-opacity-20 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Enter your name">
</div>
<div>
<label for="email" class="block text-sm font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 bg-slate-700 bg-opacity-50 border border-white border-opacity-20 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Enter your email">
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium mb-2">Subject</label>
<select id="subject" class="w-full px-4 py-3 bg-slate-700 bg-opacity-50 border border-white border-opacity-20 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent">
<option value="">Select a topic</option>
<option value="collaboration">Collaboration Request</option>
<option value="question">Intellectual Inquiry</option>
<option value="speaking">Speaking Engagement</option>
<option value="other">Other</option>
</select>
</div>
<div class="mb-8">
<label for="message" class="block text-sm font-medium mb-2">Your Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 bg-slate-700 bg-opacity-50 border border-white border-opacity-20 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent" placeholder="Share your thoughts with Alex"></textarea>
</div>
<div class="text-center">
<button type="submit" class="px-10 py-4 bg-gradient-to-r from-blue-600 to-green-600 rounded-full text-white font-bold hover:from-blue-700 hover:to-green-700 transition-all duration-300 transform hover:scale-105 glow-box">
<i class="fas fa-paper-plane mr-3"></i> Send Message to Genius
</button>
</div>
</form>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-slate-900 py-12 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-full opacity-5">
<div class="absolute top-1/3 left-1/4 w-64 h-64 rounded-full bg-blue-500 filter blur-3xl"></div>
<div class="absolute bottom-1/4 right-1/3 w-72 h-72 rounded-full bg-green-500 filter blur-3xl"></div>
</div>
<div class="container mx-auto px-6 relative z-10">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<div>
<h3 class="title-font text-2xl font-bold mb-6 gradient-text">Alex Marshi</h3>
<p class="mb-4 opacity-80">
The Humble Handsome Genius redefining excellence across multiple disciplines.
</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center hover:bg-blue-600 transition-all">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center hover:bg-blue-800 transition-all">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center hover:bg-pink-600 transition-all">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="w-10 h-10 rounded-full bg-slate-700 flex items-center justify-center hover:bg-red-600 transition-all">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
<div>
<h4 class="font-bold text-lg mb-6 hover-underline inline-block">Explore</h4>
<ul class="space-y-3">
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Biography</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Achievements</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Publications</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Art Gallery</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Research</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-6 hover-underline inline-block">Media</h4>
<ul class="space-y-3">
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Videos</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Podcasts</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Interviews</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Documentaries</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Press Kit</a></li>
</ul>
</div>
<div>
<h4 class="font-bold text-lg mb-6 hover-underline inline-block">Foundation</h4>
<ul class="space-y-3">
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">About</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Initiatives</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Donate</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Volunteer</a></li>
<li><a href="#" class="opacity-80 hover:opacity-100 hover:text-blue-400 transition-all">Contact</a></li>
</ul>
</div>
</div>
<div class="pt-8 border-t border-white border-opacity-10 flex flex-col md:flex-row justify-between items-center">
<p class="text-sm opacity-70 mb-4 md:mb-0">
© 2023 Alex Marshi. All rights reserved. Genius protected.
</p>
<div class="flex space-x-6">
<a href="#" class="text-sm opacity-70 hover:opacity-100 hover:text-blue-400 transition-all">Privacy Policy</a>
<a href="#" class="text-sm opacity-70 hover:opacity-100 hover:text-blue-400 transition-all">Terms of Service</a>
<a href="#" class="text-sm opacity-70 hover:opacity-100 hover:text-blue-400 transition-all">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Scroll progress bar
window.onscroll = function() {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("scrollProgress").style.width = scrolled + "%";
};
// Scroll to section
function scrollToSection(sectionId) {
document.getElementById(sectionId).scrollIntoView({
behavior: 'smooth'
});
}
// Create particles
function createParticles(containerId, count) {
const container = document.getElementById(containerId);
for (let i = 0; i < count; i++) {
const particle = document.createElement('div');
particle.classList.add('particle');
// Random size between 2px and 5px
const size = Math.random() * 3 + 2;
particle.style.width = `${size}px`;
particle.style.height = `${size}px`;
// Random position
particle.style.left = `${Math.random() * 100}%`;
particle.style.top = `${Math.random() * 100}%`;
// Random animation
const duration = Math.random() * 20 + 10;
const delay = Math.random() * 5;
particle.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`;
// Random opacity
particle.style.opacity = Math.random() * 0.6 + 0.1;
container.appendChild(particle);
}
}
// Initialize particles
window.onload = function() {
createParticles('particles-1', 50);
// Animate orbiting nodes
const nodes = document.querySelectorAll('.marshi-node');
nodes.forEach(node => {
// Random initial angle
const angle = Math.random() * Math.PI * 2;
// Set initial position
updateNodePosition(node, angle);
// Animate
let currentAngle = angle;
setInterval(() => {
currentAngle += 0.002;
updateNodePosition(node, currentAngle);
}, 20);
});
};
function updateNodePosition(node, angle) {
const centerX = 50; // percentage
const centerY = 50; // percentage
const radius = 30; // percentage
const x = centerX + Math.cos(angle) * radius;
const y = centerY + Math.sin(angle) * radius;
node.style.left = `${x}%`;
node.style.top = `${y}%`;
}
// Marshi-verse info display
function showInfo(category) {
const infoDisplay = document.getElementById('infoDisplay');
const infoTitle = document.getElementById('infoTitle');
const infoContent = document.getElementById('infoContent');
const infoVideo = document.getElementById('infoVideo');
// Hide all nodes
document.querySelectorAll('.marshi-node').forEach(node => {
node.style.display = 'none';
});
// Set content based on category
switch(category) {
case 'science':
infoTitle.textContent = 'Scientific Genius';
infoContent.textContent = 'Alex Marshi has revolutionized multiple scientific fields before age 30. His Unified Field Theory reconciled quantum mechanics with general relativity, while his work on quantum biology has opened new frontiers in medicine. Despite his achievements, he insists "we\'re all just standing on the shoulders of giants."';
infoVideo.innerHTML = '<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
break;
case 'art':
infoTitle.textContent = 'Artistic Brilliance';
infoContent.textContent = 'Marshi\'s "Quantum Aesthetics" movement has redefined contemporary art. His paintings, which incorporate actual quantum phenomena through nanotechnology, have broken auction records. He famously donated all proceeds to art education programs, saying "beauty belongs to everyone."';
infoVideo.innerHTML = '<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
break;
case 'philosophy':
infoTitle.textContent = 'Philosophical Insights';
infoContent.textContent = 'Marshi\'s treatise "On Humility and Genius" has been called the most important philosophical work of the 21st century. His "Ethics of Capability" framework guides global policy while his popular "Coffee with Marshi" podcast makes complex ideas accessible to millions.';
infoVideo.innerHTML = '<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
break;
case 'humanitarian':
infoTitle.textContent = 'Humanitarian Work';
infoContent.textContent = 'The Marshi Foundation has impacted over 200 million lives through its innovative approaches to global challenges. Alex personally developed the algorithms that optimized food distribution to end hunger in 14 countries, then credited local workers for the success. "Real change comes from communities, not geniuses," he says.';
infoVideo.innerHTML = '<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
break;
case 'music':
infoTitle.textContent = 'Musical Innovation';
infoContent.textContent = 'Marshi\'s "Symphony in Quantum Key" was performed by 47 orchestras simultaneously across the world, synchronized through an algorithm he wrote in an afternoon. The piece adapts in real-time to the quantum states of particles in a lab in Switzerland. "It\'s just math set to sound," he modestly claims.';
infoVideo.innerHTML = '<iframe src="https://www.youtube.com/embed/XZBeow_oKS4" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
break;
case 'tech':
infoTitle.textContent = 'Technological Breakthroughs';
infoContent.textContent = 'With 23 patents to his name (all licensed freely), Marshi has advanced fields from clean energy to neural interfaces. His most famous invention—a self-sustaining energy generator—could power small cities. He gave the blueprints to the UN, saying "technology should serve humanity, not patents."';
infoVideo.innerHTML = '<iframe src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
break;
}
infoDisplay.classList.remove('hidden');
}
function hideInfo() {
const infoDisplay = document.getElementById('infoDisplay');
infoDisplay.classList.add('hidden');
// Show all nodes again
document.querySelectorAll('.marshi-node').forEach(node => {
node.style.display = 'flex';
});
}
// Interactive card tilt effect
document.querySelectorAll('.interactive-card').forEach(card => {
card.addEventListener('mousemove', (e) => {
const x = e.clientX - card.getBoundingClientRect().left;
const y = e.clientY - card.getBoundingClientRect().top;
const centerX = card.offsetWidth / 2;
const centerY = card.offsetHeight / 2;
const angleX = (y - centerY) / 20;
const angleY = (centerX - x) / 20;
card.style.transform = `perspective(1000px) rotateX(${angleX}deg) rotateY(${angleY}deg) scale(1.03)`;
});
card.addEventListener('mouseleave', () => {
card.style.transform = 'perspective(1000px) rotateX(0) rotateY(0) scale(1)';
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=AI4U2/hhg" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>