/* The fighter locker: big painted cards, one per fighter, and a spotlight that
   opens under the grid. Used by the home page roster and the skins page. */
.locker { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.fc { position: relative; margin: 0; aspect-ratio: 2 / 3; border-radius: 16px; overflow: hidden; isolation: isolate;
  border: 1px solid rgba(255,255,255,.08); background: #0b0d14 var(--plate) center / cover; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.fc::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 70% at 50% 18%, hsl(var(--h) 70% 55% / .26), transparent 62%),
              linear-gradient(180deg, rgba(6,7,12,.18), rgba(6,7,12,.04) 40%, rgba(6,7,12,.94) 100%); }
.fc img { position: absolute; left: 50%; bottom: 15%; height: 82%; width: auto; max-width: none; z-index: 1;
  transform: translateX(-50%); transform-origin: bottom center; transition: transform .3s ease;
  filter: drop-shadow(0 18px 16px rgba(0,0,0,.65)); }
.fc figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px 13px; z-index: 2; }
.fc figcaption b { display: block; font: 400 22px/1.05 ui-serif, Georgia, "Times New Roman", serif; color: #fff; letter-spacing: -.01em; }
.fc figcaption span { display: block; font: 600 10px/1.3 ui-monospace, Menlo, Consolas, monospace; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold, #d3aa64); margin-top: 4px; }
.fc:hover, .fc.on, .fc:focus-visible { transform: translateY(-6px); outline: none; border-color: transparent;
  box-shadow: 0 30px 50px -24px rgba(0,0,0,.95), 0 0 0 1.5px hsl(var(--h) 75% 62% / .75); }
.fc:hover img, .fc.on img { transform: translateX(-50%) scale(1.06); }

.spot { display: none; position: relative; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); margin-top: 18px;
  border-radius: 20px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); background: #0b0d14; }
.spot.open { display: grid; }
.spot .stage { position: relative; min-height: 560px; background: var(--plate) center / cover; }
.spot .stage::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 60% at 50% 30%, hsl(var(--h) 70% 55% / .28), transparent 65%),
              linear-gradient(90deg, rgba(6,7,12,.1), rgba(6,7,12,0) 30%, rgba(11,13,20,.9) 100%),
              linear-gradient(180deg, rgba(6,7,12,.2), rgba(6,7,12,0) 30%, rgba(6,7,12,.75) 100%); }
.spot .stage img { position: absolute; left: 50%; bottom: 6%; height: 86%; width: auto; max-width: none;
  transform: translateX(-50%); filter: drop-shadow(0 26px 24px rgba(0,0,0,.7)); }
.spot .info { padding: 34px 34px 28px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.spot .k { font: 600 10px/1 ui-monospace, Menlo, monospace; letter-spacing: .22em; text-transform: uppercase; color: var(--gold, #d3aa64); margin: 0; }
.spot h3 { font: 400 clamp(34px, 4vw, 48px)/1 ui-serif, Georgia, serif; margin: 0; color: #fff; letter-spacing: -.015em; }
.spot .role { color: var(--gold, #d3aa64); font: 600 12px/1.4 ui-monospace, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; margin: -6px 0 0; }
.spot .note { color: #b3b9c9; font-size: 15px; line-height: 1.55; margin: 0; max-width: 46ch; }
.spot .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 4px 0 0; }
.spot .stats div { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; padding: 9px 12px; }
.spot .stats b { display: block; font: 600 22px/1.1 ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif; color: #fff; }
.spot .stats span { display: block; font: 600 10px/1.3 ui-monospace, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; color: #878ea3; margin-top: 3px; }
.spot .looksk { font: 600 10px/1 ui-monospace, Menlo, monospace; letter-spacing: .18em; text-transform: uppercase; color: #878ea3; margin: 8px 0 0; }
.spot .looks { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.spot .looks button { font: 600 12px/1 ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif; color: #dfe3ee; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 8px 13px; cursor: pointer; }
.spot .looks button:hover { border-color: rgba(255,255,255,.3); }
.spot .looks button.on { background: var(--gold, #d3aa64); color: #0a0a0a; border-color: transparent; }
.spot .price { color: #b3b9c9; font-size: 13.5px; margin: 0; }
.spot .price b { color: var(--gold, #d3aa64); font-size: 16px; }
.spot .close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,7,12,.6); color: #fff; font-size: 18px; line-height: 1; cursor: pointer; z-index: 3; }
.spot .close:hover { background: rgba(6,7,12,.9); }
.lockermore { margin: 18px 0 0; color: #878ea3; font-size: 14px; }
.lockermore a { color: var(--goldsoft, #f0d9a8); }

@media (max-width: 980px) { .locker { grid-template-columns: repeat(3, minmax(0, 1fr)); } .spot { grid-template-columns: 1fr; } .spot .stage { min-height: 440px; } .spot .info { padding: 24px 20px; } }
@media (max-width: 600px) { .locker { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .fc figcaption b { font-size: 18px; } .spot .stage { min-height: 380px; } }
@media (prefers-reduced-motion: reduce) { .fc, .fc img { transition: none; } }
