/* Local Font Fallbacks for Isaac's Game Arcade */
/* Uses system fonts that approximate the original Google Fonts */

/* Fredoka One - Rounded, playful display font */
/* Fallback chain: Similar rounded/playful system fonts */
.font-fredoka,
[style*="Fredoka One"] {
    font-family: 'Fredoka One', 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue',
                 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

/* Kalam - Handwritten style font */
/* Fallback chain: Similar handwritten/casual system fonts */
.font-kalam,
[style*="Kalam"] {
    font-family: 'Kalam', 'Comic Sans MS', 'Chalkboard SE', 'Bradley Hand',
                 'Marker Felt', cursive, sans-serif;
}

/* Global font styling for games */
body {
    font-family: 'Fredoka One', 'Comic Sans MS', -apple-system, BlinkMacSystemFont,
                 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure game titles use display font */
h1, h2, h3, .game-title {
    font-family: 'Fredoka One', 'Comic Sans MS', 'Chalkboard SE',
                 -apple-system, BlinkMacSystemFont, sans-serif;
}
