@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); margin-top: -10px;}
    to { opacity: 1; transform: scale(1); margin-top: 0;}
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out forwards;
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom transitions */
.transition-fast {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selection color */
::selection {
    background: #f9c349;
    color: white;
}
