:root {
  --bg: #0d1219;
  --bg-soft: #121a24;
  --panel: rgba(17, 24, 33, 0.82);
  --panel-strong: rgba(11, 18, 26, 0.92);
  --panel-border: rgba(202, 182, 137, 0.16);
  --text: #eff2f6;
  --text-muted: #aeb6c2;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #cfb57c;
  --gold-strong: #e4cd98;
  --danger: #b85d5d;
  --accent: #5f8ca8;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --font-display: "Bahnschrift SemiCondensed", "Aptos Narrow", "Arial Narrow", sans-serif;
  --font-body: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(95, 140, 168, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(207, 181, 124, 0.14), transparent 26%),
    linear-gradient(180deg, #0a1016 0%, #0d1219 55%, #0b1118 100%);
  background-attachment: fixed;
}

.hero[id],
.content-shell[id],
.section-block[id] {
  scroll-margin-top: 104px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 88%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(10, 15, 22, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner,
.content-shell,
.site-footer__inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.content-shell--wide {
  width: min(1320px, calc(100% - 40px));
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.site-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.site-brand strong,
.site-brand span,
.site-nav__link,
.hero-badges span,
.primary-btn,
.ghost-btn,
.feature-stack strong,
.section-kicker,
.map-card__badge,
.spawn-label,
.overview-strip strong,
.roster-card__top,
.filter-chip,
.result-summary,
.health-card strong,
.mini-item__copy strong,
.loot-card__copy strong,
.related-boss strong,
.aside-card h2,
.hero-facts strong,
.bullet-list li,
.ops-board__header h2,
.ops-board__eyebrow,
.ops-board__lead strong,
.ops-board__metrics strong,
.ops-board__tile span,
.ops-board__tile strong {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.site-brand strong {
  display: block;
  font-size: 1rem;
}

.site-brand span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
}

.hero--detail {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero--index::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.94) 0%, rgba(7, 10, 14, 0.7) 50%, rgba(7, 10, 14, 0.82) 100%),
    var(--index-hero-image) center/cover no-repeat;
  opacity: 0.48;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.45) 0%, rgba(7, 10, 14, 0.82) 60%, rgba(7, 10, 14, 0.95) 100%),
    radial-gradient(circle at 20% 18%, rgba(228, 205, 152, 0.18), transparent 28%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  padding: 56px 0 64px;
}

.hero__grid--index {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 420px);
  align-items: end;
  min-height: calc(72vh - 76px);
}

.hero__grid--detail {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  min-height: calc(72vh - 76px);
}

.eyebrow,
.hero-subtitle {
  margin: 0 0 12px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.3rem);
  line-height: 0.96;
  max-width: 10ch;
  text-wrap: balance;
  font-family: var(--font-display);
}

.hero-subtitle {
  margin-top: 14px;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.hero-description {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  transition: 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #1c1710;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.primary-btn:hover,
.ghost-btn:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

.hero-facts,
.feature-stack {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-facts__total {
  position: relative;
  display: block;
  background:
    radial-gradient(circle at 50% 18%, rgba(228, 205, 152, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(16, 24, 35, 0.92), rgba(9, 14, 22, 0.96));
}

.hero-facts__total span {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(228, 205, 152, 0.88);
  letter-spacing: 0.08em;
}

.hero-facts__total strong {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -46%);
  width: calc(100% - 40px);
  text-align: center;
  color: var(--gold-strong);
  font-size: clamp(4.4rem, 8vw, 7rem);
  line-height: 0.88;
  text-shadow: 0 0 26px rgba(228, 205, 152, 0.16);
}

.hero-facts article,
.feature-stack article,
.overview-strip article,
.health-card,
.slot-group,
.ux-note,
.aside-card,
.map-card,
.filter-bar,
.roster-card,
.breadcrumb,
.related-boss {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-facts article,
.feature-stack article,
.overview-strip article,
.aside-card {
  border-radius: var(--radius-sm);
  padding: 18px 20px;
}

.hero-facts span,
.feature-stack span,
.overview-strip span {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
  margin-bottom: 8px;
}

.hero-facts strong,
.feature-stack strong,
.overview-strip strong {
  display: block;
  font-size: 1.55rem;
}

.feature-stack p {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-side {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.hero-side--clean {
  grid-template-rows: auto 1fr;
  align-content: start;
}

.portrait-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 104px;
  padding: 18px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 205, 152, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(15, 22, 31, 0.92), rgba(9, 14, 22, 0.96));
  text-align: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.portrait-head strong,
.portrait-head span {
  display: block;
}

.portrait-head strong {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.portrait-head span {
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.portrait-panel {
  width: 100%;
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border-radius: 34px;
  overflow: hidden;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: zoom-in;
  color: inherit;
  text-align: left;
  background:
    radial-gradient(circle at 50% 12%, rgba(207, 181, 124, 0.22), transparent 26%),
    linear-gradient(180deg, rgba(15, 22, 31, 0.96), rgba(8, 12, 18, 0.96));
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(7, 10, 14, 0) 32%, rgba(7, 10, 14, 0.84) 100%);
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.portrait-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.22s ease;
}

.portrait-panel:hover img {
  transform: scale(1.02);
}

.portrait-panel__stamp,
.portrait-panel__zoom {
  position: relative;
  z-index: 1;
}

.portrait-panel__stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  min-width: 148px;
  min-height: 34px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gold-strong);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-align: right;
}

.portrait-panel__stamp--hp {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ff5353;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.92;
  text-shadow: 0 0 18px rgba(255, 83, 83, 0.24);
}

.portrait-panel__zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 12, 18, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(228, 205, 152, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.aside-card h2 {
  margin: 6px 0 12px;
  font-size: 1.55rem;
}

.bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-shell {
  position: relative;
  z-index: 1;
  padding: 32px 0 88px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border-radius: 999px;
  color: var(--text-muted);
}

.breadcrumb strong {
  color: var(--text);
}

.section-block {
  margin-top: 34px;
}

.section-block--compact {
  margin-top: 28px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: var(--font-display);
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 72ch;
}

.section-priority {
  margin-top: -68px;
  padding-top: 0;
  z-index: 2;
}

.section-secondary {
  padding-top: 18px;
}

.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading__meta {
  min-width: 240px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading__meta strong {
  display: block;
  color: var(--gold-strong);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.section-heading__meta span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-heading__meta--soft {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

.section-heading__meta--soft strong {
  color: var(--text);
}

.overview-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.video-player-open {
  overflow: hidden;
}

.guide-videos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.guide-videos__primary,
.guide-videos__backup-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-video-embed {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 8%, rgba(228, 205, 152, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(15, 22, 31, 0.96), rgba(7, 11, 17, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.guide-video-embed__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 14px;
}

.guide-video-embed__head .guide-video-card__badge {
  position: static;
}

.guide-video-embed__frame {
  aspect-ratio: 16 / 9;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.guide-video-embed__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-video-embed__copy {
  padding: 16px 18px 18px;
}

.guide-video-embed__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.3;
}

.guide-video-embed__copy p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.guide-videos__backup {
  padding: 20px 22px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 8%, rgba(228, 205, 152, 0.1), transparent 24%),
    linear-gradient(145deg, rgba(15, 22, 31, 0.94), rgba(7, 11, 17, 0.96));
}

.guide-videos__backup-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.guide-videos__backup-head strong,
.guide-video-card h3,
.video-player-modal__head strong {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.guide-videos__backup-head strong {
  font-size: 1.12rem;
}

.guide-videos__backup-head p,
.video-player-modal__tip {
  margin: 0;
  color: var(--text-muted);
}

.guide-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(140deg, rgba(14, 21, 30, 0.96), rgba(7, 11, 17, 0.98));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.guide-video-card:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 205, 152, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.guide-video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(228, 205, 152, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(9, 14, 22, 0.86), rgba(6, 10, 15, 0.98));
}

.guide-video-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 17, 0.08), rgba(7, 11, 17, 0.74));
  pointer-events: none;
}

.guide-video-card__media img,
.guide-video-card__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.guide-video-card__media img {
  object-fit: cover;
  transition: transform 0.28s ease;
}

.guide-video-card:hover .guide-video-card__media img {
  transform: scale(1.03);
}

.guide-video-card__placeholder {
  background:
    radial-gradient(circle at 50% 16%, rgba(228, 205, 152, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(18, 28, 38, 0.96), rgba(7, 11, 17, 1));
}

.guide-video-card__badge,
.guide-video-card__meta span,
.video-player-modal__head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.guide-video-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  background: rgba(8, 12, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-strong);
}

.guide-video-card__play,
.video-player-modal__close {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.guide-video-card__play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(7, 11, 17, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4f1e8;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.guide-video-card__play:hover {
  background: rgba(228, 205, 152, 0.14);
  border-color: rgba(228, 205, 152, 0.24);
}

.guide-video-card__copy {
  padding: 18px 20px 20px;
}

.guide-video-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-video-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.guide-video-card__meta span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.guide-video-card--compact {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 0;
}

.guide-video-card--compact .guide-video-card__media {
  aspect-ratio: auto;
  min-height: 142px;
}

.guide-video-card--compact .guide-video-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.guide-video-card--compact h3 {
  font-size: 1.06rem;
}

.video-player-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
}

.video-player-modal[hidden] {
  display: none !important;
}

.video-player-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.76);
  backdrop-filter: blur(12px);
}

.video-player-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 8%, rgba(228, 205, 152, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(15, 22, 31, 0.98), rgba(7, 11, 17, 0.98));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.45);
}

.video-player-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
}

.video-player-modal__head span {
  background: rgba(228, 205, 152, 0.1);
  color: var(--gold-strong);
}

.video-player-modal__head strong {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
}

.video-player-modal__close {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.video-player-modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-player-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player-modal__tip {
  padding: 14px 20px 20px;
}

.ops-board {
  position: relative;
}

.section-heading--ops {
  margin-bottom: 18px;
}

.section-heading--ops h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
}

.section-heading--ops p:last-child {
  max-width: 44ch;
}

.ops-board__frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 22px;
  background:
    radial-gradient(circle at 12% 10%, rgba(228, 205, 152, 0.12), transparent 24%),
    linear-gradient(140deg, rgba(15, 22, 31, 0.98), rgba(7, 11, 17, 0.98));
  border: 1px solid rgba(228, 205, 152, 0.16);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.38);
}

.ops-board__frame::before,
.ops-board__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ops-board__frame::before {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.85));
}

.ops-board__frame::after {
  inset: auto 30px 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 205, 152, 0.4), transparent);
}

.ops-board__topline,
.ops-board__grid {
  position: relative;
  z-index: 1;
}

.ops-board__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.ops-board__label {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(228, 205, 152, 0.1);
  color: var(--gold-strong);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 0.84rem;
}

.ops-board__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ops-board__legend span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.84rem;
}

.ops-board__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  align-items: stretch;
}

.ops-board__lead,
.ops-board__tile {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ops-board__lead::before,
.ops-board__tile::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(228, 205, 152, 0.34), transparent 72%);
  opacity: 0.8;
}

.ops-board__lead:hover,
.ops-board__tile:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 205, 152, 0.22);
}

.ops-board__lead {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 388px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.ops-board__eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(228, 205, 152, 0.12);
  color: var(--gold-strong);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.ops-board__lead strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  line-height: 1.1;
  max-width: 13ch;
  text-wrap: balance;
}

.ops-board__lead > p {
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 38ch;
}

.ops-board__tags,
.ops-board__loot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-board__tags {
  margin-top: 14px;
}

.ops-board__tags span,
.ops-board__loot-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.ops-board__tags span {
  color: var(--gold-strong);
}

.ops-board__metrics {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
  padding-top: 18px;
}

.ops-board__metrics article {
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ops-board__metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.ops-board__metrics strong {
  display: block;
  font-size: 1.52rem;
  line-height: 1;
}

.ops-board__loot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-board__loot > span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.ops-board__loot-row span {
  color: var(--text);
}

.ops-board__tile {
  grid-column: span 3;
  min-height: 176px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ops-board__tile span {
  display: inline-flex;
  width: fit-content;
  color: var(--gold-strong);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ops-board__tile strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.12rem, 1.3vw, 1.48rem);
  line-height: 1.22;
  max-width: 16ch;
  text-wrap: balance;
}

.ops-board__tile p {
  margin: 12px 0 0;
  padding-top: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-board__tile--chips {
  justify-content: flex-start;
}

.ops-board__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ops-board__stack span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1.5;
  font-size: 0.9rem;
}

.map-grid,
.health-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

.map-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.escort-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  align-items: start;
}

.escort-summary,
.escort-cards {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.escort-summary {
  border-radius: 28px;
  padding: 22px;
}

.escort-summary h3 {
  margin: 6px 0 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-family: var(--font-display);
  line-height: 1.1;
}

.escort-summary p:last-of-type {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.escort-summary__grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.escort-summary__grid article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.escort-summary__grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.escort-summary__grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.45;
}

.escort-cards {
  border-radius: 32px;
  padding: 18px;
}

.map-card--escort {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.map-card {
  border-radius: var(--radius);
  padding: 22px;
}

.map-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.map-card__head h3 {
  margin: 4px 0 0;
  font-size: 1.65rem;
  font-family: var(--font-display);
}

.map-card__badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-strong);
}

.map-card__body {
  display: grid;
  gap: 14px;
}

.spawn-row {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spawn-row--map {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.spawn-row__stats {
  display: grid;
  gap: 12px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spawn-row__stats .spawn-row__wide {
  grid-column: span 3;
}

.spawn-row__wide {
  grid-column: span 3;
}

.spawn-label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.spawn-guide-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 12%, rgba(228, 205, 152, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spawn-guide-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  justify-content: space-between;
}

.spawn-guide-panel__head strong,
.map-lightbox-modal__head strong {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

.spawn-guide-panel__head span,
.map-lightbox-modal__head span {
  color: var(--gold-strong);
  font-size: 0.84rem;
}

.spawn-guide-panel__trigger,
.map-lightbox-modal__close,
.image-editor__tool,
.image-editor__swatch {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.spawn-guide-panel__trigger {
  position: relative;
  display: block;
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 18, 0.78);
}

.spawn-guide-panel__trigger img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.spawn-guide-panel__trigger:hover img {
  transform: scale(1.03);
}

.spawn-guide-panel__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 17, 0.05), rgba(7, 11, 17, 0.5));
}

.spawn-guide-panel__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 11, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f4f1e8;
  font-size: 0.84rem;
}

.spawn-guide-panel p,
.map-lightbox-modal__caption {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.spawn-guide-panel--empty {
  justify-content: center;
}

.map-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  place-items: center;
  padding: 24px;
}

.map-lightbox-modal[hidden] {
  display: none !important;
}

.map-lightbox-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.82);
  backdrop-filter: blur(10px);
}

.map-lightbox-modal__dialog {
  position: relative;
  width: min(1180px, 100%);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 8%, rgba(228, 205, 152, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(15, 22, 31, 0.98), rgba(7, 11, 17, 0.98));
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.45);
}

.map-lightbox-modal__dialog--editor {
  width: min(1320px, 100%);
}

.map-lightbox-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
}

.map-lightbox-modal__close {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.map-lightbox-modal__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: #070b11;
}

.map-lightbox-modal__frame img {
  display: block;
  width: 100%;
  max-height: min(76vh, 980px);
  object-fit: contain;
}

.map-lightbox-modal__caption {
  margin: 0;
  padding: 0;
}

.image-editor__toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.image-editor__toolbar--top {
  flex: 1;
  justify-content: center;
}

.image-editor__toolbar-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 18px;
  transition: background 0.18s ease, border-color 0.18s ease, opacity 0.18s ease;
}

.image-editor__toolbar-group--left {
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

.image-editor__toolbar-group--center {
  justify-content: center;
  flex: 1;
}

.image-editor__toolbar-group--right {
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
}

.image-editor__group-head {
  display: grid;
  gap: 4px;
  margin-bottom: 2px;
}

.image-editor__group-head span {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.image-editor__group-head strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.image-editor__toolbar-group.is-active {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(228, 205, 152, 0.18);
}

.image-editor__toolbar-group.is-muted {
  opacity: 0.72;
}

.image-editor__tool,
.image-editor__readout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  white-space: nowrap;
}

.image-editor__tool:disabled {
  opacity: 0.45;
  cursor: default;
}

.image-editor__tool.is-active {
  background: rgba(228, 205, 152, 0.16);
  border-color: rgba(228, 205, 152, 0.28);
  color: var(--gold-strong);
}

.image-editor__note {
  min-width: 120px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.image-editor__note::placeholder {
  color: rgba(230, 236, 242, 0.42);
}

.image-editor__brush {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-editor__brush span {
  color: var(--text-muted);
  font-size: 0.84rem;
  white-space: nowrap;
}

.image-editor__brush strong {
  color: var(--gold-strong);
  font-family: var(--font-display);
  font-size: 0.82rem;
  white-space: nowrap;
}

.image-editor__brush input {
  width: 92px;
  accent-color: var(--gold-strong);
}

.image-editor__swatches {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.image-editor__swatch {
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 999px;
  background: var(--swatch);
  border: 2px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}

.image-editor__swatch.is-active {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}

.image-editor__frame {
  padding: 14px 20px 0;
}

.image-editor__frame--editor {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr) 196px;
  gap: 18px;
  align-items: stretch;
}

.image-editor__side {
  display: flex;
}

.image-editor__side .image-editor__toolbar-group {
  width: 100%;
  min-height: 100%;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 205, 152, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(12, 18, 26, 0.92), rgba(7, 11, 17, 0.96));
}

.image-editor__side .image-editor__tool,
.image-editor__side .image-editor__note,
.image-editor__side .image-editor__brush {
  width: 100%;
}

.image-editor__side .image-editor__tool {
  justify-content: center;
}

.image-editor__side .image-editor__swatches {
  justify-content: center;
}

.image-editor__workspace {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  min-height: min(72vh, 860px);
  overflow: auto;
  padding: 20px;
  border-radius: 24px;
  cursor: grab;
  background:
    radial-gradient(circle at 50% 18%, rgba(228, 205, 152, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(11, 16, 24, 0.94), rgba(6, 10, 15, 0.98));
}

.image-editor__locator {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(230, 198, 126, 0.28);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(28, 34, 43, 0.96), rgba(14, 18, 24, 0.96));
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.image-editor__locator:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 198, 126, 0.56);
  background: linear-gradient(180deg, rgba(42, 49, 59, 0.98), rgba(18, 23, 31, 0.98));
}

.image-editor__locator:focus-visible {
  outline: 2px solid rgba(230, 198, 126, 0.9);
  outline-offset: 2px;
}

.image-editor__transform {
  position: relative;
  display: inline-block;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.image-editor__transform > img {
  display: block;
  width: auto;
  max-width: min(100%, 1120px);
  max-height: min(72vh, 820px);
  object-fit: contain;
}

.image-editor__canvas,
.image-editor__markers {
  position: absolute;
  inset: 0;
}

.image-editor__canvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
  touch-action: none;
}

.image-editor__markers {
  pointer-events: none;
}

.map-lightbox-modal.is-annotating .image-editor__markers {
  pointer-events: auto;
  cursor: crosshair;
}

.map-lightbox-modal.is-annotating .image-editor__workspace,
.map-lightbox-modal.is-drawing .image-editor__workspace {
  cursor: default;
}

.map-lightbox-modal.is-drawing .image-editor__canvas {
  pointer-events: auto;
  cursor: crosshair;
}

.map-lightbox-modal.is-panning .image-editor__workspace {
  cursor: grabbing;
}

.image-editor__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.image-editor__marker span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--marker-color);
  color: #071017;
  font-family: var(--font-display);
  font-size: 0.9rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.image-editor__marker em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 11, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-style: normal;
  white-space: nowrap;
}

.image-editor__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px 20px;
}

.image-editor__status,
.image-editor__tip {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.image-editor__status {
  color: var(--gold-strong);
  font-size: 0.9rem;
}

.image-editor__tip {
  text-align: right;
}

.spawn-row strong {
  line-height: 1.65;
}

.health-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.health-card {
  border-radius: 20px;
  padding: 18px;
}

.health-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.health-card__top span {
  color: var(--text-muted);
}

.health-card strong {
  font-size: 1.5rem;
}

.health-bar {
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.health-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--danger), var(--gold));
}

.slot-group {
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
}

.mini-item-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-item,
.loot-card {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-item {
  grid-template-columns: 64px minmax(0, 1fr);
}

.mini-item__image,
.loot-card__image {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 16px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  cursor: zoom-in;
}

.mini-item__image {
  width: 64px;
  height: 64px;
}

.mini-item__image img,
.loot-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-trigger__hint {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(7, 11, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(228, 205, 152, 0.94);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mini-item__image:hover .image-trigger__hint,
.loot-card__image:hover .image-trigger__hint {
  opacity: 1;
  transform: translateY(0);
}

.mini-item__copy,
.loot-card__copy {
  display: grid;
  gap: 4px;
}

.mini-item__copy span,
.loot-card__copy span,
.related-boss span,
.related-boss em {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.loot-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.loot-grid--gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.loot-card {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  min-height: 100%;
}

.loot-card__image {
  aspect-ratio: 1;
}

.loot-card__copy strong {
  display: block;
}

.loot-card__value {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(228, 205, 152, 0.1);
  color: var(--gold-strong);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.loot-gallery {
  display: grid;
  gap: 16px;
}

.loot-gallery__toolbar,
.loot-gallery__frame {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.loot-gallery__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 24px;
}

.loot-gallery__count {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.loot-gallery__count strong,
.loot-gallery__indicator,
.loot-gallery__nav {
  font-family: var(--font-display);
}

.loot-gallery__count strong {
  font-size: 1.25rem;
}

.loot-gallery__count span,
.loot-gallery__sort,
.loot-gallery__status {
  color: var(--text-muted);
}

.loot-gallery__sort {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.loot-gallery__frame {
  overflow: hidden;
  border-radius: 28px;
}

.loot-gallery__pages {
  padding: 18px;
}

.loot-page {
  display: none;
}

.loot-page.is-active {
  display: block;
}

.loot-gallery__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loot-gallery__status {
  margin: 0;
}

.loot-gallery__pager {
  display: flex;
  align-items: center;
  gap: 12px;
}

.loot-gallery__nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.loot-gallery__nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.loot-gallery__empty {
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  color: var(--text-muted);
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-boss {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border-radius: 20px;
  padding: 14px;
}

.related-boss img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.related-boss em {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-style: normal;
}

.ux-note {
  border-radius: var(--radius);
  padding: 20px 22px;
}

.ux-note p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
}

.filter-bar {
  display: grid;
  gap: 18px;
  border-radius: 28px;
  padding: 20px;
  margin-bottom: 18px;
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 27, 37, 0.96), rgba(10, 16, 23, 0.92));
  border: 1px solid rgba(228, 205, 152, 0.16);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.finder-aside,
.finder-main {
  padding: 28px;
}

.finder-aside {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top left, rgba(228, 205, 152, 0.12), transparent 44%);
}

.finder-lead span,
.finder-block > span {
  display: block;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.finder-lead strong,
.finder-step strong,
.finder-link strong {
  font-family: var(--font-display);
}

.finder-lead strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.15;
}

.finder-lead p {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.85;
}

.finder-step-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.finder-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.finder-step span {
  color: var(--gold-strong);
  font-family: var(--font-display);
  font-size: 1.12rem;
}

.finder-step strong {
  display: block;
  margin-bottom: 6px;
}

.finder-step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.finder-block {
  margin-top: 24px;
}

.finder-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.finder-chip-row .filter-chip {
  min-height: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.finder-link-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.finder-group-grid {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.finder-group {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.finder-group__head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.finder-group__head p {
  margin: 6px 0 0;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.finder-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.2s ease;
}

.finder-link--stack {
  align-items: flex-start;
  flex-direction: column;
  min-height: 0;
}

.finder-link--stack span {
  text-align: left;
}

.finder-link:hover {
  transform: translateX(2px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(228, 205, 152, 0.22);
}

.finder-link span {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: right;
}

.finder-link strong small {
  color: var(--text-muted);
  font-size: 0.82em;
  font-weight: 400;
}

.finder-link em {
  color: var(--gold-strong);
  font-style: normal;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.finder-main .filter-bar {
  padding: 0 0 20px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.finder-main .result-summary {
  margin-bottom: 22px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-group > span,
.search-box > span {
  color: var(--text-muted);
  min-width: 54px;
}

.filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.filter-chip.is-active {
  color: #1a1410;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
}

.search-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.search-box input {
  flex: 1 1 260px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.result-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.result-summary strong {
  color: var(--gold-strong);
  font-size: 1.6rem;
}

.map-directory-grid,
.intel-grid,
.detail-split {
  display: grid;
  gap: 18px;
}

.map-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.map-directory-card,
.intel-card,
.note-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.map-directory-card {
  border-radius: 24px;
  padding: 20px;
}

.section-secondary .map-directory-card {
  background: rgba(16, 23, 33, 0.72);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

.map-directory-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.map-directory-card__head span,
.intel-card span,
.note-card p,
.boss-chip span {
  color: var(--text-muted);
}

.map-directory-card__head strong,
.intel-card strong,
.note-card h3,
.boss-chip strong {
  font-family: var(--font-display);
}

.boss-chip-grid {
  display: grid;
  gap: 10px;
}

.boss-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.intel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intel-card {
  border-radius: 20px;
  padding: 18px;
}

.intel-card strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.5rem;
}

.intel-card p,
.note-card ul,
.note-card p:last-child {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.detail-split {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.note-card {
  border-radius: 24px;
  padding: 20px;
}

.note-card h3 {
  margin: 4px 0 12px;
  font-size: 1.4rem;
}

.tag-row,
.priority-loot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row {
  margin: 0 0 14px;
}

.tag-row span,
.priority-loot-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.priority-loot-row span {
  color: var(--gold-strong);
}

.roster-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.roster-card {
  position: relative;
  min-height: 320px;
  border-radius: 32px;
  overflow: hidden;
  padding: 24px;
  display: grid;
  align-items: end;
  grid-template-columns: 200px minmax(0, 1fr);
  background:
    radial-gradient(circle at 18% 18%, rgba(228, 205, 152, 0.12), transparent 26%),
    radial-gradient(circle at 82% 20%, rgba(95, 140, 168, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(13, 19, 28, 0.96), rgba(8, 12, 18, 0.98));
}

.roster-card__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 14, 0.9) 0%, rgba(7, 10, 14, 0.4) 50%, rgba(7, 10, 14, 0.9) 100%),
    radial-gradient(circle at 18% 15%, rgba(228, 205, 152, 0.14), transparent 28%);
}

.roster-card__portrait,
.roster-card__copy {
  position: relative;
  z-index: 1;
}

.roster-card__portrait {
  width: 180px;
  height: 260px;
  object-fit: contain;
  object-position: center bottom;
  justify-self: center;
}

.roster-card__copy {
  display: grid;
  gap: 10px;
}

.roster-card__top,
.roster-card__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.roster-card__top {
  align-items: center;
  justify-content: space-between;
  color: var(--gold-strong);
}

.roster-card h3 {
  margin: 0;
  font-size: 2rem;
  font-family: var(--font-display);
}

.roster-card p,
.roster-card em {
  margin: 0;
}

.roster-card p {
  color: var(--gold);
}

.roster-card__maps span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.roster-card em {
  color: var(--text-muted);
  line-height: 1.75;
  font-style: normal;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 9, 13, 0.75);
}

.site-footer__inner {
  padding: 22px 0 34px;
  color: var(--text-muted);
}

.site-footer__inner p {
  margin: 0;
  line-height: 1.9;
}

.floating-dock {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 34;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-dock__panel {
  width: min(220px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(230, 198, 126, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 26, 36, 0.98), rgba(10, 14, 20, 0.98));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.floating-dock__panel strong {
  display: block;
  color: var(--gold-strong);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.floating-dock__links {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.floating-dock__link,
.floating-dock__toggle {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(29, 36, 46, 0.96), rgba(15, 20, 28, 0.96));
  color: var(--text);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.floating-dock__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
}

.floating-dock__toggle {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  color: var(--gold-strong);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.36);
}

.floating-dock__link:hover,
.floating-dock__toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 198, 126, 0.42);
  background: linear-gradient(180deg, rgba(39, 47, 58, 0.98), rgba(17, 22, 31, 0.98));
}

.floating-dock__link:focus-visible,
.floating-dock__toggle:focus-visible {
  outline: 2px solid rgba(230, 198, 126, 0.88);
  outline-offset: 2px;
}

.floating-dock.is-open .floating-dock__toggle {
  border-color: rgba(230, 198, 126, 0.42);
}

body.video-player-open .floating-dock {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1120px) {
  .hero__grid--index,
  .hero__grid--detail,
  .finder-layout,
  .ops-board__grid,
  .map-grid,
  .map-directory-grid,
  .intel-grid,
  .detail-split,
  .overview-strip,
  .mini-item-grid,
  .loot-grid,
  .related-grid,
  .roster-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .spawn-row--map {
    grid-template-columns: 1fr;
  }

  .guide-videos__primary,
  .guide-videos__backup-grid {
    grid-template-columns: 1fr;
  }

  .guide-video-embed__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .guide-videos__backup-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-board__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-board__topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .escort-layout {
    grid-template-columns: 1fr;
  }

  .ops-board__lead,
  .ops-board__tile {
    grid-column: auto;
    grid-row: auto;
  }

  .ops-board__lead {
    grid-column: span 2;
    min-height: auto;
  }

  .section-heading--split {
    align-items: stretch;
    flex-direction: column;
  }

  .finder-aside {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .roster-card {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .loot-grid--gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header__inner,
  .content-shell,
  .content-shell--wide,
  .site-footer__inner,
  .hero__grid {
    width: min(100% - 24px, 100%);
  }

  .site-header__inner {
    padding: 12px 0;
    align-items: flex-start;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    padding: 28px 0 34px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
    max-width: none;
  }

  .section-heading__meta {
    min-width: 0;
    width: 100%;
  }

  .hero-facts,
  .spawn-row {
    grid-template-columns: 1fr;
  }

  .spawn-row__stats {
    grid-template-columns: 1fr;
  }

  .spawn-row__stats .spawn-row__wide {
    grid-column: span 1;
  }

  .spawn-guide-panel {
    padding: 14px;
  }

  .map-lightbox-modal {
    padding: 14px;
  }

  .map-lightbox-modal__dialog {
    border-radius: 22px;
  }

  .map-lightbox-modal__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-editor__toolbar {
    justify-content: flex-start;
  }

  .image-editor__toolbar-group {
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .image-editor__toolbar-group--center,
  .image-editor__toolbar-group--right,
  .image-editor__toolbar-group--left {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }

  .image-editor__tool,
  .image-editor__readout {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .image-editor__note {
    width: 100%;
    min-width: 0;
  }

  .image-editor__brush {
    width: 100%;
    justify-content: space-between;
  }

  .map-lightbox-modal__frame {
    padding: 0 14px;
  }

  .image-editor__frame--editor {
    grid-template-columns: 1fr;
  }

  .image-editor__side {
    order: 2;
  }

  .image-editor__workspace {
    order: 1;
  }

  .image-editor__side .image-editor__toolbar-group {
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .image-editor__workspace {
    min-height: 54vh;
    padding: 14px;
    border-radius: 18px;
  }

  .image-editor__locator {
    right: 14px;
    bottom: 14px;
    min-width: 98px;
    height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .image-editor__foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-editor__status,
  .image-editor__tip {
    text-align: left;
  }

  .guide-videos__backup {
    padding: 18px;
    border-radius: 22px;
  }

  .guide-video-embed {
    border-radius: 22px;
  }

  .guide-video-embed__copy {
    padding: 14px 16px 16px;
  }

  .guide-video-card,
  .guide-video-card--compact {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .guide-video-card__copy {
    padding: 16px 16px 18px;
  }

  .guide-video-card h3 {
    font-size: 1.08rem;
  }

  .guide-video-card__play {
    right: 14px;
    bottom: 14px;
  }

  .video-player-modal {
    padding: 14px;
  }

  .video-player-modal__dialog {
    border-radius: 22px;
  }

  .video-player-modal__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ops-board__frame {
    padding: 22px;
    border-radius: 28px;
  }

  .ops-board__grid,
  .ops-board__metrics {
    grid-template-columns: 1fr;
  }

  .ops-board__lead,
  .ops-board__tile {
    grid-column: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .ops-board__tile {
    min-height: auto;
  }

  .spawn-row__wide {
    grid-column: span 1;
  }

  .portrait-panel {
    min-height: 420px;
    padding: 18px;
  }

  .portrait-head {
    min-height: 88px;
    padding: 16px 18px;
    border-radius: 22px;
  }

  .portrait-head strong {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .portrait-head span {
    font-size: 0.9rem;
  }

  .portrait-panel__stamp {
    top: 18px;
    right: 18px;
    min-width: 116px;
  }

  .portrait-panel__stamp--hp {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .portrait-panel__zoom {
    right: 16px;
    bottom: 16px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .section-priority {
    margin-top: -18px;
  }

  .finder-aside,
  .finder-main {
    padding: 20px;
  }

  .finder-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .finder-link span {
    text-align: left;
  }

  .escort-summary,
  .escort-cards {
    border-radius: 22px;
  }

  .loot-gallery__toolbar,
  .loot-gallery__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .loot-gallery__pages {
    padding: 14px;
  }

  .loot-grid--gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-trigger__hint {
    opacity: 1;
    transform: translateY(0);
  }

  .health-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roster-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .roster-card__portrait {
    width: 150px;
    height: 200px;
    justify-self: start;
  }

  .filter-bar,
  .breadcrumb,
  .map-card,
  .slot-group,
  .ux-note {
    border-radius: 20px;
  }

  .floating-dock {
    right: 14px;
    bottom: 14px;
  }

  .floating-dock__panel {
    width: min(196px, calc(100vw - 28px));
    padding: 14px;
    border-radius: 18px;
  }

  .floating-dock__toggle {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 14px;
  }

  .floating-dock__link {
    min-height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }
}
