.ps-mental {
  display: grid;
  gap: 14px;
}

.ps-mental__scores {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.ps-mental-score {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--trk-border, rgba(148, 163, 184, 0.2));
  background: rgba(0, 0, 0, 0.18);
}

.ps-mental-score__val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.ps-mental-score__lab {
  font-size: 0.78rem;
  color: var(--trk-muted, #94a3b8);
}

.ps-mental-score--impact .ps-mental-score__val {
  color: #38bdf8;
}

.ps-mental-score--tilt .ps-mental-score__val {
  color: #f97316;
}

.ps-mental-score--stable .ps-mental-score__val {
  color: #22c55e;
}

.ps-mental__verdict {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--trk-text-soft, #cbd5e1);
}

.ps-mental-cert {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.06);
}

.ps-mental-cert__label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #38bdf8;
}

.ps-mental-cert__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.ps-clutch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-platform__subtitle {
  margin: 12px 0 6px;
  font-size: 0.88rem;
  font-weight: 700;
}

.ps-clutch-section__hint {
  margin: 0 0 10px;
}

.ps-clutch-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--trk-border, rgba(148, 163, 184, 0.15));
}

.ps-clutch-item__map {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.ps-clutch-item__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.ps-clutch-item__label {
  font-weight: 700;
  font-size: 0.9rem;
}

.ps-clutch-item__won,
.ps-clutch-item__lost {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

.ps-clutch-item__won {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.ps-clutch-item__lost {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.clutch-replay-mount {
  width: 100%;
  flex: 1 1 100%;
}

.clutch-replay,
.clutch-clip {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  width: 100%;
}

.clutch-clip__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.clutch-clip__map-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.clutch-clip__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--trk-accent, #ff5500);
}

.clutch-clip__title {
  margin: 2px 0 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.clutch-clip__result {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.clutch-clip__result--won {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.clutch-clip__result--lost {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.clutch-clip__match-link {
  margin-left: auto;
}

.clutch-clip__stage--video {
  padding: 0;
  background: #0b1220;
}

.clutch-clip__video {
  display: block;
  width: 100%;
  max-height: 420px;
  border-radius: 0 0 10px 10px;
  background: #000;
}

.clutch-clip__pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  color: var(--text-muted, #94a3b8);
}

.clutch-clip__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(148, 163, 184, 0.25);
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: clutch-spin 0.9s linear infinite;
}

@keyframes clutch-spin {
  to {
    transform: rotate(360deg);
  }
}

.clutch-clip__stage {
  position: relative;
}

.clutch-replay__canvas {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  border: 1px solid var(--trk-border, rgba(148, 163, 184, 0.2));
  display: block;
}

.clutch-clip__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--trk-muted, #94a3b8);
}

.clutch-clip__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.clutch-clip__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.clutch-clip__dot--kill {
  background: #22c55e;
}

.clutch-clip__dot--death {
  background: #ef4444;
}

.clutch-clip__dot--enemy {
  background: #94a3b8;
}

.clutch-replay__controls {
  display: flex;
  gap: 8px;
}

.clutch-replay__whatif {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.85rem;
  line-height: 1.45;
}
