* {
  box-sizing: border-box;
}

html.led-html {
  width: 128px;
  height: 32px;
  min-width: 128px;
  min-height: 32px;
  max-width: 128px;
  max-height: 32px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
}

body.led-page {
  --led-scale: 1;
  position: relative;
  width: 128px;
  height: 32px;
  min-width: 128px;
  min-height: 32px;
  max-width: 128px;
  max-height: 32px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.led-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 128px;
  height: 32px;
  min-width: 128px;
  min-height: 32px;
  max-width: 128px;
  max-height: 32px;
  margin: 0;
  padding: 0;
  overflow: visible;
  transform: scale(var(--led-scale));
  transform-origin: top left;
  will-change: transform;
}

body.led-page.led-use-zoom .led-stage {
  transform: none;
  zoom: var(--led-scale);
}

.led-scoreboard {
  width: 128px;
  height: 32px;
  min-width: 128px;
  min-height: 32px;
  max-width: 128px;
  max-height: 32px;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.led-team {
  width: 30px;
  min-width: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.led-flag {
  width: 18px;
  height: 12px;
  display: block;
  object-fit: cover;
  border-radius: 1px;
  flex: 0 0 auto;
}

.led-name {
  width: 36px;
  margin-top: 2px;
  margin-left: -3px;
  margin-right: -3px;
  color: #fff;
  font-size: 4.8px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  transform: scaleX(0.8);
  transform-origin: center;
}

.led-score {
  width: 30px;
  min-width: 30px;
  color: #facc15;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}

.led-separator {
  width: 8px;
  min-width: 8px;
  margin-top: -2px;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1;
}

.preview-page {
  min-height: 100vh;
  margin: 0;
  background: #05070d;
  color: #f9fafb;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
