@import url('https://fonts.googleapis.com/css2?family=Playpen+Sans:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

.font-playpen {
    font-family: 'Playpen Sans', cursive;
}

.font-nunito {
    font-family: 'Nunito Sans', sans-serif;
}

/* Custom animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Custom gradients */
.gradient-bg {
    background: linear-gradient(135deg, #8FD3FF 0%, #E38DC3 50%, #FFD84A 100%);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom shadows */
.custom-shadow {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive text */
@media (max-width: 768px) {
    .responsive-text {
        font-size: 1.5rem;
    }
}

/* Loading animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8FD3FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6EC0FF;
}