/* Custom Styles & Glassmorphism */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    background-color: #f8fafc;
    /* slate-50 */
    color: #1e293b;
    /* slate-800 */
}

/* Light Mode Glass */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    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);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.gradient-text {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    /* Blue to Violet */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 8s ease-in-out infinite;
    animation-delay: 2s;
}

.blob {
    position: absolute;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.6;
}

/* Background Patterns */
.pattern-grid-lg {
    background-image: radial-gradient(currentColor 1px, transparent 1px);
    background-size: 20px 20px;
}