/* Object Tracking — test-specific overrides */
:root { --test-accent: #f59e0b; }

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

/* ── ARENA ── */
.ot-arena {
  position: relative;
  width: 100%;
  min-height: 560px;
  background: #fffbeb;
  border: 2.5px solid #fde68a;
  border-radius: 22px;
  overflow: hidden;
  cursor: crosshair;
}

.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: #1a2e3b;
}

.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 ── */
.rt-range-table { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.rt-range-row { display: grid; grid-template-columns: 10px 100px 1fr auto; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 8px; font-family: 'Lexend', sans-serif; font-size: 13px; }
.rt-range-dot { width: 10px; height: 10px; border-radius: 50%; }
.rt-range-label { font-weight: 700; color: #1a2e3b; }
.rt-range-val { color: #5a7285; }
.rt-range-pct { font-weight: 700; text-align: right; }
.rt-range-row.elite  { background: #f0fdf4; } .rt-range-row.elite  .rt-range-dot { background: #2ecc71; } .rt-range-row.elite  .rt-range-pct { color: #2ecc71; }
.rt-range-row.fast   { background: #f0f9ff; } .rt-range-row.fast   .rt-range-dot { background: #0ea5e9; } .rt-range-row.fast   .rt-range-pct { color: #0ea5e9; }
.rt-range-row.avg    { background: #fafafa; } .rt-range-row.avg    .rt-range-dot { background: #f5a623; } .rt-range-row.avg    .rt-range-pct { color: #f5a623; }
.rt-range-row.slow   { background: #fef2f1; } .rt-range-row.slow   .rt-range-dot { background: #e74c3c; } .rt-range-row.slow   .rt-range-pct { color: #e74c3c; }

@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; }
}
