/* Estilos Personalizados e Infantiles para MateMágicas 7 */

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

:root {
    --font-main: 'Fredoka', 'Quicksand', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-main);
    user-select: none;
    -webkit-user-select: none;
}

/* Efectos y animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Estilos de Impresión (Fichas PDF estilo original) */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    header, nav, #numpad-container, #game-section, #stickers-section, #btn-print-pdf, #btn-refresh-pdf, footer {
        display: none !important;
    }

    #pdf-section {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .pdf-print-wrapper {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
    }

    .no-print {
        display: none !important;
    }
}
