@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Base Styles */
body {
    background-color: #f8fafc;
    color: #1e293b;
    font-family: 'Noto Sans SC', sans-serif;
}

/* Background Animated Blobs for Light theme */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.6;
    animation: float 15s infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: rgba(45, 212, 191, 0.15); /* Teal */
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(14, 165, 233, 0.1); /* Sky blue */
    bottom: 20%;
    right: -100px;
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Base Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }