:root { --primary-glow: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15), rgba(255, 255, 255, 0)); }
body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #f9fafb; color: #111827; overflow-x: hidden; }
::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: #f3f4f6; } ::-webkit-scrollbar-thumb { background: #9ca3af; border-radius: 5px; } ::-webkit-scrollbar-thumb:hover { background: #4b5563; }

#tsparticles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }

.glass-card { background: rgba(255, 255, 255, 0.65); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.8); box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03), inset 0 0 20px rgba(255, 255, 255, 0.5); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.glass-card:hover:not(.no-hover) { transform: translateY(-8px) scale(1.01); background: rgba(255, 255, 255, 0.85); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 15px rgba(56, 189, 248, 0.2); border-color: #fff; }

.blink-card { position: relative; overflow: hidden; border: 2px solid rgba(14, 165, 233, 0.5); }
.blink-card::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(to right, transparent, rgba(14, 165, 233, 0.1), transparent); transform: rotate(45deg); animation: shimmer 3s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }

.btn-shine { position: relative; overflow: hidden; z-index: 1; }
.btn-shine::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent); transition: all 0.6s; z-index: -1; }
.btn-shine:hover::before { left: 100%; }

.animated-gradient-text { background: linear-gradient(to right, #2563eb, #9333ea, #db2777, #2563eb); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradient-flow 4s linear infinite; }
@keyframes gradient-flow { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.float-anim { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@keyframes bounce-in-from-top { 0% { opacity: 0; transform: translateY(-200px) scale(0.3); } 60% { opacity: 1; transform: translateY(20px) scale(1.05); } 80% { transform: translateY(-5px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } }
.fab-bounce-in { opacity: 0; animation: bounce-in-from-top 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.modal-bg { background-color: rgba(255, 255, 255, 0.98) !important; border: 1px solid #f3f4f6; }

.slide { transition: opacity 1s ease-in-out; }
.loader { border: 4px solid #f3f3f3; border-top: 4px solid #3498db; border-radius: 50%; width: 30px; height: 30px; animation: spin 1s linear infinite; margin: auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
