.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 214, 160, 0.2);
}

.text-glow {
    text-shadow: 0 0 20px rgba(6, 214, 160, 0.3);
}

.organic-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transition: border-radius 8s ease-in-out infinite alternate;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.morphing-bg {
    animation: morph 12s ease-in-out infinite;
}

body {
    min-height: max(884px, 100dvh);
    font-family: 'Manrope', sans-serif;
    background-color: #fcfdfd;
}

h1,
h2,
h3 {
    font-family: 'Newsreader', serif;
}

.material-symbols-rounded {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.floating-help.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(1rem);
}
