.hud-avatar-wrap {
  position: relative; width: 48px; height: 48px; flex-shrink: 0;
}
.hud-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(248,113,113,0.6);
  box-shadow: 0 0 10px rgba(248,113,113,0.25);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hud-avatar-ph {
  width: 48px; height: 48px; border-radius: 50%;
  background: #1a0a0a; border: 2px solid rgba(248,113,113,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #7a3030;
}
#my-hud-avatar {
  border: 2px solid rgba(96,165,250,0.6);
  box-shadow: 0 0 10px rgba(96,165,250,0.25);
}
.opponent-card {
  width: 100%;
  max-width: 510px;
  background: #0f0a0a;
  border: 1px solid #2a1010;
  border-radius: 10px;
  padding: 8px 20px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.3s;
}
.opp-hud-row {
  display: flex; align-items: center; gap: 10px;
  width: 100%; margin-bottom: 4px;
}
.opp-hud-info { display: flex; flex-direction: column; gap: 1px; }
.opp-hud-name { font-size: 13px; font-weight: 700; color: #f87171; }
.opp-label-text {
  font-size: 10px; text-transform: uppercase; letter-spacing: 3px;
  color: #f87171; opacity: 0.45;
}
.opp-number-val {
  font-size: 40px; font-weight: 800;
  color: #f87171;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-block;
}
.opp-number-val .num-frac {
  opacity: 0.6;
}
.opp-digits-sub {
  font-size: 11px; color: #3a1515; margin-top: 1px;
}
.my-hud-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
}
.my-hud-info { display: flex; flex-direction: column; gap: 1px; }
.my-hud-name { font-size: 13px; font-weight: 700; color: #60a5fa; }
#my-hud-avatar-ph {
  background: #0a0f1a; border: 2px solid rgba(96,165,250,0.3); color: #3070c0;
  font-size: 18px;
}
.timer-card {
  width: 100%;
  max-width: 510px;
  background: #080e1a;
  border: 1px solid #1e3a6e;
  border-radius: 10px;
  padding: 6px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0;
  animation: timerCardGlow 3s ease-in-out infinite;
}
.timer-label-text {
  font-size: 10px; text-transform: uppercase; letter-spacing: 3px;
  color: #3b82f6; opacity: 0.45;
}
.timer {
  font-size: 48px; font-weight: 800; letter-spacing: 6px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
  line-height: 1.1;
  color: #60a5fa;
}
.timer.warn   { color: #f59e0b; }
.timer.danger { color: #ef4444; animation: timerPulse 0.5s infinite alternate; }
.num-label { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; opacity: 0.3; }
.num-value { font-size: 40px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: 1px; display: inline-block; line-height: 1; }
.opp-value { color: #f87171; }
.num-sub { font-size: 11px; color: #333; margin-top: 2px; }
.opponent-area { display: none; }
.timer-area { display: none; }
.top-row { display: contents; }
