/* Base Design System */
body {
    font-family: 'Outfit', sans-serif;
    background-color: #0c0d11;
    color: white;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(45, 212, 191, 0.05) 0%, rgba(139, 92, 246, 0.05) 30%, transparent 70%);
}

.neon-text {
    text-shadow: 0 0 15px rgba(45, 212, 191, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-hover:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(45, 212, 191, 0.03);
    border-color: rgba(45, 212, 191, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0c0d11;
}

::-webkit-scrollbar-thumb {
    background: #1e2127;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2dd4bf;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
