@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap'); :root { --primary-500: #a855f7; --primary-600: #9333ea; --secondary-500: #06b6d4; --secondary-600: #0891b2; --accent-500: #ec4899; } * { box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: #000; } h1, h2, h3 { font-family: 'Orbitron', monospace; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } @keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } @keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.5); } 50% { box-shadow: 0 0 40px rgba(168, 85, 247, 0.8), 0 0 60px rgba(6, 182, 212, 0.6); } } .animate-float { animation: float 6s ease-in-out infinite; } .animate-spin-slow { animation: spin-slow 20s linear infinite; } .animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; } .animate-fade-in { animation: fadeIn 1s ease-in; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } #quantumCanvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.7; } .glassmorphism { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); } .neon-border { box-shadow: 0 0 5px var(--primary-500), 0 0 10px var(--primary-500), 0 0 15px var(--primary-500), 0 0 20px var(--secondary-500); } .gradient-text { background: linear-gradient(45deg, var(--primary-500), var(--secondary-500), var(--accent-500)); background-size: 200% 200%; animation: gradient 3s ease infinite; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.1); } ::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary-500), var(--secondary-500)); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: linear-gradient(var(--primary-600), var(--secondary-600)); }