@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Mochiy+Pop+One&display=swap');

body {
    font-family: 'Fredoka', sans-serif;
}

.sparkling-title {
    font-family: 'Mochiy Pop One', sans-serif;
    text-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.sparkling-text {
    font-family: 'Mochiy Pop One', sans-serif;
    animation: sparkle 2s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes sparkle {
    0%, 100% { filter: brightness(100%); transform: scale(1); }
    50% { filter: brightness(120%); transform: scale(1.02); }
}

.heartbeat-btn {
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3); }
    15% { transform: scale(1.05); box-shadow: 0 20px 30px -5px rgba(236, 72, 153, 0.6); }
    30% { transform: scale(1); box-shadow: 0 10px 15px -3px rgba(236, 72, 153, 0.3); }
    45% { transform: scale(1.05); box-shadow: 0 20px 30px -5px rgba(236, 72, 153, 0.6); }
    100% { transform: scale(1); }
}

.animate-fade-in { animation: fadeIn 0.6s ease-out forwards; }
.animate-zoom-in { animation: zoomIn 0.5s ease-out forwards; }
.animate-bounce-in { animation: bounceIn 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes bounceIn { 
    0% { transform: scale(0); opacity: 0; } 
    60% { transform: scale(1.05); opacity: 1; } 
    100% { transform: scale(1); } 
}

#view-settings.flex { display: flex; opacity: 1; transform: scale(1); }