.kng-root {
  position: relative;
  max-width: 432px;
  margin: 0 auto;
}
.kng-root canvas {
  display: block;
  margin: 0 auto;
  image-rendering: pixelated;
  touch-action: manipulation;
  background: #0e2a0e;
}
/* 全画面（ネイティブ・疑似の両方） */
.kng-root:fullscreen,
.kng-root.kng-fs {
  max-width: none;
  margin: 0;
  background: #0e2a0e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kng-root.kng-fs {
  position: fixed;
  inset: 0;
  z-index: 99999;
}
.kng-root:fullscreen canvas,
.kng-root.kng-fs canvas {
  margin: 0;
}
/* ニックスランキング（ゲームと同じダークグリーンの世界観・各順位はH3見出し） */
.kn-nicks {
  background: #0e2a0e;
  border-radius: 8px;
  padding: 14px;
  margin: 1em 0;
  color: #fff;
}
.kn-nicks-note {
  font-size: 11px;
  color: #9fdf9f;
  margin: 0 0 10px;
  line-height: 1.6;
}
.kn-nick-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid #2e6b2e;
  border-radius: 8px;
}
/* H3はテーマの見出し装飾をリセットして行タイトルとして描画する（テーマCSSに負けないよう!important） */
.kn-nicks h3.kn-nick-h {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 1 240px;
  font-size: 15px !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.6 !important;
}
.kn-nicks h3.kn-nick-h::before,
.kn-nicks h3.kn-nick-h::after {
  content: none !important;
}
.kn-nick-h .kn-name {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}
.kn-nick-h .kn-rank {
  font-weight: 700;
  margin-right: 4px;
  white-space: nowrap;
}
.kn-nick-h .kn-rank-1 { color: #ffd700; }
.kn-nick-h .kn-rank-2 { color: #c0c0c0; }
.kn-nick-h .kn-rank-3 { color: #cd7f32; }
.kn-nick-h .kn-rank-x { color: #9fdf9f; }
.kn-nick-h .kn-x { color: #9fdf9f; font-weight: 400; }
.kn-nick-body {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.kn-nick-body .kn-rate { font-size: 12px; white-space: nowrap; }
.kn-nick-body .kn-rate strong { color: #ffd700; font-size: 16px; }
.kn-nick-body .kn-n { color: #9fdf9f; font-size: 12px; white-space: nowrap; }
.kn-nicks .kn-try {
  background: #2e6b2e;
  color: #fff;
  border: 1px solid #9fdf9f;
  border-radius: 5px;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.kn-nicks .kn-try:hover {
  background: #3a7d3a;
}
@media (max-width: 640px) {
  .kn-nick-item {
    display: block;
  }
  .kn-nick-body {
    display: flex;
    justify-content: space-between;
    margin: 6px 0 0;
  }
}
/* ダービー⇔配合シムの相互リンク */
.kn-related {
  background: #f4faf4;
  border: 1px solid #cfe9cf;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 1em 0;
  font-size: 14px;
}
.kng-input {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  padding: 8px;
  font-size: 16px;
  border: 2px solid #2e6b2e;
  border-radius: 4px;
  box-sizing: border-box;
}
