/* Object Tracking — test-specific overrides */
:root { --test-accent: #f59e0b; }
.t-intro-icon::before {
  content: 'visibility';
}


.t-shell { max-width: 900px; }

/* ── ARENA ── */
.ot-arena {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: color-mix(in srgb, var(--test-accent) 5%, #ffffff);
  border: 1.5px solid var(--color-outline);
  border-radius: 0;
  overflow: hidden;
  cursor: default;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: background-color 0.2s, border-color 0.2s;
}

html.dark .ot-arena {
  background: color-mix(in srgb, var(--test-accent) 4%, var(--color-surface-container-low)) !important;
  border-color: var(--color-outline) !important;
  border-radius: 0 !important;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.ot-canvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
}

/* ── STATUS ── */
.ot-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
  gap: 8px;
  flex-wrap: wrap;
}

.ot-level-display, .ot-lives-display {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.ot-status-text {
  font-family: 'Lexend', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9ca3af;
  text-align: center;
  min-height: 18px;
}

/* ── SCORE RANGE TABLE ── */
.ot-lives-display { display: flex; align-items: center; justify-content: center; }

@media (max-width: 768px) {
  .ot-arena { min-height: 440px; }
  .ot-canvas { min-height: 440px; }
}

@media (max-width: 480px) {
  .ot-arena { min-height: 360px; }
  .ot-canvas { min-height: 360px; }
}
