/* iOS Emoji Font Configuration */
@import url('https://cdn.jsdelivr.net/gh/jdecked/twemoji@15.0.3/dist/twemoji.min.css');

/* Force iOS emoji rendering using Twemoji (Twitter's iOS-style emojis) */
html, body, * {
    /* Twemoji provides iOS-style emoji rendering */
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Twemoji, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif !important;
}

/* Ensure all text uses iOS-style emojis */
body, p, h1, h2, h3, h4, h5, h6, span, div, section, a, button {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Twemoji, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif !important;
}

/* Emoji specific styling */
.emoji {
    font-family: "Apple Color Emoji", Twemoji, sans-serif !important;
    font-size: 2rem;
}

