@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Story+Script&display=swap');
body {
    font-family:'Poppins', sans-serif;
    /* background: linear-gradient(135deg, #003049 0%, #669bbc 100%); */
    background: #FFF;
    min-height: 100vh;
}
h1, h2, h3, h4 {
    font-family: "Story Script", sans-serif;
}
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.result-card {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.result-card.show {
    transform: translateY(0);
    opacity: 1;
}
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}