
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&family=Fredoka+One&family=Bubblegum+Sans&display=swap');
body {
    font-family: 'Comic Neue', cursive;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka One', cursive;
}

/* Animation for found items */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.found-item {
    animation: bounce 0.5s ease;
}

/* Print styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .no-print {
        display: none !important;
    }
    
    .print-page {
        page-break-after: always;
    }
    
    .print-page:last-child {
        page-break-after: auto;
    }
}