<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SIXE VIDEO.COM — Premium Video Platform</title> <script src="https://cdn.tailwindcss.com"></script> <script src="https://unpkg.com/lucide@latest"></script> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,500&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: #050505; color: #e5e5e5; overflow-x: hidden; }
/* Nav link underline */ .nav-link { position: relative; } .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #00ffc4; transition: width 0.3s ease; } .nav-link:hover::after { width: 100%; } .nav-link:hover { color: #00ffc4; } SIXE VIDEO.COM
/* CTA button */ .cta-btn { background: linear-gradient(to right, #047857, #059669); box-shadow: 0 0 30px rgba(4,120,87,0.4); transition: all 0.3s ease; position: relative; overflow: hidden; } .cta-btn:hover { box-shadow: 0 0 50px rgba(4,120,87,0.6); transform: translateY(-1px); } .cta-btn::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: shimmer 3s infinite; } meta name="viewport" content="width=device-width
/* Progress bar inside thumbnail */ .thumb-progress { animation: progress-bar 2s ease-out forwards; } SIXE VIDEO.COM — Premium Video Platform<
/* Grid bg */ .grid-bg { background-image: linear-gradient(to right, #80808005 1px, transparent 1px), linear-gradient(to bottom, #80808005 1px, transparent 1px); background-size: 24px 24px; }
<!-- CTA --> <div class
/* Animations */ @keyframes slideInUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } } @keyframes pulse-slow { 0%, 100% { opacity: 0.08; transform: scale(1); } 50% { opacity: 0.14; transform: scale(1.1); } } @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } @keyframes ticker-slide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } @keyframes fade-in { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } @keyframes progress-bar { 0% { width: 0%; } 100% { width: 65%; } } @keyframes count-up { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } @keyframes glow-pulse { 0%, 100% { box-shadow: 0 0 20px rgba(0,255,196,0.1); } 50% { box-shadow: 0 0 40px rgba(0,255,196,0.25); } }