/* グリーンタイピングチャレンジ：小学生版 差分スタイル（元 sho.html の <style> 差分） */

#word-display {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-family: 'Outfit', sans-serif;
}

/* 特設クリア画面：Tailwindとの競合を避けるための詳細な設定 */
#victory-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.94);
  display: none; /* 初期状態は非表示 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
