Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>SBC Summit x Web3District Partnership</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/@phosphor-icons/web"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| 'neon-blue': '#00f5ff', | |
| 'electric-purple': '#b300ff', | |
| 'hot-pink': '#ff00b3' | |
| }, | |
| backgroundImage: { | |
| 'hero-gradient': 'linear-gradient(45deg, #00f5ff, #b300ff, #ff00b3)', | |
| 'card-gradient': 'linear-gradient(135deg, #00f5ff, #b300ff, #ff00b3)', | |
| 'timeline-bg': 'linear-gradient(180deg, #00f5ff 0%, #b300ff 50%, #ff00b3 100%)' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> | |
| <style type="text/tailwindcss"> | |
| /* Hides the DeepSite footer badge */ | |
| a[href*="deepsite"] { | |
| display: none ; | |
| } | |
| /* Confetti styles */ | |
| .confetti { | |
| position: absolute; | |
| width: 10px; | |
| height: 10px; | |
| background-color: #00f5ff; | |
| opacity: 0; | |
| animation: confetti-fall 3s ease-in-out forwards; | |
| } | |
| @keyframes confetti-fall { | |
| 0% { | |
| transform: translateY(-100px) rotate(0deg); | |
| opacity: 1; | |
| } | |
| 100% { | |
| transform: translateY(100px) rotate(360deg); | |
| opacity: 0; | |
| } | |
| } | |
| @layer base { | |
| body { | |
| @apply bg-gray-900 text-white font-sans; | |
| perspective: 1000px; | |
| } | |
| .gradient-text { | |
| background-clip: text; | |
| -webkit-background-clip: text; | |
| color: transparent; | |
| background-image: linear-gradient(45deg, #00f5ff, #b300ff, #ff00b3); | |
| } | |
| section { | |
| @apply relative overflow-hidden; | |
| } | |
| .parallax-bg { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| will-change: transform; | |
| } | |
| } | |
| @layer utilities { | |
| .speaker-card { | |
| perspective: 1000px; | |
| transform-style: preserve-3d; | |
| } | |
| .speaker-card .relative { | |
| transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); | |
| transform-style: preserve-3d; | |
| transform: translateZ(0); | |
| } | |
| .speaker-card:hover .relative { | |
| transform: | |
| perspective(1000px) | |
| rotateY(10deg) | |
| rotateX(5deg) | |
| translateY(-10px) | |
| translateZ(50px); | |
| box-shadow: 0 35px 60px rgba(179, 0, 255, 0.5); | |
| z-index: 20; | |
| } | |
| .speaker-card:hover::before { | |
| content: ''; | |
| position: absolute; | |
| top: -10px; | |
| left: -10px; | |
| right: -10px; | |
| bottom: -10px; | |
| background: linear-gradient(45deg, | |
| rgba(0,245,255,0.2) 0%, | |
| rgba(179,0,255,0.2) 50%, | |
| rgba(255,0,179,0.3) 100%); | |
| z-index: -1; | |
| filter: blur(40px); | |
| animation: hologram 1.5s infinite alternate; | |
| transform: translateZ(-30px); | |
| border-radius: 1.5rem; | |
| overflow: hidden; | |
| } | |
| .speaker-card:hover .absolute { | |
| transform: rotate(3deg) scale(1.05); | |
| box-shadow: 0 25px 50px rgba(179, 0, 255, 0.5); | |
| } | |
| @keyframes hologram { | |
| 0% { opacity: 0.3; } | |
| 100% { opacity: 0.7; } | |
| } | |
| .scrollbar-hidden::-webkit-scrollbar { | |
| display: none; | |
| } | |
| .scrollbar-hidden { | |
| -ms-overflow-style: none; | |
| scrollbar-width: none; | |
| } | |
| .text-3d { | |
| text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); | |
| } | |
| .hover\:translate-z-50:hover { | |
| transform: translateZ(50px); | |
| } | |
| .hover\:rotate-x-5:hover { | |
| transform: rotateX(5deg); | |
| } | |
| .hover\:rotate-y-5:hover { | |
| transform: rotateY(5deg); | |
| } | |
| .timeline-item { | |
| perspective: 1000px; | |
| transform-style: preserve-3d; | |
| } | |
| .timeline-item .relative { | |
| transition: transform 0.5s ease, box-shadow 0.5s ease; | |
| transform-style: preserve-3d; | |
| } | |
| .timeline-item:hover .relative { | |
| transform: | |
| perspective(1000px) | |
| rotateY(7.5deg) | |
| rotateX(5deg) | |
| translateY(-7px) | |
| translateZ(25px); | |
| box-shadow: 0 30px 50px rgba(179, 0, 255, 0.4); | |
| z-index: 10; | |
| } | |
| .timeline-item:hover::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: linear-gradient(45deg, | |
| rgba(0,245,255,0.1) 0%, | |
| rgba(179,0,255,0.1) 50%, | |
| rgba(255,0,179,0.2) 100%); | |
| z-index: -1; | |
| filter: blur(30px); | |
| animation: hologram 2s infinite alternate; | |
| transform: translateZ(-20px); | |
| border-radius: 1rem; | |
| overflow: hidden; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen"> | |
| <!-- Hero Section --> | |
| <section class="min-h-screen flex items-center relative"> | |
| <!-- Video Background --> | |
| <div class="absolute inset-0 overflow-hidden z-0"> | |
| <video autoplay muted loop playsinline class="w-full h-full object-cover"> | |
| <source src="https://huggingface.co/spaces/web3district/sbcxweb3dstrict/resolve/main/Tech_Summit_Hologram_Reveal%20(1).mp4" type="video/mp4"> | |
| Your browser does not support the video tag. | |
| </video> | |
| <div class="absolute inset-0 bg-gradient-to-b from-black/80 via-transparent to-black/80"></div> | |
| <div class="absolute inset-0 bg-gradient-to-r from-purple-900/30 via-transparent to-fuchsia-900/30"></div> | |
| </div> | |
| <!-- Hero Content --> | |
| <div class="container mx-auto px-4 py-24 relative z-10"> | |
| <div class="max-w-5xl mx-auto text-center"> | |
| <!-- Logo Card --> | |
| <div class="speaker-card group relative w-[140px] h-[100px] mx-auto mb-8"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-purple-900/30 to-fuchsia-900/30 rounded-2xl shadow-2xl"></div> | |
| <div class="relative bg-transparent backdrop-blur-sm border border-purple-700/50 rounded-2xl h-full w-full flex items-center justify-center p-2 overflow-hidden"> | |
| <img src="https://huggingface.co/spaces/web3district/sbcxweb3dstrict/resolve/main/web3district2_pink%5B2463%5D.png" alt="Web3District Logo" class="h-[80%] w-full object-contain"> | |
| </div> | |
| </div> | |
| <h1 class="text-5xl md:text-7xl font-extrabold mb-8 text-3d"> | |
| <span class="text-white">SBC I SUMMIT</span> | |
| <span class="gradient-text mx-2">×</span> | |
| <span class="text-white">Web3District</span> | |
| </h1> | |
| <div class="speaker-card group relative max-w-md mx-auto mb-4"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-purple-900/24 to-fuchsia-900/24 rounded-2xl shadow-2xl"></div> | |
| <div class="relative bg-gray-900/60 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 text-center"> | |
| <h3 class="text-xl md:text-2xl font-bold text-white mb-2">Web3 Academy</h3> | |
| <h3 class="text-xl md:text-2xl font-bold gradient-text confetti-trigger drop-shadow-lg">Bridging Web3, AI and Gaming</h3> | |
| <p class="text-white text-sm mt-2">September 16–18, 2025</p> | |
| </div> | |
| </div> | |
| <div class="flex justify-center"> | |
| <span class="bg-transparent backdrop-blur-md border border-purple-400/50 text-white font-bold py-3 px-8 rounded-full opacity-70 cursor-not-allowed"> | |
| Join the Quest | |
| </span> | |
| </div> | |
| <div class="text-center mt-2"> | |
| <span class="text-xs text-white bg-purple-950 px-2 py-1 rounded-full font-bold">UPDATING NEW QUESTS</span> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Stats Section --> | |
| <section class="py-16 bg-gray-800"> | |
| <div class="container mx-auto px-4"> | |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-8 max-w-5xl mx-auto"> | |
| <div class="text-center p-6 bg-gradient-to-br from-purple-900 via-purple-800 to-fuchsia-900 rounded-xl shadow-xl"> | |
| <p class="text-3xl md:text-4xl font-bold gradient-text">10%</p> | |
| <p class="text-sm text-purple-200">SBC Gaming Twitter Growth</p> | |
| </div> | |
| <div class="text-center p-6 bg-gradient-to-br from-purple-900 via-purple-800 to-fuchsia-900 rounded-xl shadow-xl"> | |
| <p class="text-3xl md:text-4xl font-bold gradient-text">700+</p> | |
| <p class="text-sm text-purple-200">Telegram Subscribers</p> | |
| </div> | |
| <div class="text-center p-6 bg-gradient-to-br from-purple-900 via-purple-800 to-fuchsia-900 rounded-xl shadow-xl"> | |
| <p class="text-3xl md:text-4xl font-bold gradient-text">8,000+</p> | |
| <p class="text-sm text-purple-200">Web3 Lisbon Participants</p> | |
| </div> | |
| <div class="text-center p-6 bg-gradient-to-br from-purple-900 via-purple-800 to-fuchsia-900 rounded-xl shadow-xl"> | |
| <p class="text-3xl md:text-4xl font-bold gradient-text">29K+</p> | |
| <p class="text-sm text-purple-200">SBC Brand Global Awareness</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Speakers Section --> | |
| <section id="speakers-section" class="hidden py-20 relative overflow-hidden bg-gradient-to-br from-pink-500/20 via-purple-500/20 to-fuchsia-500/20"> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4"> | |
| <span class="gradient-text">SBC Web3District Academy Featured Speakers (TBD)</span> | |
| </h2> | |
| <p class="text-xl text-purple-200 max-w-2xl mx-auto"> | |
| Industry leaders bridging Web3 culture and gaming innovation | |
| </p> | |
| <div class="w-24 h-1 bg-gradient-to-r from-purple-start to-fuchsia-end mx-auto mt-4"></div> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8 max-w-6xl mx-auto"> | |
| <!-- Speaker 2 - Borget --> | |
| <div class="speaker-card group relative h-full"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-purple-900/30 to-fuchsia-900/30 rounded-2xl shadow-2xl"></div> | |
| <div class="relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 h-full flex flex-col items-center text-center"> | |
| <div class="w-[calc(100%+48px)] h-48 -mx-6 -mt-6 overflow-hidden rounded-t-2xl"> | |
| <img src="https://cdn.edi-static.fr/image/upload/c_scale,dpr_auto,f_auto,q_auto,w_auto/c_limit,w_auto/v1/Img/BREVE/2022/4/370923/Portrait-Sebastien-Borget-joueur-F.jpg" alt="Sébastien Borget" class="w-full h-full object-cover object-center"> | |
| </div> | |
| <h3 class="text-2xl font-bold text-white mb-1">Sébastien Borget</h3> | |
| <p class="text-purple-300 text-sm mb-4">Co-Founder & COO, The Sandbox</p> | |
| <p class="text-purple-200 text-sm mb-4">Metaverse & Web3 Gaming</p> | |
| <div class="mt-auto w-full"> | |
| <div class="bg-gradient-to-r from-purple-start to-fuchsia-end h-px w-full opacity-50 mb-3"></div> | |
| <div class="flex justify-center space-x-3 text-purple-300"> | |
| <a href="https://twitter.com/borgetsebastien" class="hover:text-white"><i class="ph ph-twitter-logo"></i></a> | |
| <a href="https://www.linkedin.com/in/borgetsebastien/" class="hover:text-white"><i class="ph ph-linkedin-logo"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Speaker 3 - Charles Wayn --> | |
| <div class="speaker-card group relative h-full"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-purple-900/30 to-fuchsia-900/30 rounded-2xl shadow-2xl"></div> | |
| <div class="relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 h-full flex flex-col items-center text-center"> | |
| <div class="w-[calc(100%+48px)] h-48 -mx-6 -mt-6 overflow-hidden rounded-t-2xl"> | |
| <img src="https://pbs.twimg.com/profile_images/1592763840063623168/0Q9JNi7n_400x400.jpg" alt="Charles Wayn" class="w-full h-full object-cover object-center"> | |
| </div> | |
| <h3 class="text-2xl font-bold text-white mb-1">Charles Wayn</h3> | |
| <p class="text-purple-300 text-sm mb-4">Founder, Galxe</p> | |
| <p class="text-purple-200 text-sm mb-4">Web3 Credential Networks</p> | |
| <div class="mt-auto w-full"> | |
| <div class="bg-gradient-to-r from-purple-start to-fuchsia-end h-px w-full opacity-50 mb-3"></div> | |
| <div class="flex justify-center space-x-3 text-purple-300"> | |
| <a href="https://twitter.com/charleswayn" class="hover:text-white"><i class="ph ph-twitter-logo"></i></a> | |
| <a href="https://www.crunchbase.com/person/charles-wayn" class="hover:text-white"><i class="ph ph-linkedin-logo"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Speaker 4 - Kris Marszalek --> | |
| <div class="speaker-card group relative h-full"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-purple-900/30 to-fuchsia-900/30 rounded-2xl shadow-2xl"></div> | |
| <div class="relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 h-full flex flex-col items-center text-center"> | |
| <div class="w-[calc(100%+48px)] h-48 -mx-6 -mt-6 overflow-hidden rounded-t-2xl"> | |
| <img src="https://insidebitcoins.com/wp-content/uploads/2023/07/Kris-Marszalek.png" alt="Kris Marszalek" class="w-full h-full object-cover object-center"> | |
| </div> | |
| <h3 class="text-2xl font-bold text-white mb-1">Kris Marszalek</h3> | |
| <p class="text-purple-300 text-sm mb-4">CEO & Co-Founder, Crypto.com</p> | |
| <p class="text-purple-200 text-sm mb-4">Crypto Payments & Adoption</p> | |
| <div class="mt-auto w-full"> | |
| <div class="bg-gradient-to-r from-purple-start to-fuchsia-end h-px w-full opacity-50 mb-3"></div> | |
| <div class="flex justify-center space-x-3 text-purple-300"> | |
| <a href="https://twitter.com/kris" class="hover:text-white"><i class="ph ph-twitter-logo"></i></a> | |
| <a href="https://www.linkedin.com/in/krismarszalek/" class="hover:text-white"><i class="ph ph-linkedin-logo"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Academy Topics Section --> | |
| <section id="academy" class="py-20 relative overflow-hidden bg-gray-900"> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4"> | |
| <span class="gradient-text">SBC Web3District Academy Schedule</span> | |
| </h2> | |
| <p class="text-xl text-purple-200 max-w-2xl mx-auto"> | |
| Interactive workshops & sessions exploring Web3 innovation | |
| </p> | |
| <div class="w-24 h-1 bg-gradient-to-r from-purple-start to-fuchsia-end mx-auto mt-4"></div> | |
| </div> | |
| <div class="max-w-4xl mx-auto space-y-8"> | |
| <!-- Panel --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 12:15 - 13:00 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Panel: Web 3.0 & Blockchain in Context</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- AMA and Gary Vee side by side --> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> | |
| <!-- AMA --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors h-full"> | |
| <div class="flex justify-between items-start h-full flex-col"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 13:00 - 13:40 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">AMA: NFTs - Beyond the Hype</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| <button class="bg-gradient-to-r from-purple-start to-fuchsia-end text-white py-2 px-4 rounded-full text-sm hover:from-purple-600 hover:to-fuchsia-600 transition-colors mt-4">Add to Calendar</button> | |
| </div> | |
| </div> | |
| <!-- Gary Vee Speaker Card --> | |
| <div class="speaker-card group relative h-full" style="perspective: 1000px;"> | |
| <div class="absolute inset-0 bg-gradient-to-br from-purple-900/30 to-fuchsia-900/30 rounded-2xl shadow-2xl"></div> | |
| <div class="relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 h-full flex flex-col items-center text-center transform-style-preserve-3d transition-all duration-500 group-hover:rotate-y-10 group-hover:rotate-x-5 group-hover:translate-z-20"> | |
| <div class="absolute -inset-4 bg-gradient-to-br from-purple-900/20 via-transparent to-fuchsia-900/20 rounded-2xl opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
| <div class="w-[calc(100%+48px)] h-32 -mx-6 -mt-6 overflow-hidden rounded-t-2xl relative"> | |
| <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent z-10"></div> | |
| <img src="https://pbs.twimg.com/media/FeOWr2eX0AISiJS.jpg:large" alt="Gary Vee" class="w-full h-full object-cover object-top group-hover:scale-105 transition-transform duration-500"> | |
| </div> | |
| <div class="relative z-10"> | |
| <h3 class="text-xl font-bold text-white mb-1 group-hover:text-transparent group-hover:bg-clip-text group-hover:bg-gradient-to-r from-purple-400 to-fuchsia-400 transition-all duration-300">Gary Vee</h3> | |
| <p class="text-purple-300 text-xs mb-2 group-hover:text-purple-200 transition-colors">CEO, VaynerMedia</p> | |
| <p class="text-purple-200 text-xs group-hover:text-white transition-colors">Keynote: Web3 & The Future of Engagement</p> | |
| </div> | |
| <div class="mt-auto w-full relative z-10"> | |
| <div class="bg-gradient-to-r from-purple-start to-fuchsia-end h-px w-full opacity-50 mb-3 group-hover:opacity-100 group-hover:from-purple-400 group-hover:to-fuchsia-400 transition-all"></div> | |
| <div class="flex justify-center space-x-3 text-purple-300 group-hover:text-white transition-colors"> | |
| <a href="https://twitter.com/garyvee" target="_blank" class="hover:text-purple-400"><i class="ph ph-twitter-logo"></i></a> | |
| <a href="https://www.linkedin.com/in/garyvaynerchuk/" target="_blank" class="hover:text-fuchsia-400"><i class="ph ph-linkedin-logo"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="absolute inset-0 rounded-2xl opacity-0 group-hover:opacity-100 transition-opacity duration-500 pointer-events-none" style="background: radial-gradient(circle at center, rgba(179, 0, 255, 0.4) 0%, transparent 70%); transform: translateZ(-30px);"></div> | |
| </div> | |
| </div> | |
| <!-- Workshop Group Title --> | |
| <div class="mb-2 mt-12"> | |
| <div class="w-full h-0.5 bg-purple-800/50 rounded-full mb-4"></div> | |
| <div class="flex items-center justify-center"> | |
| <h3 class="text-2xl font-bold gradient-text text-center mr-4">Hands-On Workshops</h3> | |
| <a href="https://t.me/+BeZCavG1yjo2M2Y0" target="_blank" class="bg-gradient-to-r from-purple-start to-fuchsia-end text-white py-2 px-6 rounded-full text-sm hover:from-purple-600 hover:to-fuchsia-600 transition-all"> | |
| Apply to be a Speaker | |
| </a> | |
| </div> | |
| <div class="w-full h-0.5 bg-purple-800/50 rounded-full mt-4"></div> | |
| </div> | |
| <!-- Workshop 1 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 14:15 - 14:35 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: Ask & Activate - One Command to Create AI Apps, Games & Websites</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">How many killer ideas died without a dev or designer?</p> | |
| <p class="mt-2">In this workshop, we'll share the secret tools to speak your vision-and build it instantly. Zero code. Zero stress. Only vibes.</p> | |
| </div> | |
| </div> | |
| <!-- Workshop 2 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 14:35 - 14:55 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: Automation in Full Cycle-AI Agents, Smart Funnels & Instant Payments</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">How many deals died while you chased invoices?</p> | |
| <p class="mt-2">In this workshop, we'll drop plug-and-play templates for landing pages, email flows, lead scoring, and auto-payments-so your AI agents hunt, close, and cash out for you. You chill. They kill it.</p> | |
| </div> | |
| </div> | |
| <!-- Workshop 3 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 14:55 - 15:15 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: The Ultimate Digital You - Control Your ID, IP & Data Like a Boss</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">Still sending screenshots of your bank account to prove you're legit? Giving up personal info for access you should own?</p> | |
| <p class="mt-2">In this workshop, we'll show you how to prove who you are and what you hold-without ever showing your balance. Full control of your ID, IP, and data. You decide who sees what, when, and why. Verify without oversharing. Profit from your identity. Stay fully in control.</p> | |
| </div> | |
| </div> | |
| <!-- Workshop 4 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 15:15 - 15:35 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: Real Money = Real Traffic. No Bots Allowed.</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">You've got traffic. You've got leads. But are they real?</p> | |
| <p class="mt-2">In this workshop, you'll learn the best tools of blockchain, gamification, and AI to fuel real business, boost community engagement, and filter the noise when bots don't belong. Real people. Real rewards. Real trust.</p> | |
| </div> | |
| </div> | |
| <!-- Workshop 5 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 15:35 - 15:55 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: Really Smart Contracts - On-Chain Bureaucracy, Upgraded</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">How many deals died in endless payment requests, legal docs, or someone "getting back to you"?</p> | |
| <p class="mt-2">In this workshop, you'll master the tools to turn business terms into unstoppable code-smart contracts that trigger payments, enforce deliveries, and kill the back-and-forth. No lawyers. No waiting. Just AI, blockchain, and you.</p> | |
| </div> | |
| </div> | |
| <!-- Workshop 6 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 15:55 - 16:15 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: Crypto → FLASH → Cash - Amazing Solutions, Best Practices, Instant Liquidity NBS!</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">Still waiting days to touch your own money? Lost in fees?</p> | |
| <p class="mt-2">In this workshop, you'll master the slickest on/off-ramp tools to move from crypto to fiat (and back) in minutes-no banks, no delays, no stress. Your gains. Your time. Your flow.</p> | |
| </div> | |
| </div> | |
| <!-- Workshop 7 --> | |
| <div class="bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-6 hover:border-purple-400/70 transition-colors"> | |
| <div class="flex justify-between items-start"> | |
| <div> | |
| <div class="text-xs font-bold px-3 py-1 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end inline-block text-white"> | |
| 16:15 - 16:35 | |
| </div> | |
| <h3 class="text-xl font-bold text-white mt-3">Workshop: Tax Smart - Master MiCA, VASP & The Final Crypto Boss</h3> | |
| <p class="text-purple-300 mt-1">Web 3.0 & Blockchain Academy</p> | |
| </div> | |
| </div> | |
| <div class="mt-4 text-purple-200"> | |
| <p class="italic font-medium">Nailed the tech? Crushed the launch? Doesn't matter if tax kills the whole thing.</p> | |
| <p class="mt-2">This workshop is your shield. You'll learn the best tools to auto-track, classify, and report every crypto move-compliant with MiCA, VASP, and regulators breathing down your neck. In the land of Smart Contracts, Taxes have to be Genius.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Deliverables Section (Hidden by default) --> | |
| <section id="deliverables-section" class="hidden py-20 relative overflow-hidden bg-gradient-to-br from-indigo-900 via-purple-900 to-fuchsia-900"> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 text-white"> | |
| <span class="gradient-text">Partnership Deliverables</span> | |
| </h2> | |
| <div class="w-24 h-1 bg-gradient-to-r from-purple-start to-fuchsia-end mx-auto"></div> | |
| </div> | |
| <div class="max-w-6xl mx-auto grid md:grid-cols-2 gap-8"> | |
| <!-- Web3District Deliverables --> | |
| <div class="bg-gradient-to-br from-indigo-900/70 via-purple-900/70 to-fuchsia-900/70 backdrop-blur-sm border border-purple-300/50 p-8 rounded-2xl shadow-xl hover:shadow-2xl transition-all"> | |
| <h3 class="text-2xl font-bold text-white mb-6 flex items-center"> | |
| <i class="ph ph-rocket-launch mr-3 text-purple-400"></i> Web3District Deliverables | |
| </h3> | |
| <ul class="space-y-4 text-purple-100"> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>360º Social Media campaign</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Event promotion via networks</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Distribute 30% discount code</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Distribute complimentary VIP pass code</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Provide KOL speakers & topics</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Sell discounted tickets</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Campaign reporting</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Promote & staff booth</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Monthly Publication across 15 TOP TIER Web3/AI PR Media outlets</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Monthly SBC Guest Interview at THE QUANTUM POST (Video)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Free Lisbon Central Office at Liberdade Avenue for 20 VIP selected SBC partners</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Onboarding Web3 and AI sponsors to the co-branded Web3 Academy track and Web3 District booth</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <!-- SBC Summit Deliverables --> | |
| <div class="bg-gradient-to-br from-indigo-900/70 via-purple-900/70 to-fuchsia-900/70 backdrop-blur-sm border border-purple-300/50 p-8 rounded-2xl shadow-xl hover:shadow-2xl transition-all"> | |
| <h3 class="text-2xl font-bold text-white mb-6 flex items-center"> | |
| <i class="ph ph-trophy mr-3 text-purple-400"></i> SBC Summit Deliverables | |
| </h3> | |
| <ul class="space-y-4 text-purple-100"> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Website listing & link (Logo, profile, link on SBC event website)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Onsite signage (Partner logo on event signage)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Provide 30% discount code (Discount code for Expo+ passes)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Provide VIP pass code (Complimentary Expo+ passes code)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Host co-branded content track (Web3District @ SBC Summit conference/workshops)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Ambassador fee payment (€15k to Web3District)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Ticket sales commission (€10 per ticket sold via code, cap €10k)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Booth space & build (Complimentary branded booth in StartUp area)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Provide images & copy (Supply brand assets for partner promotions)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-3 mt-1"></i> | |
| <span>Approve social strategy (Sign-off social media plan before launch)</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Download Button --> | |
| <div class="text-center mt-12"> | |
| <a href="https://huggingface.co/spaces/web3district/sbcxweb3dstrict/resolve/main/Web3DistrictXSBC_Deliverables.xlsx" | |
| download="Web3DistrictXSBC_Deliverables.xlsx" | |
| class="bg-gradient-to-r from-purple-start to-fuchsia-end hover:from-purple-600 hover:to-pink-600 text-white font-bold py-3 px-8 rounded-full transition-all transform hover:scale-105 inline-block"> | |
| <i class="ph ph-download-simple mr-2"></i> Download Detailed Deliverables Spreadsheet | |
| </a> | |
| </div> | |
| </section> | |
| <!-- Potential Brands Section --> | |
| <section id="partners-section" class="py-20 relative overflow-hidden bg-gray-900 hidden"> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4"> | |
| <span class="gradient-text">Our Web3 & AI Partner Brands</span> | |
| </h2> | |
| <p class="text-xl text-purple-200 max-w-2xl mx-auto"> | |
| Strategic partners we can Potentially Onboard | |
| </p> | |
| <div class="w-24 h-1 bg-gradient-to-r from-purple-start to-fuchsia-end mx-auto mt-4"></div> | |
| </div> | |
| <div class="max-w-6xl mx-auto bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-8 hover:border-purple-400/70 transition-colors"> | |
| <img src="https://huggingface.co/spaces/web3district/sbcxweb3dstrict/resolve/main/Web3District_Clients.png" alt="Web3District Client Brands" class="w-full h-auto rounded-lg"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Media Outlets Section --> | |
| <section id="media" class="py-20 relative overflow-hidden bg-gradient-to-br from-purple-900/20 to-fuchsia-900/20"> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4"> | |
| <span class="gradient-text">Our Web3 & AI Media Network</span> | |
| </h2> | |
| <p class="text-xl text-purple-200 max-w-2xl mx-auto"> | |
| Top-tier media outlets we collaborate with for maximum exposure | |
| </p> | |
| <div class="w-24 h-1 bg-gradient-to-r from-purple-start to-fuchsia-end mx-auto mt-4"></div> | |
| </div> | |
| <div class="max-w-6xl mx-auto bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-8 hover:border-purple-400/70 transition-colors mb-10"> | |
| <img src="https://huggingface.co/spaces/web3district/sbcxweb3dstrict/resolve/main/Web3District_Media_outlets.png" alt="Web3District Media Outlets" class="w-full h-auto rounded-lg"> | |
| </div> | |
| <div class="max-w-6xl mx-auto bg-gray-800/50 backdrop-blur-sm border border-purple-700/50 rounded-2xl p-8 hover:border-purple-400/70 transition-colors"> | |
| <h3 class="text-2xl font-bold gradient-text text-center mb-8">Featured Media Coverage</h3> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
| <!-- Media Item 1 --> | |
| <div class="bg-gray-900/50 rounded-xl p-5 hover:bg-purple-900/30 transition-all border border-purple-800/50"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <img src="https://app.chainwire.org/storage/uploads/users/market_insider_logo_1685545092LJuGI89O96.jpg" alt="markets.businessinsider.com" class="w-16 h-16 rounded-xl object-cover border-2 border-purple-500/30"> | |
| </div> | |
| <div class="flex-1 min-w-0"> | |
| <h4 class="font-bold text-white truncate">markets.businessinsider.com</h4> | |
| <div class="flex items-center mt-2"> | |
| <span class="text-xs font-bold bg-green-500/20 text-green-400 px-2 py-1 rounded mr-2">Authority: 94</span> | |
| <span class="text-xs font-medium text-purple-300">Outreach: 6.5M</span> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="https://markets.businessinsider.com/news/currencies/serial-entrepreneur-gary-vaynerchuk-is-coming-to-sbc-summit-1034977541" target="_blank" class="block mt-4"> | |
| <img src="https://screenshots.chainwire.org/images/mlTD7oWQy1V6OLLr_1754308001451.png" alt="Publication" class="w-full h-32 rounded-lg object-cover"> | |
| </a> | |
| </div> | |
| <!-- Media Item 2 --> | |
| <div class="bg-gray-900/50 rounded-xl p-5 hover:bg-purple-900/30 transition-all border border-purple-800/50"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <img src="https://app.chainwire.org/storage/uploads/users/coinmarketcap_1666874986Xyn1qiDrTN.jpg" alt="coinmarketcap.com" class="w-16 h-16 rounded-xl object-cover border-2 border-purple-500/30"> | |
| </div> | |
| <div class="flex-1 min-w-0"> | |
| <h4 class="font-bold text-white truncate">coinmarketcap.com</h4> | |
| <div class="flex items-center mt-2"> | |
| <span class="text-xs font-bold bg-green-500/20 text-green-400 px-2 py-1 rounded mr-2">Authority: 92</span> | |
| <span class="text-xs font-medium text-purple-300">Outreach: 70M</span> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="https://coinmarketcap.com/community/articles/68905cbebcd39c77ce70baca/" target="_blank" class="block mt-4"> | |
| <img src="https://screenshots.chainwire.org/images/AipSubZCtHirs3oT_1754296290220.png" alt="Publication" class="w-full h-32 rounded-lg object-cover"> | |
| </a> | |
| </div> | |
| <!-- Media Item 3 --> | |
| <div class="bg-gray-900/50 rounded-xl p-5 hover:bg-purple-900/30 transition-all border border-purple-800/50"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <img src="https://app.chainwire.org/storage/uploads/assets/binance_300x124_preserve_black_1744033477hwEsuB77kX.png" alt="binance.com" class="w-16 h-16 rounded-xl object-cover border-2 border-purple-500/30"> | |
| </div> | |
| <div class="flex-1 min-w-0"> | |
| <h4 class="font-bold text-white truncate">binance.com</h4> | |
| <div class="flex items-center mt-2"> | |
| <span class="text-xs font-bold bg-green-500/20 text-green-400 px-2 py-1 rounded mr-2">Authority: 90</span> | |
| <span class="text-xs font-medium text-purple-300">Outreach: 43M</span> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="https://www.binance.com/en/square/post/27852995817242" target="_blank" class="block mt-4"> | |
| <img src="https://screenshots.chainwire.org/images/81eFzjGDde2pKS2V_1754293229203.png" alt="Publication" class="w-full h-32 rounded-lg object-cover"> | |
| </a> | |
| </div> | |
| <!-- Media Item 4 --> | |
| <div class="bg-gray-900/50 rounded-xl p-5 hover:bg-purple-900/30 transition-all border border-purple-800/50"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <img src="https://app.chainwire.org/storage/uploads/users/benzinga_1666884017vrVfjJ1JLD.jpg" alt="benzinga.com" class="w-16 h-16 rounded-xl object-cover border-2 border-purple-500/30"> | |
| </div> | |
| <div class="flex-1 min-w-0"> | |
| <h4 class="font-bold text-white truncate">benzinga.com</h4> | |
| <div class="flex items-center mt-2"> | |
| <span class="text-xs font-bold bg-green-500/20 text-green-400 px-2 py-1 rounded mr-2">Authority: 88</span> | |
| <span class="text-xs font-medium text-purple-300">Outreach: 5.2M</span> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="https://www.benzinga.com/pressreleases/25/08/46820450/serial-entrepreneur-gary-vaynerchuk-is-coming-to-sbc-summit" target="_blank" class="block mt-4"> | |
| <img src="https://screenshots.chainwire.org/images/PoELrGM8EfNi3S3H_1754299040451.png" alt="Publication" class="w-full h-32 rounded-lg object-cover"> | |
| </a> | |
| </div> | |
| <!-- Media Item 5 --> | |
| <div class="bg-gray-900/50 rounded-xl p-5 hover:bg-purple-900/30 transition-all border border-purple-800/50"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <img src="https://app.chainwire.org/storage/uploads/users/advfn_1715085249xOidwEJwPv.jpg" alt="advfn.com" class="w-16 h-16 rounded-xl object-cover border-2 border-purple-500/30"> | |
| </div> | |
| <div class="flex-1 min-w-0"> | |
| <h4 class="font-bold text-white truncate">advfn.com</h4> | |
| <div class="flex items-center mt-2"> | |
| <span class="text-xs font-bold bg-green-500/20 text-green-400 px-2 py-1 rounded mr-2">Authority: 82</span> | |
| <span class="text-xs font-medium text-purple-300">Outreach: 3.7M</span> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="https://uk.advfn.com/stock-market/COIN/BTCUSD/share-news/Serial-entrepreneur-Gary-Vaynerchuk-is-coming-to-SBC-Summit/96551674" target="_blank" class="block mt-4"> | |
| <img src="https://screenshots.chainwire.org/images/xb24bWIxkmhAZCwS_1754299684354.png" alt="Publication" class="w-full h-32 rounded-lg object-cover"> | |
| </a> | |
| </div> | |
| <!-- Media Item 6 --> | |
| <div class="bg-gray-900/50 rounded-xl p-5 hover:bg-purple-900/30 transition-all border border-purple-800/50"> | |
| <div class="flex items-start space-x-4"> | |
| <div class="flex-shrink-0"> | |
| <img src="https://app.chainwire.org/storage/uploads/users/chainwire_1666883781hBeGRbeNfl.jpg" alt="chainwire.org" class="w-16 h-16 rounded-xl object-cover border-2 border-purple-500/30"> | |
| </div> | |
| <div class="flex-1 min-w-0"> | |
| <h4 class="font-bold text-white truncate">chainwire.org</h4> | |
| <div class="flex items-center mt-2"> | |
| <span class="text-xs font-bold bg-amber-500/20 text-amber-400 px-2 py-1 rounded mr-2">Authority: 39</span> | |
| <span class="text-xs font-medium text-purple-300">Outreach: 130K</span> | |
| </div> | |
| </div> | |
| </div> | |
| <a href="https://chainwire.org/2025/08/04/serial-entrepreneur-gary-vaynerchuk-is-coming-to-sbc-summit/" target="_blank" class="block mt-4"> | |
| <img src="https://screenshots.chainwire.org/images/27MDmJBPMApanxeQ_1754290818770.png" alt="Publication" class="w-full h-32 rounded-lg object-cover"> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="mt-8 text-center"> | |
| <p class="text-sm text-purple-300"> | |
| <i class="ph ph-arrow-line-down text-yellow-400"></i> Expert coverage in top industry publications driving awareness | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Strategy Summary --> | |
| <section id="strategy-section" class="py-20 relative overflow-hidden bg-gradient-to-br from-blue-600/20 via-indigo-600/20 to-purple-600/20"> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 text-white"> | |
| <span class="gradient-text">Phygital Growth Strategy</span> | |
| </h2> | |
| <div class="w-24 h-1 bg-gradient-to-r from-blue-400 to-indigo-500 mx-auto"></div> | |
| </div> | |
| <div class="max-w-4xl mx-auto grid md:grid-cols-2 gap-8"> | |
| <div class="bg-gray-900/30 backdrop-blur-sm border border-indigo-400/30 p-8 rounded-2xl hover:border-indigo-400/60 transition-colors"> | |
| <h3 class="text-xl font-bold text-white mb-4 flex items-center"> | |
| <i class="ph ph-globe-hemisphere-east mr-2 text-cyan-400"></i> Global Reach | |
| </h3> | |
| <ul class="space-y-3 text-blue-100"> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-cyan-400 mr-2 mt-1"></i> | |
| <span>100M+ monthly potential outreach through 15 top-tier Web3/AI media partners</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-2 mt-1"></i> | |
| <span>Gamified quests with global leaderboard to drive international participation</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-2 mt-1"></i> | |
| <span>Strategic partnerships with Web3 platforms (Galxe, Layer3, QuestN)</span> | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="bg-gray-900/30 backdrop-blur-sm border border-blue-400/30 p-8 rounded-2xl hover:border-blue-400/60 transition-colors"> | |
| <h3 class="text-xl font-bold text-white mb-4 flex items-center"> | |
| <i class="ph ph-map-pin mr-2 text-blue-400"></i> Lisbon Activation | |
| </h3> | |
| <ul class="space-y-3 text-blue-100"> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-blue-400 mr-2 mt-1"></i> | |
| <span>Citywide "Web3 DeQuests" phygital quest with NFC checkpoints at key locations</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-2 mt-1"></i> | |
| <span>Local Web3 community activations (8,000+ engaged members)</span> | |
| </li> | |
| <li class="flex items-start"> | |
| <i class="ph ph-check-circle text-purple-400 mr-2 mt-1"></i> | |
| <span>Exclusive Lisbon-only quests with physical rewards</span> | |
| </li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Roadmap Section (Hidden by default) --> | |
| <section id="roadmap-section" class="hidden py-20 relative bg-white"> | |
| <style> | |
| .timeline-item .relative { | |
| opacity: 1 ; | |
| transform: none ; | |
| } | |
| .timeline-item .relative.overflow-hidden { | |
| overflow: visible ; | |
| } | |
| </style> | |
| <div class="container mx-auto px-4 relative z-10"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-4 text-gray-900"> | |
| <span class="gradient-text">Engagement Roadmap</span> | |
| </h2> | |
| <div class="w-24 h-1 bg-gradient-to-r from-purple-start to-fuchsia-end mx-auto"></div> | |
| </div> | |
| <!-- Roadmap Timeline --> | |
| <div class="max-w-4xl mx-auto relative"> | |
| <div class="relative"> | |
| <!-- May 2025 --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| MAY 2025 — FOUNDATION PHASE | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-white mt-8">Initial Activation</h3> | |
| <p class="text-purple-100 mb-4">Our TON FEST quest with the SBC brand crushed it—putting SBC in front of 29k+ verified users worldwide (exposed to 29k verified users), adding 700+ fresh members to the SBC Summit Telegram channel, and pumping SBC Gaming's X (Twitter) followership by 10%.</p> | |
| <div class="flex flex-wrap gap-2 mt-4"> | |
| <span class="bg-purple-800 text-purple-200 text-xs px-2 py-1 rounded">Telegram 700+</span> | |
| <span class="bg-purple-800 text-purple-200 text-xs px-2 py-1 rounded">Twitter +10%</span> | |
| <span class="bg-purple-800 text-purple-200 text-xs px-2 py-1 rounded">Exposed to 29k Users</span> | |
| </div> | |
| <div class="bg-gray-900/50 p-4 rounded-xl shadow-sm mt-6 border border-purple-700/30"> | |
| <div class="grid grid-cols-2 gap-4"> | |
| <div class="bg-gray-800/50 p-2 rounded-lg"> | |
| <img src="https://drive.google.com/thumbnail?id=1PMmkbc5gGBGd_hSlV-EuGfJn6oAzdgl9&sz=w1000" alt="TON FEST Activation" class="rounded-lg w-full h-auto"> | |
| </div> | |
| <div class="bg-gray-800/50 p-2 rounded-lg"> | |
| <img src="https://drive.google.com/thumbnail?id=1UtRHiou6MiI7Ty5GFPKrS1S0KG5wCap2&sz=w1000" alt="TON FEST Activation" class="rounded-lg w-full h-auto"> | |
| </div> | |
| <div class="bg-gray-800/50 p-2 rounded-lg"> | |
| <img src="https://drive.google.com/thumbnail?id=1Dofmf0Xgh3NAXfKa44mMaN-dEc1qZnSa&sz=w1000" alt="TON FEST Activation" class="rounded-lg w-full h-auto"> | |
| </div> | |
| <div class="bg-gray-800/50 p-2 rounded-lg"> | |
| <img src="https://drive.google.com/thumbnail?id=1bd2Gbb09zGjEMb5jmGRiTdfjwpSJKgNX&sz=w1000" alt="TON FEST Activation" class="rounded-lg w-full h-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- May 2025 - Second Box --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| MAY 2025 — PORTUGAL ACTIVATION | |
| </div> | |
| <h3 class="text-xl font-bold mb-3 text-white mt-8">Web3/AI Portugal Activation</h3> | |
| <p class="text-purple-100 mb-4">The kickoff TON activation got an extra boost—our event post was shared across Portugal's top-tier Web3 Telegram groups, reaching 8 000+ highly engaged members.</p> | |
| <div class="flex flex-wrap gap-2 mt-4"> | |
| <span class="bg-purple-800 text-purple-200 text-xs px-2 py-1 rounded">Exposed to 8K Web3/AI Portuguese</span> | |
| </div> | |
| <div class="bg-gray-900/50 p-4 rounded-xl shadow-sm mt-6 border border-purple-700/30 w-1/2"> | |
| <div class="bg-gray-800/50 p-2 rounded-lg"> | |
| <img src="https://drive.google.com/thumbnail?id=1qoNoY_hNEqRgqwrYJgBeHpD4ha4UpZrL&sz=w1000" alt="Planning Strategy" class="rounded-lg w-full h-auto"> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- June 2025 --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| JUNE 2025 — LAUNCH PHASE | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-8"> | |
| <div> | |
| <h3 class="font-bold text-purple-300">🔥 PR & Media</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-purple-100"> | |
| <li>🚀 Gary Vee Keynote Announcement</li> | |
| <li>Published across 15+ Top Web3/AI Media</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-purple-300">🎮 Quest Campaign</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-purple-100"> | |
| <li>🛠️ Soft Launch of Quest Game</li> | |
| <li>🧭 Finalize phygital rollout plan</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-purple-300">📣 Community Engagement</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-purple-100"> | |
| <li>🎁 Distribute 30% Discount Codes</li> | |
| <li>🚀 Launch 360º Social Media Campaign</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-purple-300">🎥 Content</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-white"> | |
| <li>🎙️ Quantum Post Interview #1 goes live</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- July 2025 --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| JULY 2025 — GROWTH PHASE | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-8"> | |
| <div> | |
| <h3 class="font-bold text-purple-300">🧠 Thought Leadership</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-white"> | |
| <li>🎤 Finalize & announce KOL Speaker Lineup</li> | |
| <li>Promote Web3District @ SBC Track</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-purple-300">🏁 Quest Mechanics</h3> | |
| <ul class="list-disc pl-5 space-y-1 mt-2 text-white"> | |
| <li>⚡ Weekly "boss quests" & mid-season leaderboard</li> | |
| <li>📦 Add SBC merch & NFTs</li> | |
| </ul> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <h3 class="font-bold text-purple-300">📣 Media & Reporting</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-purple-100"> | |
| <li>📢 2nd PR Wave – highlight speakers + prizes</li> | |
| <li>🎥 Quantum Post Interview #2 drops</li> | |
| <li>📊 Begin weekly reporting to SBC</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- August 2025 --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| AUGUST 2025 — INTENSIFICATION PHASE | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-8"> | |
| <div> | |
| <h3 class="font-bold text-purple-300">💥 Quest Expansion</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-purple-100"> | |
| <li>🧭 Launch Lisboa Web3 DeQuests teaser quests</li> | |
| <li>🧵 Integrate partner-sponsored quests</li> | |
| <li>🛠️ Print & deploy NFC tag stickers IRL</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-purple-300">📣 Final Campaign Push</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2 text-purple-100"> | |
| <li>📺 Quantum Post Interview #3</li> | |
| <li>🧾 "Last 200 VIP entries" campaign</li> | |
| <li>📰 Final PR burst to 15+ media outlets</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-4 p-3 bg-purple-800/50 rounded-lg border border-purple-700/50"> | |
| <p class="text-xs text-purple-300">📰 Featured Media: Decrypt, BeInCrypto, Cointelegraph, BSC News</p> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- September 1-15 --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| SEPTEMBER 1-15 — ACTIVATION PHASE | |
| </div> | |
| <ul class="list-none pl-0 space-y-2 mt-8 text-purple-100"> | |
| <li>🧠 Drop exclusive quests (meet Gary Vee backstage)</li> | |
| <li>🚪 Launch DeFi Dash full citywide experience</li> | |
| <li>📲 Deploy mobile leaderboard & TG share UI</li> | |
| <li>💻 Add "Meet at Web3District HQ" Quest</li> | |
| <li>📦 Final merch kits prepared for winners</li> | |
| <li>📊 Prep final reports & community metrics</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- SBC Summit --> | |
| <div class="mb-16 relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50" data-aos="fade-up"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| SEPTEMBER 16-18 — SBC SUMMIT LIVE | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-8"> | |
| <div> | |
| <h3 class="font-bold text-purple-300">📍 On-Site Activations</h3> | |
| <ul class="list-disc pl-5 space-y-1 mt-2 text-purple-100"> | |
| <li>🧭 Quest Checkpoint Booth</li> | |
| <li>🎙️ Web3District @ SBC Track</li> | |
| <li>🥂 VIP Office (Liberdade Ave)</li> | |
| </ul> | |
| </div> | |
| <div class="bg-purple-900/50 p-4 rounded-lg md:col-span-2"> | |
| <h3 class="font-bold text-purple-300">🎙️ Featured Speakers</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2"> | |
| <li>Gary Vee Keynote</li> | |
| <li>Lisbon Web3 x Culture x Future Speakers</li> | |
| <li>🎉 Prize Ceremony + Final Leaderboard</li> | |
| <li>📸 Real-time capture for social</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Post-Event --> | |
| <div class="relative flex timeline-item"> | |
| <div class="hidden md:block absolute -left-4 top-4 w-8 h-8 rounded-full bg-gradient-to-r from-purple-start to-fuchsia-end flex items-center justify-center z-10"></div> | |
| <div class="bg-gradient-to-br from-purple-900 to-fuchsia-900 text-white p-6 rounded-2xl shadow-lg w-full relative bg-gray-900/80 backdrop-blur-sm border border-purple-700/50"> | |
| <div class="absolute -top-3 left-1/2 -translate-x-1/2 bg-gradient-to-r from-purple-start to-fuchsia-end text-white text-sm font-bold px-4 py-1 rounded-full whitespace-nowrap"> | |
| OCTOBER 2025 — POST EVENT | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-4 mt-8"> | |
| <div> | |
| <h3 class="font-bold text-purple-300">🌍 Rewards & Content</h3> | |
| <ul class="list-none pl-0 space-y-1 mt-2"> | |
| <li>Distribute NFT Certificates</li> | |
| <li>🎥 Publish Behind-the-Scenes Video</li> | |
| <li>📰 Summit Edition Quantum Post</li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h3 class="font-bold text-purple-300">📢 Final Communication</h3> | |
| <ul class="list-disc pl-5 space-y-1 mt-2"> | |
| <li>Final push on Telegram, Twitter, IG</li> | |
| <li>📬 Email newsletter blast</li> | |
| <li>🗓️ Set stage for 2026 Quest</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="mt-6 p-4 bg-purple-900/50 rounded-xl border border-purple-700/50"> | |
| <h3 class="font-bold text-purple-300 mb-2">🎯 Campaign Results</h3> | |
| <p class="text-purple-100">29K+ SBC Brand global awareness</p> | |
| <p class="text-purple-100">10% SBC Gaming Twitter Growth</p> | |
| <p class="text-purple-100">700+ Telegram Subscribers</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Join Section --> | |
| <section id="join" class="py-20 bg-gradient-to-br from-purple-900 to-fuchsia-900"> | |
| <div class="container mx-auto px-4"> | |
| <div class="max-w-3xl mx-auto text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-white mb-6">Ready to Join the Web3 Quest?</h2> | |
| <p class="text-xl text-purple-200 mb-8"> | |
| Be part of the most innovative phygital campaign merging Web3 culture and gaming excellence | |
| </p> | |
| <div class="text-center mt-2"> | |
| <span class="text-xs text-purple-300 bg-purple-900/50 px-2 py-1 rounded-full">UPDATING NEW QUESTS</span> | |
| </div> | |
| <div class="mt-12 flex justify-center space-x-6 text-purple-300"> | |
| <a href="#" class="hover:text-white"><i class="ph ph-twitter-logo text-2xl"></i></a> | |
| <a href="#" class="hover:text-white"><i class="ph ph-telegram-logo text-2xl"></i></a> | |
| <a href="#" class="hover:text-white"><i class="ph ph-instagram-logo text-2xl"></i></a> | |
| <a href="#" class="hover:text-white"><i class="ph ph-linkedin-logo text-2xl"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 border-t border-purple-900 py-10"> | |
| <div class="container mx-auto px-4"> | |
| <div class="flex flex-col-reverse md:flex-row justify-between items-center"> | |
| <div class="mt-6 md:mt-0"> | |
| <div class="flex items-center"> | |
| <div class="bg-gradient-to-r from-purple-start to-fuchsia-end w-8 h-8 rounded-full mr-3"></div> | |
| <span class="text-xl font-bold">SBCxWeb3District</span> | |
| </div> | |
| <p class="text-purple-300 text-sm mt-2">Official Partnership 2025 • All rights reserved</p> | |
| </div> | |
| <div class="text-center mb-6 md:mb-0"> | |
| <button id="toggleDetails" class="bg-gradient-to-r from-purple-start to-fuchsia-end text-white font-bold py-2 px-4 rounded-full transition-all transform hover:scale-105 text-sm"> | |
| Show Detailed Information | |
| </button> | |
| </div> | |
| <div class="text-purple-300 text-sm"> | |
| SBC Summit: September 16-18, 2025 • Lisbon, Portugal | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <!-- Video Modal --> | |
| <div id="videoModal" class="fixed inset-0 z-50 flex items-center justify-center bg-black bg-opacity-80 hidden"> | |
| <div class="relative w-full max-w-4xl mx-4"> | |
| <button id="closeModal" class="absolute -top-10 right-0 text-white hover:text-purple-300 text-2xl"> | |
| <i class="ph ph-x"></i> | |
| </button> | |
| <div class="aspect-w-16 aspect-h-9"> | |
| <video id="videoPlayer" class="w-full h-96 md:h-[32rem] rounded-lg" controls> | |
| <source src="https://drive.google.com/uc?export=download&id=1nVi1lALKDSSFVNFlYUrw56b4iK2EwSd7" type="video/mp4"> | |
| Your browser does not support the video tag. | |
| </video> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Floating Quest Button --> | |
| <button class="fixed bottom-6 right-6 bg-gradient-to-r from-purple-start to-fuchsia-end text-white w-14 h-14 rounded-full shadow-2xl flex items-center justify-center hover:scale-110 transition-all z-50"> | |
| <i class="ph ph-flag text-2xl"></i> | |
| </button> | |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> | |
| <script> | |
| // Toggle hidden sections | |
| const toggleBtn = document.getElementById('toggleDetails'); | |
| const hiddenSections = ['deliverables-section', 'roadmap-section']; | |
| toggleBtn.addEventListener('click', function() { | |
| let shouldShow = false; | |
| // Check current state - if any section is hidden, we'll show them | |
| hiddenSections.forEach(id => { | |
| const section = document.getElementById(id); | |
| if (section.classList.contains('hidden')) { | |
| shouldShow = true; | |
| } | |
| }); | |
| // Toggle sections based on current state | |
| hiddenSections.forEach(id => { | |
| const section = document.getElementById(id); | |
| if (shouldShow) { | |
| section.classList.remove('hidden'); | |
| } else { | |
| section.classList.add('hidden'); | |
| } | |
| if (shouldShow && id === 'deliverables-section') { | |
| // Smooth scroll to first section when showing | |
| setTimeout(() => { | |
| section.scrollIntoView({ behavior: 'smooth' }); | |
| }, 100); | |
| } | |
| }); | |
| // Update button text | |
| toggleBtn.textContent = shouldShow ? | |
| 'Hide Detailed Information' : | |
| 'Show Detailed Information'; | |
| }); | |
| // Mobile menu toggle | |
| const mobileMenuButton = document.getElementById('mobileMenuButton'); | |
| const mobileMenu = document.getElementById('mobileMenu'); | |
| mobileMenuButton.addEventListener('click', () => { | |
| mobileMenu.classList.toggle('hidden'); | |
| if (mobileMenu.classList.contains('hidden')) { | |
| mobileMenuButton.innerHTML = '<i class="ph ph-list text-2xl"></i>'; | |
| } else { | |
| mobileMenuButton.innerHTML = '<i class="ph ph-x text-2xl"></i>'; | |
| } | |
| }); | |
| // Close mobile menu when clicking on a menu item | |
| document.querySelectorAll('#mobileMenu button').forEach(button => { | |
| button.addEventListener('click', () => { | |
| mobileMenu.classList.add('hidden'); | |
| mobileMenuButton.innerHTML = '<i class="ph ph-list text-2xl"></i>'; | |
| }); | |
| }); | |
| // Smooth scroll to section | |
| function scrollToSection(sectionId) { | |
| const section = document.getElementById(sectionId); | |
| if (section) { | |
| window.scrollTo({ | |
| top: section.offsetTop - 80, | |
| behavior: 'smooth' | |
| }); | |
| } | |
| } | |
| // Initialize AOS for scroll animations | |
| AOS.init({ | |
| duration: 800, | |
| once: false, | |
| mirror: true | |
| }); | |
| // Custom roadmap scroll handling | |
| let lastScrollTop = 0; | |
| const roadmapItems = document.querySelectorAll('.relative.flex.mb-16'); | |
| // Enhanced parallax effect | |
| document.addEventListener('scroll', function() { | |
| // Handle roadmap items visibility | |
| roadmapItems.forEach(item => { | |
| if (isElementInViewport(item)) { | |
| item.style.opacity = '1'; | |
| item.style.transform = 'translateY(0)'; | |
| item.style.transition = 'all 0.3s ease-out'; | |
| } | |
| }); | |
| lastScrollTop = st <= 0 ? 0 : st; | |
| const scrollY = window.scrollY; | |
| const parallaxElements = document.querySelectorAll('.parallax-bg'); | |
| parallaxElements.forEach(element => { | |
| let depth = 0; | |
| if (element.style.transform.includes('-1px')) { | |
| depth = 0.5; | |
| element.style.transform = `translate3d(0, ${scrollY * depth}px, -1px) scale(2)`; | |
| } else if (element.style.transform.includes('-0.5px')) { | |
| depth = 0.3; | |
| element.style.transform = `translate3d(0, ${scrollY * depth}px, -0.5px) scale(1.5)`; | |
| } else { | |
| depth = 0.1; | |
| element.style.transform = `translate3d(0, ${scrollY * depth}px, 0)`; | |
| } | |
| }); | |
| // Fade in effect for sections | |
| document.querySelectorAll('section').forEach(section => { | |
| const sectionTop = section.offsetTop; | |
| const sectionHeight = section.offsetHeight; | |
| const scrollPosition = window.scrollY + window.innerHeight; | |
| const sectionBottom = sectionTop + sectionHeight; | |
| // Only apply fade when section is entering viewport | |
| if (scrollPosition > sectionTop && window.scrollY < sectionBottom) { | |
| const distanceFromTop = scrollPosition - sectionTop; | |
| const opacity = Math.min(1, distanceFromTop / (sectionHeight * 0.5)); | |
| section.style.opacity = opacity; | |
| } | |
| }); | |
| }); | |
| // Helper function to check if element is in viewport | |
| function isElementInViewport(el) { | |
| const rect = el.getBoundingClientRect(); | |
| return ( | |
| rect.top <= (window.innerHeight || document.documentElement.clientHeight) && | |
| rect.bottom >= 0 | |
| ); | |
| } | |
| // Initialize with scroll | |
| window.dispatchEvent(new Event('scroll')); | |
| // Confetti creation on hover | |
| const confettiTriggers = document.querySelectorAll('.confetti-trigger'); | |
| confettiTriggers.forEach(trigger => { | |
| trigger.addEventListener('mouseenter', (e) => { | |
| const colors = ['#00f5ff', '#b300ff', '#ff00b3', '#ffffff']; | |
| const rect = e.target.getBoundingClientRect(); | |
| const centerX = rect.left + rect.width / 2; | |
| // Create 30 confetti pieces | |
| for (let i = 0; i < 30; i++) { | |
| const confetti = document.createElement('div'); | |
| confetti.className = 'confetti'; | |
| confetti.style.left = `${centerX - 5 + Math.random() * 100 - 50}px`; | |
| confetti.style.top = `${rect.top - 10}px`; | |
| confetti.style.backgroundColor = colors[Math.floor(Math.random() * colors.length)]; | |
| confetti.style.animationDuration = `${1 + Math.random() * 2}s`; | |
| confetti.style.width = `${5 + Math.random() * 10}px`; | |
| confetti.style.height = `${5 + Math.random() * 10}px`; | |
| document.body.appendChild(confetti); | |
| // Remove confetti after animation | |
| setTimeout(() => { | |
| confetti.remove(); | |
| }, 3000); | |
| } | |
| }); | |
| // Video Modal Handling | |
| const videoModal = document.getElementById('videoModal'); | |
| const watchTrailerBtn = document.getElementById('watchTrailer'); | |
| const closeModalBtn = document.getElementById('closeModal'); | |
| const videoPlayer = document.getElementById('videoPlayer'); | |
| watchTrailerBtn.addEventListener('click', () => { | |
| videoModal.classList.remove('hidden'); | |
| document.body.style.overflow = 'hidden'; | |
| videoPlayer.play(); | |
| }); | |
| closeModalBtn.addEventListener('click', () => { | |
| videoPlayer.pause(); | |
| videoModal.classList.add('hidden'); | |
| document.body.style.overflow = ''; | |
| }); | |
| // Close modal when clicking outside | |
| videoModal.addEventListener('click', (e) => { | |
| if (e.target === videoModal) { | |
| videoPlayer.pause(); | |
| videoModal.classList.add('hidden'); | |
| document.body.style.overflow = ''; | |
| } | |
| }); | |
| </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=web3district/sbcxweb3dstrict" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |