| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>$GHOSTIE - The Afterlife of Memecoins</title> |
| | <script src="https://cdn.tailwindcss.com"></script> |
| | <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Bebas+Neue&display=swap"> |
| | <style> |
| | :root { |
| | --ghost-purple: #7E5BEF; |
| | --dark-soul: #1A103D; |
| | --spectral-blue: #00E0FF; |
| | --haunted-gray: #2D2D2D; |
| | --ectoplasm: #C3FCF2; |
| | } |
| | |
| | body { |
| | font-family: 'Inter', sans-serif; |
| | background-color: #0A0618; |
| | color: white; |
| | overflow-x: hidden; |
| | } |
| | |
| | h1, h2, h3, h4 { |
| | font-family: 'Bebas Neue', sans-serif; |
| | letter-spacing: 1px; |
| | } |
| | |
| | .ghost-bg { |
| | background: radial-gradient(ellipse at center, rgba(126, 91, 239, 0.15) 0%, rgba(10, 6, 24, 0) 70%); |
| | } |
| | |
| | .ghost-card { |
| | background: rgba(26, 16, 61, 0.6); |
| | backdrop-filter: blur(10px); |
| | border: 1px solid rgba(126, 91, 239, 0.2); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .ghost-card:hover { |
| | transform: translateY(-5px); |
| | border-color: var(--spectral-blue); |
| | box-shadow: 0 10px 30px rgba(126, 91, 239, 0.3); |
| | } |
| | |
| | .btn-ghost { |
| | background: linear-gradient(90deg, var(--ghost-purple) 0%, #5B2BEF 100%); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .btn-ghost:hover { |
| | transform: translateY(-2px); |
| | box-shadow: 0 10px 20px rgba(126, 91, 239, 0.4); |
| | } |
| | |
| | .btn-outline-ghost { |
| | border: 2px solid var(--ghost-purple); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .btn-outline-ghost:hover { |
| | background: rgba(126, 91, 239, 0.1); |
| | transform: translateY(-2px); |
| | box-shadow: 0 10px 20px rgba(126, 91, 239, 0.2); |
| | } |
| | |
| | .phase-marker { |
| | width: 24px; |
| | height: 24px; |
| | background: var(--ghost-purple); |
| | border-radius: 50%; |
| | position: relative; |
| | } |
| | |
| | .phase-marker::after { |
| | content: ''; |
| | position: absolute; |
| | width: 40px; |
| | height: 40px; |
| | background: rgba(126, 91, 239, 0.2); |
| | border-radius: 50%; |
| | top: -8px; |
| | left: -8px; |
| | } |
| | |
| | @keyframes float { |
| | 0% { transform: translateY(0px); } |
| | 50% { transform: translateY(-15px); } |
| | 100% { transform: translateY(0px); } |
| | } |
| | |
| | .floating { |
| | animation: float 4s ease-in-out infinite; |
| | } |
| | |
| | @keyframes fadeIn { |
| | from { opacity: 0; transform: translateY(20px); } |
| | to { opacity: 1; transform: translateY(0); } |
| | } |
| | |
| | .fade-in { |
| | opacity: 0; |
| | animation: fadeIn 0.8s forwards; |
| | } |
| | |
| | .delay-1 { animation-delay: 0.2s; } |
| | .delay-2 { animation-delay: 0.4s; } |
| | .delay-3 { animation-delay: 0.6s; } |
| | .delay-4 { animation-delay: 0.8s; } |
| | |
| | .ghost-particle { |
| | position: absolute; |
| | background: rgba(195, 252, 242, 0.6); |
| | border-radius: 50%; |
| | filter: blur(2px); |
| | z-index: -1; |
| | } |
| | |
| | .scroll-indicator { |
| | width: 24px; |
| | height: 40px; |
| | border: 2px solid var(--ghost-purple); |
| | border-radius: 12px; |
| | position: relative; |
| | } |
| | |
| | .scroll-indicator::after { |
| | content: ''; |
| | position: absolute; |
| | width: 4px; |
| | height: 8px; |
| | background: var(--ghost-purple); |
| | border-radius: 2px; |
| | top: 6px; |
| | left: 50%; |
| | transform: translateX(-50%); |
| | animation: scroll 2s infinite; |
| | } |
| | |
| | @keyframes scroll { |
| | 0% { top: 6px; opacity: 1; } |
| | 100% { top: 24px; opacity: 0; } |
| | } |
| | </style> |
| | </head> |
| | <body class="min-h-screen"> |
| | |
| | <div id="ghost-particles"></div> |
| | |
| | |
| | <section class="min-h-screen flex items-center justify-center relative overflow-hidden ghost-bg"> |
| | <div class="absolute inset-0 overflow-hidden"> |
| | <div class="absolute top-1/4 left-1/4 w-32 h-32 rounded-full bg-purple-900 opacity-20 blur-3xl"></div> |
| | <div class="absolute top-1/3 right-1/4 w-40 h-40 rounded-full bg-blue-500 opacity-15 blur-3xl"></div> |
| | </div> |
| | |
| | <div class="container mx-auto px-6 py-20 relative z-10"> |
| | <div class="max-w-4xl mx-auto text-center"> |
| | <div class="flex justify-center mb-8 fade-in"> |
| | <div class="text-5xl sm:text-7xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-400 to-blue-400"> |
| | $GHOSTIE |
| | </div> |
| | </div> |
| | |
| | <h1 class="text-4xl sm:text-6xl font-bold mb-6 fade-in"> |
| | Welcome to the Afterlife of Memecoins |
| | </h1> |
| | |
| | <p class="text-xl sm:text-2xl text-gray-300 mb-12 fade-in delay-1"> |
| | $GHOSTIE – You can't rug what's already a ghost. |
| | </p> |
| | |
| | <div class="flex flex-col sm:flex-row gap-4 justify-center fade-in delay-2"> |
| | <a href="https://jup.ag" target="_blank" class="btn-ghost px-8 py-4 rounded-full font-bold text-lg"> |
| | Buy Now |
| | </a> |
| | <a href="https://dexscreener.com" target="_blank" class="btn-outline-ghost px-8 py-4 rounded-full font-bold text-lg"> |
| | View Chart |
| | </a> |
| | </div> |
| | |
| | <div class="mt-20 flex justify-center fade-in delay-3"> |
| | <div class="scroll-indicator"></div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| | |
| | |
| | <section class="py-20 relative"> |
| | <div class="container mx-auto px-6"> |
| | <div class="max-w-4xl mx-auto ghost-card rounded-2xl p-8 sm:p-12"> |
| | <h2 class="text-3xl sm:text-4xl font-bold mb-6 text-center fade-in"> |
| | What is <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-400">$GHOSTIE</span>? |
| | </h2> |
| | |
| | <p class="text-lg sm:text-xl text-gray-300 text-center fade-in delay-1"> |
| | $GHOSTIE is the ghost of every rugged, forgotten, and betrayed token on the blockchain. Born from the ashes of scams and broken dreams, it's a memecoin for the undead degens who refuse to fade away. We don't chase utility. We haunt it. |
| | </p> |
| | </div> |
| | </div> |
| | </section> |
| | |
| | |
| | <section class="py-20 relative"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl sm:text-4xl font-bold mb-16 text-center fade-in"> |
| | Why <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-400">$GHOSTIE</span>? |
| | </h2> |
| | |
| | <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> |
| | <div class="ghost-card rounded-xl p-8 fade-in delay-1"> |
| | <div class="flex items-center gap-4 mb-4"> |
| | <div class="w-12 h-12 rounded-full bg-purple-900 flex items-center justify-center"> |
| | <span class="text-2xl">👻</span> |
| | </div> |
| | <h3 class="text-xl font-bold">Spectral Vault</h3> |
| | </div> |
| | <p class="text-gray-300"> |
| | A community-powered vault that rewards diamond hands and punishes paper souls. |
| | </p> |
| | </div> |
| | |
| | <div class="ghost-card rounded-xl p-8 fade-in delay-2"> |
| | <div class="flex items-center gap-4 mb-4"> |
| | <div class="w-12 h-12 rounded-full bg-blue-900 flex items-center justify-center"> |
| | <span class="text-2xl">🛡️</span> |
| | </div> |
| | <h3 class="text-xl font-bold">Rug-Proof Energy</h3> |
| | </div> |
| | <p class="text-gray-300"> |
| | No presale, no VC, no tax. Just pure ghostly vibes. |
| | </p> |
| | </div> |
| | |
| | <div class="ghost-card rounded-xl p-8 fade-in delay-3"> |
| | <div class="flex items-center gap-4 mb-4"> |
| | <div class="w-12 h-12 rounded-full bg-indigo-900 flex items-center justify-center"> |
| | <span class="text-2xl">🔮</span> |
| | </div> |
| | <h3 class="text-xl font-bold">Transparent & Translucent</h3> |
| | </div> |
| | <p class="text-gray-300"> |
| | 100% of supply launched to the public. We don't hide in the shadows — we are the shadows. |
| | </p> |
| | </div> |
| | |
| | <div class="ghost-card rounded-xl p-8 fade-in delay-4"> |
| | <div class="flex items-center gap-4 mb-4"> |
| | <div class="w-12 h-12 rounded-full bg-cyan-900 flex items-center justify-center"> |
| | <span class="text-2xl">💀</span> |
| | </div> |
| | <h3 class="text-xl font-bold">Ghost Army</h3> |
| | </div> |
| | <p class="text-gray-300"> |
| | Our holders are a legion of cursed souls, memeing $GHOSTIE into the mortal realm. |
| | </p> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| | |
| | |
| | <section class="py-20 relative ghost-bg"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl sm:text-4xl font-bold mb-16 text-center fade-in"> |
| | <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-400">Tokenomics</span> |
| | </h2> |
| | |
| | <div class="max-w-2xl mx-auto ghost-card rounded-2xl p-8 sm:p-12"> |
| | <div class="grid grid-cols-1 sm:grid-cols-2 gap-8"> |
| | <div class="fade-in delay-1"> |
| | <h3 class="text-xl font-bold mb-2 text-purple-300">Chain</h3> |
| | <p class="text-2xl font-bold">Solana</p> |
| | </div> |
| | |
| | <div class="fade-in delay-2"> |
| | <h3 class="text-xl font-bold mb-2 text-purple-300">Supply</h3> |
| | <p class="text-2xl font-bold">1,000,000,000</p> |
| | </div> |
| | |
| | <div class="fade-in delay-3"> |
| | <h3 class="text-xl font-bold mb-2 text-purple-300">Tax</h3> |
| | <p class="text-2xl font-bold">0%</p> |
| | </div> |
| | |
| | <div class="fade-in delay-4"> |
| | <h3 class="text-xl font-bold mb-2 text-purple-300">LP Burned</h3> |
| | <p class="text-2xl font-bold">Yes</p> |
| | </div> |
| | |
| | <div class="sm:col-span-2 fade-in delay-1"> |
| | <h3 class="text-xl font-bold mb-2 text-purple-300">Contract Renounced</h3> |
| | <p class="text-2xl font-bold">Forever ghosted</p> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| | |
| | |
| | <section class="py-20 relative"> |
| | <div class="container mx-auto px-6"> |
| | <h2 class="text-3xl sm:text-4xl font-bold mb-16 text-center fade-in"> |
| | Roadmap to the <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-400">Afterlife</span> |
| | </h2> |
| | |
| | <div class="max-w-4xl mx-auto space-y-12"> |
| | <div class="flex gap-6 fade-in delay-1"> |
| | <div class="flex flex-col items-center"> |
| | <div class="phase-marker"></div> |
| | <div class="w-1 h-full bg-gradient-to-b from-purple-500 to-transparent mt-2"></div> |
| | </div> |
| | <div> |
| | <h3 class="text-2xl font-bold mb-4">Phase 1 – Seance Begins</h3> |
| | <ul class="space-y-2 text-gray-300"> |
| | <li>Stealth Launch</li> |
| | <li>Ghost Army Awakens</li> |
| | <li>Haunted X (Twitter) Campaigns</li> |
| | </ul> |
| | </div> |
| | </div> |
| | |
| | <div class="flex gap-6 fade-in delay-2"> |
| | <div class="flex flex-col items-center"> |
| | <div class="phase-marker"></div> |
| | <div class="w-1 h-full bg-gradient-to-b from-purple-500 to-transparent mt-2"></div> |
| | </div> |
| | <div> |
| | <h3 class="text-2xl font-bold mb-4">Phase 2 – Haunt the Blockchain</h3> |
| | <ul class="space-y-2 text-gray-300"> |
| | <li>Viral Memes & Rituals</li> |
| | <li>DEX Listings</li> |
| | <li>Ghostie Sightings on Solana Tools</li> |
| | </ul> |
| | </div> |
| | </div> |
| | |
| | <div class="flex gap-6 fade-in delay-3"> |
| | <div class="flex flex-col items-center"> |
| | <div class="phase-marker"></div> |
| | </div> |
| | <div> |
| | <h3 class="text-2xl font-bold mb-4">Phase 3 – Possess the Masses</h3> |
| | <ul class="space-y-2 text-gray-300"> |
| | <li>Spectral NFT Drop</li> |
| | <li>Haunted dApp Portal</li> |
| | <li>Summon Influencers & Media</li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| | |
| | |
| | <section class="py-20 relative ghost-bg"> |
| | <div class="container mx-auto px-6"> |
| | <div class="max-w-4xl mx-auto text-center"> |
| | <h2 class="text-3xl sm:text-4xl font-bold mb-6 fade-in"> |
| | Join the <span class="text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-400">Ghost Army</span> |
| | </h2> |
| | |
| | <p class="text-xl text-gray-300 mb-12 fade-in delay-1"> |
| | If you've ever been rugged, ghosted, or left for dead… you belong with us. |
| | </p> |
| | |
| | <div class="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-4 gap-4 fade-in delay-2"> |
| | <a href="https://twitter.com/GhostieOnSol" target="_blank" class="ghost-card rounded-xl p-6 flex flex-col items-center hover:border-cyan-400 transition"> |
| | <span class="text-3xl mb-2">🐦</span> |
| | <span class="font-bold">X: @GhostieOnSol</span> |
| | </a> |
| | |
| | <a href="https://jup.ag" target="_blank" class="ghost-card rounded-xl p-6 flex flex-col items-center hover:border-purple-400 transition"> |
| | <span class="text-3xl mb-2">🔄</span> |
| | <span class="font-bold">DEX: Jupiter</span> |
| | </a> |
| | |
| | <a href="https://t.me/ghostieportal" target="_blank" class="ghost-card rounded-xl p-6 flex flex-col items-center hover:border-blue-400 transition"> |
| | <span class="text-3xl mb-2">📢</span> |
| | <span class="font-bold">Telegram</span> |
| | </a> |
| | |
| | <a href="https://dexscreener.com" target="_blank" class="ghost-card rounded-xl p-6 flex flex-col items-center hover:border-green-400 transition"> |
| | <span class="text-3xl mb-2">📊</span> |
| | <span class="font-bold">Live Chart</span> |
| | </a> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| | |
| | |
| | <footer class="py-12 bg-black bg-opacity-50 relative"> |
| | <div class="container mx-auto px-6 text-center"> |
| | <div class="max-w-2xl mx-auto"> |
| | <p class="text-2xl sm:text-3xl font-bold mb-8 text-transparent bg-clip-text bg-gradient-to-r from-purple-400 to-blue-400"> |
| | You can kill a coin, but you can't kill a meme. $GHOSTIE LIVES. FOREVER. |
| | </p> |
| | |
| | <p class="text-sm text-gray-400"> |
| | © 2023 $GHOSTIE. All rights reserved. Not financial advice. |
| | </p> |
| | </div> |
| | </div> |
| | </footer> |
| | |
| | <script> |
| | |
| | function createGhostParticles() { |
| | const container = document.getElementById('ghost-particles'); |
| | const particleCount = 20; |
| | |
| | for (let i = 0; i < particleCount; i++) { |
| | const particle = document.createElement('div'); |
| | particle.className = 'ghost-particle'; |
| | |
| | |
| | const size = Math.random() * 10 + 5; |
| | particle.style.width = `${size}px`; |
| | particle.style.height = `${size}px`; |
| | |
| | |
| | particle.style.left = `${Math.random() * 100}vw`; |
| | particle.style.top = `${Math.random() * 100}vh`; |
| | |
| | |
| | const duration = Math.random() * 20 + 10; |
| | const delay = Math.random() * 5; |
| | particle.style.animation = `float ${duration}s ease-in-out ${delay}s infinite`; |
| | |
| | container.appendChild(particle); |
| | } |
| | } |
| | |
| | |
| | function animateOnScroll() { |
| | const elements = document.querySelectorAll('.fade-in'); |
| | |
| | elements.forEach(el => { |
| | const elTop = el.getBoundingClientRect().top; |
| | const windowHeight = window.innerHeight; |
| | |
| | if (elTop < windowHeight * 0.8) { |
| | el.style.opacity = '1'; |
| | } |
| | }); |
| | } |
| | |
| | |
| | document.addEventListener('DOMContentLoaded', () => { |
| | createGhostParticles(); |
| | animateOnScroll(); |
| | |
| | window.addEventListener('scroll', animateOnScroll); |
| | }); |
| | </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=Tollex/ghostie" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| | </html> |