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

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

.anime-character {
    position: absolute;
    transition: all 0.3s ease;
    z-index: 10;
}

.search-box {
    transition: all 0.3s ease;
}

.search-box:focus-within {
    transform: translateY(-5px);
}

.search-btn {
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
}

.result-card {
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}