/* KADIC ONE — discreet TV pairing chrome */
.k1-pair {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10050;
  font-family: Poppins, system-ui, sans-serif;
  pointer-events: none;
}
.k1-pair__toggle,
.k1-pair__panel,
.k1-pair__new {
  pointer-events: auto;
}
.k1-pair__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 28, 18, 0.72);
  color: #e8f2ea;
  font: 600 13px/1 Poppins, system-ui, sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.k1-pair__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E0A72E;
  box-shadow: 0 0 0 3px rgba(224, 167, 46, 0.25);
}
.k1-pair__dot.is-paired,
.k1-pair.is-paired .k1-pair__dot {
  background: #2E9A5C;
  box-shadow: 0 0 0 3px rgba(46, 154, 92, 0.3);
}
.k1-pair__panel {
  position: absolute;
  right: 0;
  bottom: 52px;
  width: min(360px, 70vw);
  padding: 20px 22px 18px;
  border-radius: 18px;
  background: rgba(8, 28, 18, 0.88);
  color: #f2f7f3;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  text-align: center;
}
.k1-pair__panel[hidden] { display: none !important; }
.k1-pair__head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9bb5a4;
  margin-bottom: 8px;
}
.k1-pair__code {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: 0.28em;
  margin: 6px 0 10px;
  color: #fff;
}
.k1-pair__status {
  font-size: 15px;
  font-weight: 600;
  color: #E0A72E;
  margin-bottom: 8px;
}
.k1-pair__status.is-paired { color: #6FCF97; }
.k1-pair__hint {
  font-size: 12px;
  color: #a9c0b2;
  margin-bottom: 12px;
}
.k1-pair__hint b { color: #e8f2ea; }
.k1-pair__new {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #d7e6dc;
  border-radius: 999px;
  padding: 8px 14px;
  font: 600 12px/1 Poppins, system-ui, sans-serif;
  cursor: pointer;
}
.k1-pair__new:hover { background: rgba(255, 255, 255, 0.08); }

#tvDots [data-tv-go] { cursor: pointer; }
/* Survive body.tv direct-child hide rule; sit above Full screen / Exit */
body.tv > #kadic-one-pair {
  display: block !important;
  bottom: 72px;
  right: 20px;
  z-index: 230;
}