/* Player profile extras */
.profile-hero { background: linear-gradient(135deg, #1e1e2e 0%, #1a3a2a 100%); }

/* ── Media strip (gallery thumbnails under hero) ── */
.profile-media-strip {
  background: #0f172a;
  padding: .6rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.pms-track {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.2) transparent;
  padding-bottom: .25rem;
}
.pms-track::-webkit-scrollbar { height: 4px; }
.pms-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }
.pms-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  transition: border-color .15s, opacity .15s;
  opacity: .85;
}
.pms-thumb:hover { border-color: #16a34a; opacity: 1; }
.pms-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pms-video { position: relative; }
.pms-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: rgba(0,0,0,.45);
  pointer-events: none;
  border-radius: 4px;
}
.pms-video:hover .pms-play { background: rgba(22,163,74,.7); }
