.sky-high-game .sh-loadout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 100%;
  color: var(--sh-ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sky-high-game .sh-customise-btn {
  min-height: 52px;
  padding-block: 12px;
  font-size: clamp(15px, 4vw, 18px);
}

.sky-high-game .sh-locker-panel {
  align-items: stretch;
  gap: 14px;
  max-width: 560px;
  max-height: calc(100% - 12px);
  padding: clamp(18px, 4vw, 28px);
  overflow-y: auto;
  overscroll-behavior: contain;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

.sky-high-game .sh-locker-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.sky-high-game .sh-locker-kicker {
  margin: 0 0 4px;
  color: #3a8fd0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.sky-high-game .sh-locker-progress {
  margin: 5px 0 0;
  color: var(--sh-ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.sky-high-game .sh-locker-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #e7eef5;
  color: var(--sh-ink);
  font: inherit;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.sky-high-game .sh-locker-section {
  display: grid;
  gap: 8px;
}

.sky-high-game .sh-locker-section h3 {
  margin: 0;
  color: var(--sh-ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sky-high-game .sh-locker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sky-high-game .sh-locker-card {
  min-width: 0;
  min-height: 108px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 18px;
  padding: 10px;
  background: #eef6fb;
  color: var(--sh-ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.sky-high-game .sh-locker-card.sh-selected {
  border-color: #3a8fd0;
  background: #dff4ff;
}

.sky-high-game .sh-locker-card:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  filter: grayscale(0.45);
}

.sky-high-game .sh-locker-icon {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  font-size: 25px;
}

.sky-high-game .sh-locker-card strong {
  min-width: 0;
  align-self: end;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.sky-high-game .sh-locker-card small {
  align-self: start;
  color: var(--sh-ink-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.sky-high-game .sh-locker-note {
  margin: 0;
  border-radius: 14px;
  padding: 9px 12px;
  background: #f4f7fa;
  color: var(--sh-ink-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.sky-high-game .sh-locker-close:focus-visible,
.sky-high-game .sh-locker-card:focus-visible {
  outline: 3px solid #ff8a5a;
  outline-offset: 2px;
}

@media (max-width: 390px) {
  .sky-high-game .sh-locker-panel {
    padding: 16px 14px;
  }

  .sky-high-game .sh-locker-card {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 96px;
    padding: 8px;
  }

  .sky-high-game .sh-locker-icon {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sky-high-game .sh-locker-card,
  .sky-high-game .sh-locker-close {
    transition: none;
  }
}
