File size: 65,942 Bytes
0cb0286 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 |
<!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> |