u-memecoin / index.html
chiminaca's picture
Add 2 files
b22b011 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MEMEVERSE | The Next 20x SOL MemeCoin</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=Press+Start+2P&family=Rubik+Mono+One&display=swap');
body {
background-color: #0f0e17;
font-family: 'Press Start 2P', cursive;
color: #fff;
overflow-x: hidden;
}
.pixel-art {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
.glow {
animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
from {
text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #00f7ff, 0 0 20px #00f7ff;
}
to {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00f7ff, 0 0 40px #00f7ff;
}
}
.coin-spin {
animation: spin 4s linear infinite;
}
@keyframes spin {
0% { transform: rotateY(0deg); }
100% { transform: rotateY(360deg); }
}
.pixel-border {
border: 4px solid #fff;
box-shadow: 8px 8px 0 rgba(255,255,255,0.3);
position: relative;
}
.pixel-border::before {
content: "";
position: absolute;
top: -8px;
left: -8px;
right: -8px;
bottom: -8px;
border: 4px solid #ff00e6;
z-index: -1;
}
.btn-pixel {
position: relative;
display: inline-block;
padding: 15px 30px;
color: white;
text-transform: uppercase;
letter-spacing: 4px;
text-decoration: none;
font-size: 12px;
overflow: hidden;
transition: 0.2s;
border: none;
background: #ff00e6;
box-shadow: 5px 5px 0px #fff;
}
.btn-pixel:hover {
box-shadow: none;
transform: translate(5px, 5px);
transition: all 0.2s ease;
cursor: pointer;
}
.meme-char {
transition: all 0.3s ease;
}
.meme-char:hover {
transform: scale(1.1) rotate(5deg);
filter: drop-shadow(0 0 10px #ff00e6);
}
.roadmap-item {
position: relative;
padding-left: 40px;
margin-bottom: 30px;
}
.roadmap-item::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 30px;
height: 30px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff00e6"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>');
background-size: contain;
}
.countdown-box {
background: rgba(255,255,255,0.1);
border: 3px solid #fff;
padding: 10px;
margin: 0 5px;
min-width: 80px;
}
.tokenomics-item {
position: relative;
padding-left: 30px;
margin-bottom: 15px;
}
.tokenomics-item::before {
content: "■";
position: absolute;
left: 0;
color: #ff00e6;
font-size: 20px;
}
</style>
</head>
<body class="min-h-screen">
<!-- Header -->
<header class="py-6 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Logo" class="h-16 w-16 pixel-art">
<h1 class="text-2xl md:text-3xl ml-4 glow">MEMEVERSE</h1>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-8">
<li><a href="#about" class="hover:text-pink-400 transition">ABOUT</a></li>
<li><a href="#tokenomics" class="hover:text-pink-400 transition">TOKENOMICS</a></li>
<li><a href="#roadmap" class="hover:text-pink-400 transition">ROADMAP</a></li>
<li><a href="#buy" class="hover:text-pink-400 transition">HOW TO BUY</a></li>
</ul>
</nav>
<button class="md:hidden text-2xl">
<i class="fas fa-bars"></i>
</button>
</div>
<!-- Floating pixel characters -->
<img src="https://i.imgur.com/8QZqX9k.png" alt="Pixel character" class="absolute top-20 left-10 w-24 h-24 pixel-art meme-char" style="transform: rotate(-15deg);">
<img src="https://i.imgur.com/5t6sL9p.png" alt="Pixel character" class="absolute top-1/4 right-20 w-20 h-20 pixel-art meme-char" style="transform: rotate(10deg);">
<img src="https://i.imgur.com/3vQx7Yj.png" alt="Pixel character" class="absolute bottom-10 left-1/4 w-16 h-16 pixel-art meme-char" style="transform: rotate(-5deg);">
</header>
<!-- Hero Section -->
<section class="py-20 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 z-10">
<h2 class="text-3xl md:text-5xl lg:text-6xl mb-6 leading-tight">
THE NEXT <span class="text-pink-400">20x</span> MEME COIN ON <span class="text-green-400">SOLANA</span>
</h2>
<p class="text-lg mb-8 opacity-80">
Join the MEMEVERSE revolution! Our pixel-powered metaverse is taking over Solana.
Early investors become legends. Don't miss your chance to 20x your bag!
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="btn-pixel">
BUY NOW <i class="fas fa-rocket ml-2"></i>
</button>
<button class="btn-pixel bg-blue-500">
JOIN TG <i class="fab fa-telegram ml-2"></i>
</button>
</div>
<div class="mt-10">
<h3 class="text-xl mb-4">PRESALE ENDS IN:</h3>
<div class="flex">
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="days">03</div>
<div class="text-sm">DAYS</div>
</div>
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="hours">12</div>
<div class="text-sm">HOURS</div>
</div>
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="minutes">45</div>
<div class="text-sm">MIN</div>
</div>
<div class="countdown-box text-center">
<div class="text-3xl font-bold" id="seconds">30</div>
<div class="text-sm">SEC</div>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 flex justify-center z-10">
<div class="relative">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="w-64 h-64 pixel-art coin-spin">
<div class="absolute -bottom-10 -right-10 bg-pink-500 text-white px-4 py-2 rotate-6 pixel-border">
<span class="text-xl">20x POTENTIAL!</span>
</div>
</div>
</div>
</div>
<!-- Animated background elements -->
<div class="absolute top-0 left-0 w-full h-full overflow-hidden z-0">
<div class="absolute top-20 right-20 w-40 h-40 border-4 border-white opacity-10"></div>
<div class="absolute bottom-40 left-40 w-20 h-20 border-4 border-pink-500 opacity-10"></div>
<div class="absolute top-1/3 left-1/4 w-32 h-32 border-4 border-blue-400 opacity-10"></div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 px-4 md:px-10 lg:px-20 bg-gray-900 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
WELCOME TO <span class="text-pink-400">MEMEVERSE</span>
</h2>
<div class="flex flex-col lg:flex-row items-center gap-12">
<div class="lg:w-1/2">
<div class="p-8 pixel-border bg-gray-800">
<h3 class="text-2xl mb-6 text-pink-400">WHAT IS MEMEVERSE?</h3>
<p class="mb-4">
MEMEVERSE is the first pixel-art metaverse meme coin on Solana that combines the nostalgia of 2D gaming with the explosive potential of crypto.
</p>
<p class="mb-4">
We're building more than just a token - we're creating a universe where holders become citizens of a vibrant, ever-expanding pixel world.
</p>
<p>
Early investors don't just get rich - they become legends in the MEMEVERSE lore!
</p>
</div>
</div>
<div class="lg:w-1/2 grid grid-cols-2 gap-4">
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/8QZqX9k.png" alt="Pixel character" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">PIXEL POWER</h4>
<p class="text-sm text-center">Our 2D metaverse brings back classic gaming vibes with a crypto twist</p>
</div>
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/5t6sL9p.png" alt="Pixel character" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">20X POTENTIAL</h4>
<p class="text-sm text-center">Carefully designed tokenomics to maximize growth potential</p>
</div>
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/3vQx7Yj.png" alt="Pixel character" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">COMMUNITY FIRST</h4>
<p class="text-sm text-center">Your voice shapes the MEMEVERSE future through DAO voting</p>
</div>
<div class="p-4 pixel-border bg-gray-800 flex flex-col items-center">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="w-24 h-24 pixel-art mb-4">
<h4 class="text-lg mb-2">SOLANA SPEED</h4>
<p class="text-sm text-center">Lightning-fast transactions with near-zero fees</p>
</div>
</div>
</div>
</div>
</section>
<!-- Tokenomics Section -->
<section id="tokenomics" class="py-20 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
<span class="text-pink-400">TOKENOMICS</span> THAT MAKE SENSE
</h2>
<div class="flex flex-col lg:flex-row gap-12 items-center">
<div class="lg:w-1/2">
<div class="p-8 pixel-border bg-gray-900">
<h3 class="text-2xl mb-6 text-pink-400">TOKEN DISTRIBUTION</h3>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Presale (40%)</span>
<span>40%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-pink-500 h-4" style="width: 40%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Liquidity (30%)</span>
<span>30%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-blue-500 h-4" style="width: 30%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Marketing (15%)</span>
<span>15%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-green-500 h-4" style="width: 15%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Team (10%)</span>
<span>10%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-yellow-500 h-4" style="width: 10%"></div>
</div>
</div>
<div class="mb-6">
<div class="flex justify-between mb-2">
<span>Community Rewards (5%)</span>
<span>5%</span>
</div>
<div class="w-full bg-gray-700 h-4">
<div class="bg-purple-500 h-4" style="width: 5%"></div>
</div>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="p-8 pixel-border bg-gray-900">
<h3 class="text-2xl mb-6 text-pink-400">WHY INVEST?</h3>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">LOW TAX, HIGH REWARDS</h4>
<p>Only 5% tax (3% liquidity, 2% marketing) ensures smooth trading while funding growth</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">LOCKED LIQUIDITY</h4>
<p>Initial liquidity locked for 6 months, with plans to extend based on community vote</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">CONTRACT RENOUNCED</h4>
<p>Full transparency with renounced contract after launch</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">COMMUNITY DRIVEN</h4>
<p>Major decisions made by token holders through snapshot voting</p>
</div>
<div class="tokenomics-item">
<h4 class="text-lg mb-2">DEFLATIONARY MECHANICS</h4>
<p>Regular token burns from transaction fees increase scarcity over time</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Roadmap Section -->
<section id="roadmap" class="py-20 px-4 md:px-10 lg:px-20 bg-gray-900 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
OUR <span class="text-pink-400">PIXEL-POWERED</span> JOURNEY
</h2>
<div class="relative">
<!-- Timeline line -->
<div class="hidden md:block absolute left-1/2 top-0 h-full w-1 bg-pink-500 transform -translate-x-1/2"></div>
<div class="space-y-16">
<!-- Phase 1 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 md:pr-16 mb-8 md:mb-0 text-right">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 1: LAUNCH</h3>
<ul class="space-y-2">
<li class="roadmap-item">Token creation & smart contract audit</li>
<li class="roadmap-item">Presale on PinkSale</li>
<li class="roadmap-item">DEX listing (Raydium)</li>
<li class="roadmap-item">Community building</li>
<li class="roadmap-item">First 1000 holders</li>
</ul>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-pink-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q1 2023</span>
</div>
<img src="https://i.imgur.com/8QZqX9k.png" alt="Pixel character" class="absolute -top-10 -right-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
<!-- Phase 2 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 order-1 md:pl-16 mb-8 md:mb-0">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 2: GROWTH</h3>
<ul class="space-y-2">
<li class="roadmap-item">CEX listings (Gate.io, MEXC)</li>
<li class="roadmap-item">Marketing push (influencers, AMAs)</li>
<li class="roadmap-item">First MEMEVERSE mini-game release</li>
<li class="roadmap-item">10,000+ holders</li>
<li class="roadmap-item">Merch store launch</li>
</ul>
</div>
</div>
<div class="md:w-1/2 order-0 md:order-2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-blue-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q2 2023</span>
</div>
<img src="https://i.imgur.com/5t6sL9p.png" alt="Pixel character" class="absolute -bottom-10 -left-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
<!-- Phase 3 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 md:pr-16 mb-8 md:mb-0 text-right">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 3: EXPANSION</h3>
<ul class="space-y-2">
<li class="roadmap-item">MEMEVERSE metaverse alpha release</li>
<li class="roadmap-item">NFT character collection</li>
<li class="roadmap-item">Top 10 CEX listing</li>
<li class="roadmap-item">50,000+ holders</li>
<li class="roadmap-item">DAO governance implementation</li>
</ul>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-green-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q3 2023</span>
</div>
<img src="https://i.imgur.com/3vQx7Yj.png" alt="Pixel character" class="absolute -top-10 -right-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
<!-- Phase 4 -->
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 order-1 md:pl-16 mb-8 md:mb-0">
<div class="p-6 pixel-border bg-gray-800">
<h3 class="text-2xl text-pink-400 mb-4">PHASE 4: DOMINATION</h3>
<ul class="space-y-2">
<li class="roadmap-item">Full MEMEVERSE game ecosystem</li>
<li class="roadmap-item">Play-to-earn mechanics</li>
<li class="roadmap-item">Binance/Kucoin listing</li>
<li class="roadmap-item">100,000+ holders</li>
<li class="roadmap-item">Top 100 market cap</li>
</ul>
</div>
</div>
<div class="md:w-1/2 order-0 md:order-2 flex justify-center">
<div class="relative">
<div class="w-40 h-40 bg-yellow-500 rounded-full flex items-center justify-center pixel-border">
<span class="text-xl">Q4 2023</span>
</div>
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="absolute -bottom-10 -left-10 w-20 h-20 pixel-art">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- How to Buy Section -->
<section id="buy" class="py-20 px-4 md:px-10 lg:px-20 relative overflow-hidden">
<div class="container mx-auto">
<h2 class="text-3xl md:text-4xl text-center mb-16">
HOW TO <span class="text-pink-400">BUY</span> $MEME
</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="p-6 pixel-border bg-gray-900 relative">
<div class="absolute -top-6 -left-6 w-12 h-12 bg-pink-500 rounded-full flex items-center justify-center">
<span class="text-xl">1</span>
</div>
<h3 class="text-2xl mb-4 text-pink-400">GET SOLANA</h3>
<p class="mb-4">Buy SOL on any major exchange (Binance, Coinbase, Kraken) or use MoonPay/Ramp directly in Phantom wallet</p>
<div class="flex justify-center mt-6">
<img src="https://i.imgur.com/vhS4QZQ.png" alt="SOL Logo" class="w-16 h-16 pixel-art">
</div>
</div>
<!-- Step 2 -->
<div class="p-6 pixel-border bg-gray-900 relative">
<div class="absolute -top-6 -left-6 w-12 h-12 bg-blue-500 rounded-full flex items-center justify-center">
<span class="text-xl">2</span>
</div>
<h3 class="text-2xl mb-4 text-pink-400">SET UP WALLET</h3>
<p class="mb-4">Download Phantom wallet (Chrome extension or mobile app). Send SOL to your wallet address</p>
<div class="flex justify-center mt-6">
<img src="https://i.imgur.com/7mQ5LqQ.png" alt="Phantom Logo" class="w-16 h-16 pixel-art">
</div>
</div>
<!-- Step 3 -->
<div class="p-6 pixel-border bg-gray-900 relative">
<div class="absolute -top-6 -left-6 w-12 h-12 bg-green-500 rounded-full flex items-center justify-center">
<span class="text-xl">3</span>
</div>
<h3 class="text-2xl mb-4 text-pink-400">BUY $MEME</h3>
<p class="mb-4">During presale: Connect wallet to PinkSale. After launch: Swap SOL for $MEME on Raydium or Jupiter</p>
<div class="flex justify-center mt-6">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Coin" class="w-16 h-16 pixel-art">
</div>
</div>
</div>
<div class="mt-16 text-center">
<h3 class="text-2xl mb-6">CONTRACT ADDRESS:</h3>
<div class="bg-gray-900 p-4 rounded-lg inline-block max-w-full overflow-x-auto">
<code class="text-sm md:text-base">7x8hZ... (coming soon)</code>
</div>
<p class="mt-4 text-sm opacity-70">Always verify contract address from official channels before buying</p>
</div>
</div>
</section>
<!-- Community Section -->
<section class="py-20 px-4 md:px-10 lg:px-20 bg-gray-900 relative overflow-hidden">
<div class="container mx-auto text-center">
<h2 class="text-3xl md:text-4xl mb-8">
JOIN THE <span class="text-pink-400">MEMEVERSE</span> COMMUNITY
</h2>
<p class="text-xl mb-12 max-w-3xl mx-auto">
Our community is the heart of MEMEVERSE. Join us to get the latest updates, memes, and alpha!
</p>
<div class="flex flex-wrap justify-center gap-6">
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-pink-500 transition flex items-center">
<i class="fab fa-telegram text-3xl mr-3"></i>
<span>TELEGRAM</span>
</a>
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-blue-400 transition flex items-center">
<i class="fab fa-twitter text-3xl mr-3"></i>
<span>TWITTER</span>
</a>
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-purple-500 transition flex items-center">
<i class="fab fa-discord text-3xl mr-3"></i>
<span>DISCORD</span>
</a>
<a href="#" class="p-4 pixel-border bg-gray-800 hover:bg-red-500 transition flex items-center">
<i class="fab fa-youtube text-3xl mr-3"></i>
<span>YOUTUBE</span>
</a>
</div>
<div class="mt-16">
<h3 class="text-2xl mb-6">MEME OF THE DAY</h3>
<div class="p-6 pixel-border bg-gray-800 inline-block max-w-full">
<img src="https://i.imgur.com/LkZQq3G.png" alt="Meme" class="w-64 h-64 pixel-art">
<p class="mt-4">"When you buy $MEME at presale and check price after launch"</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-10 px-4 md:px-10 lg:px-20 bg-black text-center">
<div class="container mx-auto">
<div class="flex justify-center mb-6">
<img src="https://i.imgur.com/JQ9w7X5.png" alt="MEMEVERSE Logo" class="h-16 w-16 pixel-art">
</div>
<p class="mb-6">
MEMEVERSE is a community-driven meme token on Solana. Not financial advice. Do your own research.
</p>
<div class="flex justify-center space-x-6 mb-6">
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-telegram"></i></a>
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-discord"></i></a>
<a href="#" class="text-xl hover:text-pink-400"><i class="fab fa-medium"></i></a>
</div>
<p class="text-sm opacity-70">
© 2023 MEMEVERSE. All rights reserved. Not affiliated with Minecraft or Roblox.
</p>
</div>
</footer>
<script>
// Countdown timer
function updateCountdown() {
const now = new Date();
const endDate = new Date();
endDate.setDate(now.getDate() + 3); // 3 days from now
const diff = endDate - now;
const days = Math.floor(diff / (1000 * 60 * 60 * 24));
const hours = Math.floor((diff % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((diff % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((diff % (1000 * 60)) / 1000);
document.getElementById('days').textContent = days.toString().padStart(2, '0');
document.getElementById('hours').textContent = hours.toString().padStart(2, '0');
document.getElementById('minutes').textContent = minutes.toString().padStart(2, '0');
document.getElementById('seconds').textContent = seconds.toString().padStart(2, '0');
}
setInterval(updateCountdown, 1000);
updateCountdown();
// Animate meme characters on scroll
const memeChars = document.querySelectorAll('.meme-char');
function checkScroll() {
memeChars.forEach(char => {
const charPosition = char.getBoundingClientRect().top;
const screenPosition = window.innerHeight / 1.3;
if (charPosition < screenPosition) {
char.style.opacity = '1';
char.style.transform = 'translateY(0)';
}
});
}
window.addEventListener('scroll', checkScroll);
checkScroll();
// Smooth scrolling for navigation
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</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=chiminaca/u-memecoin" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>