cybernet / index.html
Bujurocks's picture
Add 2 files
953f157 verified
<!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>