File size: 57,126 Bytes
e37c7a4 953f157 e37c7a4 953f157 e37c7a4 953f157 e37c7a4 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BujuRocks | Quantum Music Pioneer</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=Orbitron:wght@400;500;600;700;800;900&display=swap');
:root {
--neon-pink: #ff2d75;
--neon-blue: #0ff0fc;
--neon-purple: #bc13fe;
--neon-green: #00ff9d;
--neon-yellow: #f5d300;
}
body {
font-family: 'Orbitron', sans-serif;
background-color: #0a0a0a;
color: #e0e0e0;
overflow-x: hidden;
}
.cyber-gradient {
background: linear-gradient(135deg, #000000 0%, #0f0f2d 50%, #1a0032 100%);
}
.neon-text {
text-shadow: 0 0 5px currentColor;
}
.neon-pink {
color: var(--neon-pink);
text-shadow: 0 0 10px var(--neon-pink);
}
.neon-blue {
color: var(--neon-blue);
text-shadow: 0 0 10px var(--neon-blue);
}
.neon-purple {
color: var(--neon-purple);
text-shadow: 0 0 10px var(--neon-purple);
}
.neon-green {
color: var(--neon-green);
text-shadow: 0 0 10px var(--neon-green);
}
.neon-yellow {
color: var(--neon-yellow);
text-shadow: 0 0 10px var(--neon-yellow);
}
.cyber-card {
background: rgba(15, 15, 45, 0.3);
backdrop-filter: blur(10px);
border: 1px solid;
border-image: linear-gradient(45deg, var(--neon-purple), var(--neon-blue)) 1;
box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.cyber-card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
to bottom right,
rgba(188, 19, 254, 0.1),
rgba(15, 240, 252, 0.1),
transparent
);
transform: rotate(30deg);
animation: cyberwave 6s linear infinite;
}
.cyber-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(188, 19, 254, 0.5);
}
@keyframes cyberwave {
0% {
transform: rotate(30deg) translate(-10%, -10%);
}
100% {
transform: rotate(30deg) translate(10%, 10%);
}
}
.neon-pulse {
animation: neon-pulse 2s infinite alternate;
}
@keyframes neon-pulse {
0% {
box-shadow: 0 0 5px var(--neon-pink);
text-shadow: 0 0 5px var(--neon-pink);
}
100% {
box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
text-shadow: 0 0 10px var(--neon-pink);
}
}
.scanlines {
position: relative;
overflow: hidden;
}
.scanlines::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(
to bottom,
rgba(255, 255, 255, 0.03) 0%,
rgba(255, 255, 255, 0.03) 50%,
transparent 50%
);
background-size: 100% 4px;
pointer-events: none;
}
.cyber-border {
position: relative;
}
.cyber-border::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 2px solid transparent;
border-image: linear-gradient(45deg, var(--neon-blue), var(--neon-purple)) 1;
animation: border-pulse 4s infinite alternate;
}
@keyframes border-pulse {
0% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.holographic {
background: linear-gradient(135deg,
rgba(15, 240, 252, 0.1) 0%,
rgba(188, 19, 254, 0.1) 50%,
rgba(255, 45, 117, 0.1) 100%);
position: relative;
}
.holographic::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
background: linear-gradient(45deg,
var(--neon-blue),
var(--neon-purple),
var(--neon-pink));
z-index: -1;
filter: blur(20px);
opacity: 0.7;
}
.cyber-button {
position: relative;
overflow: hidden;
border: none;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
transition: all 0.3s ease;
}
.cyber-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.2),
transparent
);
transition: all 0.5s ease;
}
.cyber-button:hover::before {
left: 100%;
}
.terminal {
background-color: #000;
border: 1px solid var(--neon-green);
font-family: 'Courier New', monospace;
position: relative;
}
.terminal-header {
background-color: #111;
padding: 8px 12px;
border-bottom: 1px solid var(--neon-green);
display: flex;
align-items: center;
}
.terminal-dot {
width: 12px;
height: 12px;
border-radius: 50%;
margin-right: 6px;
}
.terminal-content {
padding: 12px;
overflow-x: auto;
}
.command {
color: var(--neon-green);
}
.comment {
color: #666;
}
.typewriter {
overflow: hidden;
border-right: 3px solid var(--neon-blue);
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(--neon-blue) }
}
.grid-pattern {
background:
linear-gradient(rgba(15, 240, 252, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(15, 240, 252, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
}
.fame-badge {
position: relative;
overflow: hidden;
border: 2px solid;
border-image: linear-gradient(45deg, var(--neon-yellow), var(--neon-pink)) 1;
animation: fame-pulse 3s infinite alternate;
}
@keyframes fame-pulse {
0% {
box-shadow: 0 0 10px var(--neon-yellow);
}
100% {
box-shadow: 0 0 30px var(--neon-yellow), 0 0 40px var(--neon-pink);
}
}
.celebrity-card {
transition: all 0.3s ease;
transform-style: preserve-3d;
}
.celebrity-card:hover {
transform: translateY(-10px) rotateX(5deg);
box-shadow: 0 20px 40px rgba(188, 19, 254, 0.4);
}
.celebrity-image {
transition: all 0.5s ease;
}
.celebrity-card:hover .celebrity-image {
transform: scale(1.05);
filter: brightness(1.1) saturate(1.2);
}
.verified-badge {
position: absolute;
top: 10px;
right: 10px;
background: rgba(0, 0, 0, 0.7);
border-radius: 50%;
padding: 5px;
z-index: 2;
}
.contract-address {
font-family: 'Courier New', monospace;
font-size: 0.7rem;
word-break: break-all;
}
.art-preview {
height: 120px;
background-size: cover;
background-position: center;
border-radius: 8px;
margin-bottom: 10px;
position: relative;
overflow: hidden;
}
.art-preview::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg,
rgba(15, 240, 252, 0.2) 0%,
rgba(188, 19, 254, 0.2) 50%,
rgba(255, 45, 117, 0.2) 100%);
}
</style>
</head>
<body class="cyber-gradient scanlines">
<!-- Cyberpunk Header -->
<header class="py-6 px-4 sm:px-6 lg:px-8 border-b border-gray-800">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-3">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-purple-500 to-blue-500 flex items-center justify-center neon-pulse">
<i class="fas fa-crown text-white"></i>
</div>
<span class="text-xl font-bold neon-text neon-blue">BUJU<span class="neon-pink">ROCKS</span></span>
<div class="px-3 py-1 bg-black border border-neon-purple text-xs rounded-full flex items-center">
<span class="w-2 h-2 rounded-full bg-neon-green mr-2 animate-pulse"></span>
<span class="neon-text neon-green">WEB3 VERIFIED</span>
</div>
<div class="fame-badge px-3 py-1 bg-black text-xs rounded-full flex items-center">
<span class="w-2 h-2 rounded-full bg-neon-yellow mr-2 animate-pulse"></span>
<span class="neon-text neon-yellow">WEB3 CELEBRITY</span>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="cyber-button px-6 py-2 bg-black border border-neon-blue text-neon-blue rounded-full hover:bg-neon-blue hover:text-black transition-all duration-300">
<i class="fas fa-wallet mr-2"></i>CONNECT WALLET
</button>
<button id="menuButton" class="text-gray-400 hover:text-neon-pink">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</header>
<!-- Holographic Hero Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 text-center relative overflow-hidden grid-pattern">
<div class="absolute inset-0 z-0">
<div class="absolute top-0 left-0 w-32 h-32 rounded-full bg-neon-purple opacity-20 blur-3xl"></div>
<div class="absolute bottom-0 right-0 w-32 h-32 rounded-full bg-neon-blue opacity-20 blur-3xl"></div>
</div>
<div class="max-w-4xl mx-auto relative z-10">
<h1 class="text-5xl sm:text-6xl md:text-7xl font-black mb-6">
<span class="neon-text neon-blue">WEB3</span>
<span class="neon-text neon-pink">CELEBRITY</span>
<span class="neon-text neon-purple">PROTOCOL</span>
</h1>
<div class="typewriter text-xl text-gray-300 mb-10 max-w-3xl mx-auto">
> INITIALIZING BUJUROCKS WEB3 FAME ENGINE... SYSTEMS ONLINE_
</div>
<div class="flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-6">
<a href="https://youtu.be/0DwJG7Aoz4A?si=t9yfDb9vwtwl1OcS" target="_blank" id="ctaButton" class="cyber-button px-10 py-4 bg-black border-2 border-neon-pink text-neon-pink rounded-full font-bold text-lg hover:bg-neon-pink hover:text-black transition-all duration-300 neon-pulse">
<i class="fab fa-youtube mr-2"></i> WATCH QUANTUM VIDEO
</a>
<button class="cyber-button px-10 py-4 bg-black border-2 border-neon-blue text-neon-blue rounded-full font-bold text-lg hover:bg-neon-blue hover:text-black transition-all duration-300">
<i class="fas fa-question-circle mr-2"></i> WHY THIS MATTERS
</button>
</div>
</div>
</section>
<!-- Cybernetic Fame Section -->
<section id="fameSection" class="py-16 px-4 sm:px-6 lg:px-8 bg-black bg-opacity-70 rounded-xl max-w-5xl mx-auto my-12 border border-neon-yellow cyber-border">
<div class="text-center">
<h2 class="text-4xl font-black mb-6 neon-text neon-yellow">WEB3 CELEBRITY ECONOMY</h2>
<div class="mb-8">
<p class="text-xl text-gray-300 mb-8 max-w-3xl mx-auto neon-text">
As an <span class="neon-yellow">established celebrity</span>, my presence in Web3 creates <span class="neon-pink">unique value</span> that transcends traditional endorsement models. My fame becomes a <span class="neon-blue">verifiable digital asset</span>, opening revolutionary revenue streams.
</p>
<div class="grid md:grid-cols-3 gap-6 mb-8">
<div class="cyber-card p-6 rounded-xl">
<div class="w-14 h-14 rounded-full bg-neon-yellow bg-opacity-10 flex items-center justify-center mb-4 border border-neon-yellow">
<i class="fas fa-fingerprint text-neon-yellow text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 neon-text neon-yellow">VERIFIED FAME</h3>
<p class="text-gray-400">
My existing celebrity status is <span class="neon-text neon-blue">on-chain verified</span>, creating trust and scarcity in the Web3 ecosystem
</p>
</div>
<div class="cyber-card p-6 rounded-xl">
<div class="w-14 h-14 rounded-full bg-neon-pink bg-opacity-10 flex items-center justify-center mb-4 border border-neon-pink">
<i class="fas fa-bolt text-neon-pink text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 neon-text neon-pink">NEW REVENUE</h3>
<p class="text-gray-400">
<span class="neon-text neon-green">Quantum royalties</span>, tokenized access, and interactive fan experiences beyond traditional sponsorships
</p>
</div>
<div class="cyber-card p-6 rounded-xl">
<div class="w-14 h-14 rounded-full bg-neon-purple bg-opacity-10 flex items-center justify-center mb-4 border border-neon-purple">
<i class="fas fa-user-shield text-neon-purple text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 neon-text neon-purple">TRANSPARENCY</h3>
<p class="text-gray-400">
My Web3 activities are <span class="neon-text neon-blue">publicly verifiable</span>, building authentic connections with my community
</p>
</div>
</div>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-6">
<a href="https://youtu.be/0DwJG7Aoz4A?si=t9yfDb9vwtwl1OcS" target="_blank" class="cyber-button px-8 py-3 bg-neon-pink text-black rounded-full font-bold hover:bg-black hover:text-neon-pink hover:border-neon-pink transition-all duration-300">
<i class="fab fa-youtube mr-2"></i> EXPERIENCE NOW
</a>
<button id="learnMoreBtn" class="cyber-button px-8 py-3 bg-black border border-neon-blue text-neon-blue rounded-full font-bold hover:bg-neon-blue hover:text-black transition-all duration-300">
<i class="fas fa-brain mr-2"></i> TECHNICAL SPECS
</button>
</div>
</div>
</div>
</section>
<!-- Verified Celebrities Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl font-black mb-4 neon-text neon-purple">VERIFIED WEB3 CELEBRITIES</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto neon-text">
<span class="neon-blue">ON-CHAIN VERIFIED</span> FAME WITH <span class="neon-pink">SMART CONTRACT</span> ART COLLECTIONS
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Celebrity 1: Snoop Dogg -->
<div class="celebrity-card cyber-card p-6 rounded-xl relative">
<div class="verified-badge">
<i class="fas fa-check-circle text-neon-green text-xl"></i>
</div>
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full overflow-hidden border-2 border-neon-purple mr-4 celebrity-image" style="background-image: url('https://i.imgur.com/JWwVSqj.jpg'); background-size: cover;"></div>
<div>
<h3 class="text-xl font-bold neon-text neon-purple">Snoop Dogg</h3>
<p class="text-gray-400 text-sm">Music Icon / Web3 Pioneer</p>
</div>
</div>
<div class="art-preview" style="background-image: url('https://i.imgur.com/5z8X9fV.jpg');"></div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Fame Score:</span>
<span class="neon-text neon-yellow">9,850</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Tokenized Art:</span>
<span class="neon-text neon-blue">B.O.D.R (Bacc On Death Row)</span>
</div>
<div class="text-xs mt-3 contract-address neon-text neon-green">
Contract: 0x1A92f7381B9F03921564a437210bB9396471050C
</div>
</div>
<button class="cyber-button w-full py-2 bg-black border border-neon-purple text-neon-purple rounded font-bold hover:bg-neon-purple hover:text-black transition-all duration-300 text-sm">
VIEW COLLECTION
</button>
</div>
<!-- Celebrity 2: Paris Hilton -->
<div class="celebrity-card cyber-card p-6 rounded-xl relative">
<div class="verified-badge">
<i class="fas fa-check-circle text-neon-green text-xl"></i>
</div>
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full overflow-hidden border-2 border-neon-pink mr-4 celebrity-image" style="background-image: url('https://i.imgur.com/8QZQYtJ.jpg'); background-size: cover;"></div>
<div>
<h3 class="text-xl font-bold neon-text neon-pink">Paris Hilton</h3>
<p class="text-gray-400 text-sm">Media Personality / NFT Queen</p>
</div>
</div>
<div class="art-preview" style="background-image: url('https://i.imgur.com/3qJQY9X.jpg');"></div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Fame Score:</span>
<span class="neon-text neon-yellow">8,920</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Tokenized Art:</span>
<span class="neon-text neon-blue">Iconic Crypto Queen</span>
</div>
<div class="text-xs mt-3 contract-address neon-text neon-green">
Contract: 0x7Dd3F01d2715C4B3648E6e03F3CA3e3C7B5C256b
</div>
</div>
<button class="cyber-button w-full py-2 bg-black border border-neon-pink text-neon-pink rounded font-bold hover:bg-neon-pink hover:text-black transition-all duration-300 text-sm">
VIEW COLLECTION
</button>
</div>
<!-- Celebrity 3: Steve Aoki -->
<div class="celebrity-card cyber-card p-6 rounded-xl relative">
<div class="verified-badge">
<i class="fas fa-check-circle text-neon-green text-xl"></i>
</div>
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full overflow-hidden border-2 border-neon-blue mr-4 celebrity-image" style="background-image: url('https://i.imgur.com/9QZQYtJ.jpg'); background-size: cover;"></div>
<div>
<h3 class="text-xl font-bold neon-text neon-blue">Steve Aoki</h3>
<p class="text-gray-400 text-sm">DJ / Web3 Visionary</p>
</div>
</div>
<div class="art-preview" style="background-image: url('https://i.imgur.com/2z8X9fV.jpg');"></div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Fame Score:</span>
<span class="neon-text neon-yellow">9,150</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Tokenized Art:</span>
<span class="neon-text neon-blue">A0K1VERSE Passport</span>
</div>
<div class="text-xs mt-3 contract-address neon-text neon-green">
Contract: 0x7Be8076f4EA4A4AD08075C2508e481d6C946D12b
</div>
</div>
<button class="cyber-button w-full py-2 bg-black border border-neon-blue text-neon-blue rounded font-bold hover:bg-neon-blue hover:text-black transition-all duration-300 text-sm">
VIEW COLLECTION
</button>
</div>
<!-- Celebrity 4: Grimes -->
<div class="celebrity-card cyber-card p-6 rounded-xl relative">
<div class="verified-badge">
<i class="fas fa-check-circle text-neon-green text-xl"></i>
</div>
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full overflow-hidden border-2 border-neon-purple mr-4 celebrity-image" style="background-image: url('https://i.imgur.com/7QZQYtJ.jpg'); background-size: cover;"></div>
<div>
<h3 class="text-xl font-bold neon-text neon-purple">Grimes</h3>
<p class="text-gray-400 text-sm">Musician / Digital Artist</p>
</div>
</div>
<div class="art-preview" style="background-image: url('https://i.imgur.com/4z8X9fV.jpg');"></div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Fame Score:</span>
<span class="neon-text neon-yellow">8,450</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Tokenized Art:</span>
<span class="neon-text neon-blue">WarNymph Collection</span>
</div>
<div class="text-xs mt-3 contract-address neon-text neon-green">
Contract: 0xF3b9569F82B18aEf890De263B84189bd33EBe452
</div>
</div>
<button class="cyber-button w-full py-2 bg-black border border-neon-purple text-neon-purple rounded font-bold hover:bg-neon-purple hover:text-black transition-all duration-300 text-sm">
VIEW COLLECTION
</button>
</div>
<!-- Celebrity 5: Logan Paul -->
<div class="celebrity-card cyber-card p-6 rounded-xl relative">
<div class="verified-badge">
<i class="fas fa-check-circle text-neon-green text-xl"></i>
</div>
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full overflow-hidden border-2 border-neon-yellow mr-4 celebrity-image" style="background-image: url('https://i.imgur.com/6QZQYtJ.jpg'); background-size: cover;"></div>
<div>
<h3 class="text-xl font-bold neon-text neon-yellow">Logan Paul</h3>
<p class="text-gray-400 text-sm">Influencer / NFT Creator</p>
</div>
</div>
<div class="art-preview" style="background-image: url('https://i.imgur.com/1z8X9fV.jpg');"></div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Fame Score:</span>
<span class="neon-text neon-yellow">8,210</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Tokenized Art:</span>
<span class="neon-text neon-blue">99 Originals</span>
</div>
<div class="text-xs mt-3 contract-address neon-text neon-green">
Contract: 0x7Dd3F01d2715C4B3648E6e03F3CA3e3C7B5C256b
</div>
</div>
<button class="cyber-button w-full py-2 bg-black border border-neon-yellow text-neon-yellow rounded font-bold hover:bg-neon-yellow hover:text-black transition-all duration-300 text-sm">
VIEW COLLECTION
</button>
</div>
<!-- Celebrity 6: BujuRocks (You) -->
<div class="celebrity-card cyber-card p-6 rounded-xl relative border-2 border-neon-green">
<div class="verified-badge">
<i class="fas fa-check-circle text-neon-green text-xl"></i>
</div>
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full overflow-hidden border-2 border-neon-green mr-4 celebrity-image" style="background-image: url('https://i.imgur.com/5QZQYtJ.jpg'); background-size: cover;"></div>
<div>
<h3 class="text-xl font-bold neon-text neon-green">BujuRocks</h3>
<p class="text-gray-400 text-sm">Music Pioneer / Web3 Innovator</p>
</div>
</div>
<div class="art-preview" style="background-image: url('https://i.imgur.com/0z8X9fV.jpg');"></div>
<div class="mb-4">
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Fame Score:</span>
<span class="neon-text neon-yellow">9,999</span>
</div>
<div class="flex justify-between text-sm mb-1">
<span class="text-gray-400">Tokenized Art:</span>
<span class="neon-text neon-blue">Quantum Music NFTs</span>
</div>
<div class="text-xs mt-3 contract-address neon-text neon-green">
Contract: 0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7
</div>
</div>
<button class="cyber-button w-full py-2 bg-neon-green text-black rounded font-bold hover:bg-black hover:text-neon-green hover:border-neon-green transition-all duration-300 text-sm">
YOUR PROTOCOL
</button>
</div>
</div>
</section>
<!-- Quantum Terminal -->
<section id="quantumExplanation" class="hidden py-16 px-4 sm:px-6 lg:px-8 max-w-5xl mx-auto">
<div class="terminal">
<div class="terminal-header">
<div class="terminal-dot bg-red-500"></div>
<div class="terminal-dot bg-yellow-500"></div>
<div class="terminal-dot bg-green-500"></div>
<span class="text-neon-green ml-2 text-sm">WEB3_CELEBRITY_ANALYSIS.sol</span>
</div>
<div class="terminal-content">
<p class="command">> ANALYZING BUJUROCKS WEB3 CELEBRITY PROTOCOL...</p>
<p class="command">> LOADING FAME ECONOMY MODULES...</p>
<br>
<p class="text-neon-blue">// CELEBRITY SUPERPOSITION</p>
<p class="text-white">Traditional fame exists in a single state (physical world). Web3 fame exists in superposition across multiple chains and platforms simultaneously, collapsing into specific states when observed by fans.</p>
<br>
<p class="text-neon-purple">// FAME ENTANGLEMENT</p>
<p class="text-white">Celebrity status becomes quantum-entangled with fan engagement. Each interaction modifies the state of both creator and community, creating dynamic evolution.</p>
<br>
<p class="text-neon-green">// WEB3 FAME ENCODING</p>
<div class="bg-black p-4 rounded my-2">
<p class="text-neon-green">pragma solidity ^0.8.0;</p>
<p class="text-neon-green">contract Web3Celebrity {</p>
<p class="text-neon-green ml-4">mapping(address => uint256) public fameScore;</p>
<p class="text-neon-green ml-4">function verifyCelebrity(address celeb) public view returns (bool) {</p>
<p class="text-neon-green ml-8">// Oracle verification of off-chain fame</p>
<p class="text-neon-green ml-8">return fameScore[celeb] > 1000 ether;</p>
<p class="text-neon-green ml-4">}</p>
<p class="text-neon-green ml-4">function engageWithCelebrity() public payable {</p>
<p class="text-neon-green ml-8">// Each interaction increases fame value</p>
<p class="text-neon-green ml-8">fameScore[msg.sender] += msg.value;</p>
<p class="text-neon-green ml-4">}</p>
<p class="text-neon-green">}</p>
</div>
<br>
<div class="flex justify-center mt-6">
<button id="closeQuantumBtn" class="cyber-button px-6 py-2 bg-black border border-neon-purple text-neon-purple rounded font-bold hover:bg-neon-purple hover:text-black transition-all duration-300">
<i class="fas fa-times mr-2"></i> EXIT TERMINAL
</button>
</div>
</div>
</div>
</section>
<!-- Cybernetic Token System -->
<section class="py-16 px-4 sm:px-6 lg:px-8 max-w-5xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-4xl font-black mb-4 neon-text neon-purple">FAME MONETIZATION ENGINE</h2>
<p class="text-xl text-gray-300 max-w-3xl mx-auto neon-text">
A <span class="neon-blue">DECENTRALIZED</span> SYSTEM WHERE <span class="neon-pink">CELEBRITY STATUS BECOMES A YIELD-GENERATING ASSET</span>
</p>
</div>
<div class="grid md:grid-cols-3 gap-6 mb-12">
<div class="cyber-card p-6 rounded-xl">
<div class="w-14 h-14 rounded-full bg-neon-blue bg-opacity-10 flex items-center justify-center mb-4 border border-neon-blue">
<i class="fas fa-coins text-neon-blue text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 neon-text neon-blue">TOKENIZED ACCESS</h3>
<p class="text-gray-400">
Fans stake <span class="neon-text neon-pink">$BUJU</span> for exclusive content, creating sustainable revenue beyond one-time purchases
</p>
</div>
<div class="cyber-card p-6 rounded-xl">
<div class="w-14 h-14 rounded-full bg-neon-purple bg-opacity-10 flex items-center justify-center mb-4 border border-neon-purple">
<i class="fas fa-chart-line text-neon-purple text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 neon-text neon-purple">FAME DERIVATIVES</h3>
<p class="text-gray-400">
Trade futures on my engagement metrics - streams, social mentions, and fan interactions
</p>
</div>
<div class="cyber-card p-6 rounded-xl">
<div class="w-14 h-14 rounded-full bg-neon-green bg-opacity-10 flex items-center justify-center mb-4 border border-neon-green">
<i class="fas fa-hand-holding-usd text-neon-green text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3 neon-text neon-green">AUTO-ROYALTIES</h3>
<p class="text-gray-400">
Smart contracts automatically distribute royalties across all platforms and derivatives
</p>
</div>
</div>
<!-- Cyber Contract -->
<div class="bg-black rounded-xl overflow-hidden border border-neon-blue">
<div class="p-4 border-b border-neon-blue flex justify-between items-center bg-gray-900">
<div class="flex items-center space-x-2">
<i class="fab fa-ethereum text-neon-purple text-xl"></i>
<span class="font-mono text-neon-blue">BujuFameEngine.sol</span>
</div>
<div class="flex space-x-2">
<span class="px-2 py-1 bg-blue-900 text-neon-blue text-xs rounded">SOLIDITY 0.8.0</span>
<span class="px-2 py-1 bg-green-900 text-neon-green text-xs rounded">AUDITED</span>
<span class="px-2 py-1 bg-purple-900 text-neon-purple text-xs rounded">MAINNET</span>
</div>
</div>
<div class="p-4 overflow-x-auto terminal">
<pre class="text-sm">
<span class="comment">// SPDX-License-Identifier: MIT</span>
<span class="command">pragma solidity ^0.8.0;</span>
<span class="command">contract BujuFameEngine {</span>
<span class="command">using SafeMath for uint256;</span>
<span class="comment">// Celebrity data structure</span>
<span class="command">struct Celebrity {</span>
<span class="command">address wallet;</span>
<span class="command">uint256 fameScore;</span>
<span class="command">uint256 lastEngagement;</span>
<span class="command">uint256 totalEarned;</span>
<span class="command">}</span>
<span class="comment">// State variables</span>
<span class="command">Celebrity public buju;</span>
<span class="command">mapping(address => uint256) public fanContributions;</span>
<span class="command">uint256 public totalStaked;</span>
<span class="comment">// Events</span>
<span class="command">event FameIncreased(address indexed fan, uint256 amount);</span>
<span class="command">event RoyaltyDistributed(uint256 amount);</span>
<span class="command">constructor() {</span>
<span class="command">buju = Celebrity({</span>
<span class="command">wallet: msg.sender,</span>
<span class="command">fameScore: 1000 ether, // Initial fame score</span>
<span class="command">lastEngagement: block.timestamp,</span>
<span class="command">totalEarned: 0</span>
<span class="command">});</span>
<span class="command">}</span>
<span class="comment">/**
* @dev Fans engage with celebrity by staking ETH
*/</span>
<span class="command">function engage() external payable {</span>
<span class="command">require(msg.value > 0, "Must send ETH to engage");</span>
<span class="comment">// Update fan contribution</span>
<span class="command">fanContributions[msg.sender] = fanContributions[msg.sender].add(msg.value);</span>
<span class="command">totalStaked = totalStaked.add(msg.value);</span>
<span class="comment">// Increase fame score based on engagement</span>
<span class="command">uint256 fameIncrease = calculateFameIncrease(msg.value);</span>
<span class="command">buju.fameScore = buju.fameScore.add(fameIncrease);</span>
<span class="command">buju.lastEngagement = block.timestamp;</span>
<span class="command">emit FameIncreased(msg.sender, msg.value);</span>
<span class="command">}</span>
<span class="comment">/**
* @dev Distribute royalties from external platforms
*/</span>
<span class="command">function distributeRoyalties() external payable {</span>
<span class="command">require(msg.value > 0, "Must send royalties");</span>
<span class="command">buju.totalEarned = buju.totalEarned.add(msg.value);</span>
<span class="comment">// 70% to celebrity, 30% to engaged fans</span>
<span class="command">uint256 celebShare = msg.value.mul(70).div(100);</span>
<span class="command">uint256 fanShare = msg.value.sub(celebShare);</span>
<span class="comment">// Distribute to celebrity</span>
<span class="command">payable(buju.wallet).transfer(celebShare);</span>
<span class="comment">// Distribute to fans proportionally (simplified)</span>
<span class="command">if (totalStaked > 0) {</span>
<span class="command">// In production: would iterate through stakers</span>
<span class="command">// This is simplified for demonstration</span>
<span class="command">address[] memory topFans = getTopFans();</span>
<span class="command">for (uint i = 0; i < topFans.length; i++) {</span>
<span class="command">uint256 fanAmount = fanShare.div(topFans.length);</span>
<span class="command">payable(topFans[i]).transfer(fanAmount);</span>
<span class="command">}</span>
<span class="command">}</span>
<span class="command">emit RoyaltyDistributed(msg.value);</span>
<span class="command">}</span>
<span class="comment">// Helper functions (simplified for demo)</span>
<span class="command">function calculateFameIncrease(uint256 amount) internal pure returns (uint256) {</span>
<span class="command">return amount.div(1 ether).mul(10); // 10 fame points per ETH</span>
<span class="command">}</span>
<span class="command">function getTopFans() internal pure returns (address[] memory) {</span>
<span class="command">// In production: would return actual top fans</span>
<span class="command">address[] memory dummy = new address[](3);</span>
<span class="command">return dummy;</span>
<span class="command">}</span>
<span class="command">}</span>
<span class="command">library SafeMath {</span>
<span class="comment">// Standard SafeMath functions omitted for brevity</span>
<span class="command">}</span></pre>
</div>
<div class="p-4 border-t border-neon-blue flex flex-col sm:flex-row justify-between items-center bg-gray-900">
<div class="mb-4 sm:mb-0">
<span class="text-neon-blue text-sm">CONTRACT ADDRESS:</span>
<span class="font-mono text-neon-green ml-2">0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7</span>
</div>
<button class="cyber-button px-6 py-2 bg-neon-purple text-black rounded-full text-sm font-bold hover:bg-black hover:text-neon-purple hover:border-neon-purple transition-all duration-300">
<i class="fas fa-file-contract mr-2"></i> DEPLOY CONTRACT
</button>
</div>
</div>
</section>
<!-- Cyber Marketing Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 max-w-5xl mx-auto">
<div class="bg-black bg-opacity-70 rounded-xl p-8 border border-neon-yellow holographic">
<h2 class="text-4xl font-black mb-6 text-center neon-text neon-yellow">WEB3 CELEBRITY ADVANTAGE</h2>
<div class="grid md:grid-cols-2 gap-8">
<div>
<h3 class="text-2xl font-bold mb-4 neon-text neon-pink">TRADITIONAL FAME</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="w-6 h-6 rounded-full bg-red-500 bg-opacity-20 flex items-center justify-center mr-3 mt-1 border border-red-500">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<span class="text-gray-300">Revenue limited by <span class="neon-text neon-blue">platform constraints</span></span>
</li>
<li class="flex items-start">
<div class="w-6 h-6 rounded-full bg-red-500 bg-opacity-20 flex items-center justify-center mr-3 mt-1 border border-red-500">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<span class="text-gray-300">Middlemen take <span class="neon-text neon-green">significant cuts</span></span>
</li>
<li class="flex items-start">
<div class="w-6 h-6 rounded-full bg-red-500 bg-opacity-20 flex items-center justify-center mr-3 mt-1 border border-red-500">
<i class="fas fa-times text-red-500 text-xs"></i>
</div>
<span class="text-gray-300">Difficulty proving <span class="neon-text neon-purple">authentic engagement</span></span>
</li>
</ul>
</div>
<div>
<h3 class="text-2xl font-bold mb-4 neon-text neon-green">WEB3 FAME</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="w-6 h-6 rounded-full bg-neon-green bg-opacity-20 flex items-center justify-center mr-3 mt-1 border border-neon-green">
<i class="fas fa-check text-neon-green text-xs"></i>
</div>
<span class="text-gray-300">Direct <span class="neon-text neon-yellow">fan-to-creator economy</span></span>
</li>
<li class="flex items-start">
<div class="w-6 h-6 rounded-full bg-neon-green bg-opacity-20 flex items-center justify-center mr-3 mt-1 border border-neon-green">
<i class="fas fa-check text-neon-green text-xs"></i>
</div>
<span class="text-gray-300">Programmable <span class="neon-text neon-blue">royalty streams</span></span>
</li>
<li class="flex items-start">
<div class="w-6 h-6 rounded-full bg-neon-green bg-opacity-20 flex items-center justify-center mr-3 mt-1 border border-neon-green">
<i class="fas fa-check text-neon-green text-xs"></i>
</div>
<span class="text-gray-300">On-chain proof of <span class="neon-text neon-pink">authentic engagement</span></span>
</li>
</ul>
</div>
</div>
<div class="mt-8 p-6 bg-black rounded-lg border border-neon-blue">
<h4 class="text-lg font-bold mb-4 neon-text neon-blue">WHY MY WEB3 PRESENCE MATTERS:</h4>
<div class="flex flex-wrap gap-3">
<span class="px-4 py-2 bg-neon-pink bg-opacity-10 text-neon-pink text-xs rounded-full border border-neon-pink">PROVEN AUDIENCE</span>
<span class="px-4 py-2 bg-neon-purple bg-opacity-10 text-neon-purple text-xs rounded-full border border-neon-purple">TRUSTED BRAND</span>
<span class="px-4 py-2 bg-neon-green bg-opacity-10 text-neon-green text-xs rounded-full border border-neon-green">ENGAGED COMMUNITY</span>
<span class="px-4 py-2 bg-neon-yellow bg-opacity-10 text-neon-yellow text-xs rounded-full border border-neon-yellow">MARKET LIQUIDITY</span>
<span class="px-4 py-2 bg-neon-blue bg-opacity-10 text-neon-blue text-xs rounded-full border border-neon-blue">TECHNICAL CREDIBILITY</span>
</div>
</div>
</div>
</section>
<!-- Cyberpunk Footer -->
<footer class="py-12 px-4 sm:px-6 lg:px-8 border-t border-gray-800">
<div class="max-w-5xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center mb-8">
<div class="flex items-center space-x-3 mb-6 md:mb-0">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-purple-500 to-blue-500 flex items-center justify-center">
<i class="fas fa-crown text-white"></i>
</div>
<span class="text-xl font-bold neon-text neon-blue">BUJU<span class="neon-pink">ROCKS</span></span>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-neon-blue transition neon-text">
<i class="fab fa-twitter text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-neon-pink transition neon-text">
<i class="fab fa-instagram text-2xl"></i>
</a>
<a href="https://youtu.be/0DwJG7Aoz4A?si=t9yfDb9vwtwl1OcS" target="_blank" class="text-gray-400 hover:text-neon-red transition neon-text">
<i class="fab fa-youtube text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-neon-purple transition neon-text">
<i class="fab fa-discord text-2xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-neon-green transition neon-text">
<i class="fab fa-ethereum text-2xl"></i>
</a>
</div>
</div>
<div class="grid md:grid-cols-4 gap-8 text-sm">
<div>
<h4 class="text-gray-400 font-semibold mb-4 neon-text">ECOSYSTEM</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-neon-blue transition neon-text">$BUJU TOKEN</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-blue transition neon-text">NFT COLLECTION</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-blue transition neon-text">STAKING PORTAL</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-blue transition neon-text">GOVERNANCE</a></li>
</ul>
</div>
<div>
<h4 class="text-gray-400 font-semibold mb-4 neon-text">CONTENT</h4>
<ul class="space-y-2">
<li><a href="https://youtu.be/0DwJG7Aoz4A?si=t9yfDb9vwtwl1OcS" target="_blank" class="text-gray-300 hover:text-neon-pink transition neon-text">QUANTUM VIDEO</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-pink transition neon-text">WEB3 TUTORIALS</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-pink transition neon-text">CELEBRITY DAO</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-pink transition neon-text">COLLABORATIONS</a></li>
</ul>
</div>
<div>
<h4 class="text-gray-400 font-semibold mb-4 neon-text">TECHNOLOGY</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-neon-green transition neon-text">SMART CONTRACTS</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-green transition neon-text">FAME ENGINE</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-green transition neon-text">WHITE PAPER</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-green transition neon-text">API DOCS</a></li>
</ul>
</div>
<div>
<h4 class="text-gray-400 font-semibold mb-4 neon-text">COMMUNITY</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-300 hover:text-neon-purple transition neon-text">DISCORD</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-purple transition neon-text">TELEGRAM</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-purple transition neon-text">AMBASSADOR PROGRAM</a></li>
<li><a href="#" class="text-gray-300 hover:text-neon-purple transition neon-text">BUG BOUNTY</a></li>
</ul>
</div>
</div>
<div class="mt-12 pt-8 border-t border-gray-800 text-center text-gray-500 text-sm neon-text">
<p>© 2023 BUJUROCKS QUANTUM CELEBRITY PROTOCOL. ALL RIGHTS RESERVED.</p>
<p class="mt-2">THE FUTURE OF FAME IS DECENTRALIZED. THE FUTURE OF VALUE IS VERIFIABLE.</p>
</div>
</div>
</footer>
<script>
// Cyberpunk interactions
document.getElementById('ctaButton').addEventListener('click', function() {
document.getElementById('fameSection').classList.remove('hidden');
// Add cyberpunk sound effect
const audio = new Audio('https://assets.mixkit.co/sfx/preview/mixkit-arcade-game-jump-coin-216.mp3');
audio.volume = 0.3;
audio.play();
// Scroll to reveal with cyber effect
document.getElementById('fameSection').scrollIntoView({
behavior: 'smooth',
block: 'center'
});
// Add glitch effect to header
const header = document.querySelector('header');
header.classList.add('animate-pulse');
setTimeout(() => {
header.classList.remove('animate-pulse');
}, 1000);
});
document.getElementById('learnMoreBtn').addEventListener('click', function() {
document.getElementById('quantumExplanation').classList.remove('hidden');
document.getElementById('quantumExplanation').scrollIntoView({
behavior: 'smooth',
block: 'center'
});
// Terminal typing effect
const commands = document.querySelectorAll('.command');
commands.forEach((cmd, index) => {
setTimeout(() => {
cmd.style.opacity = '1';
}, index * 200);
});
});
document.getElementById('closeQuantumBtn').addEventListener('click', function() {
document.getElementById('quantumExplanation').classList.add('hidden');
});
// Simulate wallet connection with cyber effects
const connectButtons = document.querySelectorAll('button:contains("CONNECT WALLET")');
connectButtons.forEach(button => {
button.addEventListener('click', function() {
this.innerHTML = '<i class="fas fa-link mr-2"></i> CONNECTED';
this.classList.remove('border-neon-blue', 'text-neon-blue');
this.classList.add('bg-neon-green', 'text-black', 'border-neon-green');
// Create cyberpunk notification
const toast = document.createElement('div');
toast.className = 'fixed bottom-6 right-6 bg-black border border-neon-green px-6 py-3 rounded-lg shadow-2xl flex items-center neon-text neon-green';
toast.innerHTML = '<i class="fas fa-check-circle mr-3"></i> WALLET CONNECTION ESTABLISHED';
// Add glitch effect
toast.style.animation = 'glitch 1s linear';
document.body.appendChild(toast);
setTimeout(() => {
toast.style.opacity = '0';
setTimeout(() => {
toast.remove();
}, 500);
}, 3000);
});
});
// Add cyberpunk hover effects to all neon elements
const neonElements = document.querySelectorAll('.neon-text, .cyber-button, .cyber-card');
neonElements.forEach(el => {
el.addEventListener('mouseenter', () => {
el.style.transform = 'translateY(-2px)';
});
el.addEventListener('mouseleave', () => {
el.style.transform = 'translateY(0)';
});
});
// Terminal typing effect on load
document.addEventListener('DOMContentLoaded', () => {
const typewriter = document.querySelector('.typewriter');
typewriter.style.animation = 'typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite';
});
// Celebrity card hover effects
const celebrityCards = document.querySelectorAll('.celebrity-card');
celebrityCards.forEach(card => {
card.addEventListener('mouseenter', () => {
const image = card.querySelector('.celebrity-image');
image.style.transform = 'scale(1.05)';
image.style.filter = 'brightness(1.1) saturate(1.2)';
});
card.addEventListener('mouseleave', () => {
const image = card.querySelector('.celebrity-image');
image.style.transform = 'scale(1)';
image.style.filter = 'none';
});
});
</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=Bujurocks/cybernet" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |