/*
 * Kahoot IA – Public base stylesheet
 *
 * This file is intentionally minimal. All heavy styling is
 * inlined directly in the join.php and play.php templates
 * to avoid extra HTTP requests on mobile connections.
 *
 * This file only neutralises WordPress theme interference
 * for the full-screen game containers.
 */

/* Hide the WP admin bar on the game pages to maximise screen space */
body.kahoot-ia-page #wpadminbar          { display: none !important }
body.kahoot-ia-page html                 { margin-top: 0 !important }

/* Prevent theme padding/margins interfering with the fixed layouts */
body.kahoot-ia-page .site,
body.kahoot-ia-page .site-content,
body.kahoot-ia-page .entry-content,
body.kahoot-ia-page .wp-block-post-content,
body.kahoot-ia-page main,
body.kahoot-ia-page article              { padding: 0 !important; margin: 0 !important }

/* Ensure the game shortcode can expand to full viewport */
#kia-join-wrap,
#kia-play-wrap {
    position: fixed;
    inset: 0;
    z-index: 99999;
}
