/**
 * DineSysPro TV platform credit — mandatory on all TV menu shells.
 *
 * Place as last children of the outer board/stage container
 * (the dark rim around the cream frame), which must be position: relative.
 *
 * HTML:
 *   <div class="dsp-credit dsp-credit-brand" aria-hidden="true">DineSysPro</div>
 *   <div class="dsp-credit dsp-credit-mail" aria-hidden="true">info@dinesyspro.se</div>
 *
 * Link from display.html:
 *   <link rel="stylesheet" href="/tv/shared/dinesys-credit.css?v=…" />
 */
.dsp-credit {
  position: absolute;
  bottom: 5px;
  z-index: 50;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  /* Default: readable on light TV canvases */
  color: rgba(60, 40, 30, 0.35);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* Dark outer rims (Frigga / Padthai brand shells + dark theme) */
.fg-board > .dsp-credit,
.pt-board > .dsp-credit,
.tv-app.tv-theme-dark > .dsp-credit {
  color: rgba(245, 232, 213, 0.42);
}

.dsp-credit-brand {
  left: 14px;
  letter-spacing: 0.16em;
}

.dsp-credit-mail {
  right: 14px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
