/* The Hollow Cathedral: shared expedition instruments and a server-owned loot reveal.
   Flight instruments pass input through; the loot panel supports scrolling. */
#dungeonHud {
  position: fixed;
  inset: 0;
  z-index: 36;
  pointer-events: none;
  color: #eee6cf;
  font-family: 'Rajdhani', sans-serif;
  text-shadow: 0 2px 4px #000;
  contain: layout style;
  --d-gold: #c8a773;
  --d-blood: #de775b;
  --d-ivory: #eee6cf;
}
#dungeonHud[hidden],
#dungeonHud [hidden] {
  display: none !important;
}
#dungeonHud * {
  box-sizing: border-box;
}
.dungeon-ui {
  position: absolute;
  inset: 0;
  zoom: var(--ui-scale-hud, 1);
  container: dungeon-ui / size;
  --d-safe-top: calc(env(safe-area-inset-top, 0px) / var(--ui-scale-hud, 1));
  --d-safe-bottom: calc(env(safe-area-inset-bottom, 0px) / var(--ui-scale-hud, 1));
}
.dungeon-command {
  position: absolute;
  left: 50%;
  top: max(16px, var(--d-safe-top));
  transform: translateX(-50%);
  width: min(620px, calc(100% - 340px));
  min-width: 290px;
  text-align: center;
  filter: drop-shadow(0 4px 9px #000a);
}
.dungeon-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 4px 14px 6px;
  background: linear-gradient(90deg, transparent, #171712e8 15%, #171712f7 50%, #171712e8 85%, transparent);
  border-bottom: 1px solid #a3875477;
}
.dungeon-heading > strong {
  font-family: 'Creepster', 'Rajdhani', sans-serif;
  font-size: 22px;
  letter-spacing: 0.09em;
  font-weight: 400;
  line-height: 1.08;
  color: #e0c392;
}
.dungeon-heading > span {
  font-size: 11px;
  letter-spacing: 0.13em;
  color: #b4ac99;
  white-space: nowrap;
}
.dungeon-heading:before,
.dungeon-heading:after {
  content: '';
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border: 1px solid #c5a775;
  flex: none;
}
.dungeon-wings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  padding: 8px 10px 0;
  background: linear-gradient(90deg, transparent, #080d10b8 14%, #080d10b8 86%, transparent);
}
.dungeon-wing {
  min-width: 0;
  color: #a8ada5;
  position: relative;
  text-transform: uppercase;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.07em;
}
.dungeon-wing > span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dungeon-wing > i {
  position: relative;
  display: block;
  height: 3px;
  margin-top: 5px;
  background: #78877b34;
  overflow: hidden;
}
.dungeon-wing > i > b {
  display: block;
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--wing-color, #c8a773);
  transition: transform 0.45s ease;
}
.dungeon-wing[data-state='active'] {
  color: #f0e4cb;
}
.dungeon-wing[data-state='active']:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--wing-color);
  left: -4px;
  top: 2px;
  transform: rotate(45deg);
}
.dungeon-wing[data-state='cleared'] {
  color: #dec79e;
}
.dungeon-wing[data-state='cleared'] > span:before {
  content: '✓ ';
  color: #c1daa0;
}
.dungeon-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.055em;
  padding: 5px 10px;
  color: #b9c3ba;
  background: linear-gradient(90deg, transparent, #080d10b8 20%, #080d10b8 80%, transparent);
}
.dungeon-meta span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dungeon-ping {
  color: #b3d59b;
  font-variant-numeric: tabular-nums;
  min-width: 8ch;
}
.dungeon-ping[data-quality='poor'] {
  color: #f89b79;
}
.dungeon-ping[data-quality='moderate'] {
  color: #e5c88b;
}
.dungeon-hull {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: max-content;
  max-width: 100%;
  margin: 2px auto 0;
  padding: 3px 11px;
  background: linear-gradient(90deg, transparent, #0b1113da 14%, #0b1113da 86%, transparent);
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.07em;
  color: #c9d5bd;
}
.dungeon-hull > span {
  font-weight: 600;
  color: #a8baa3;
}
.dungeon-hull-bar {
  position: relative;
  width: 95px;
  height: 5px;
  background: #2a322a;
  overflow: hidden;
  transform: skewX(-12deg);
}
.dungeon-hull-bar > i {
  position: absolute;
  inset: 0;
  background: #a5c097;
  transform-origin: left;
  transition: transform 0.15s;
}
.dungeon-hull > b {
  font-size: 11px;
  font-weight: 600;
  min-width: 6ch;
  font-variant-numeric: tabular-nums;
}
.dungeon-hull > small {
  font-size: 10px;
  white-space: nowrap;
  color: #b5ae9b;
  border-left: 1px solid #6a655044;
  padding-left: 7px;
}
.dungeon-hull[data-state='critical'] .dungeon-hull-bar > i,
.dungeon-hull[data-state='down'] .dungeon-hull-bar > i {
  background: #de8461;
}
.dungeon-hull[data-state='critical'] > b,
.dungeon-hull[data-state='down'] > small {
  color: #f3ad88;
}
.dungeon-boss {
  position: relative;
  margin-top: 13px;
  text-align: center;
}
.dungeon-boss-name {
  font-family: 'Creepster', 'Rajdhani', sans-serif;
  display: block;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #f3ddbe;
  line-height: 1.05;
}
.dungeon-boss-bar {
  position: relative;
  height: 9px;
  margin: 7px 35px 0;
  background: #100c0beb;
  border: 1px solid #916649a6;
  box-shadow: 0 2px 10px #0009;
  transform: skewX(-12deg);
}
.dungeon-boss-bar:after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 calc(25% - 2px), #180906c9 calc(25% - 2px) 25%);
}
.dungeon-boss-bar > i {
  position: absolute;
  inset: 0;
  transform-origin: left;
  background: linear-gradient(90deg, #813528, #d87552);
  transition: transform 0.15s linear;
}
.dungeon-boss-bar > .dungeon-boss-lag {
  background: #e9bb85;
  transition: transform 0.8s 0.18s ease;
}
.dungeon-boss-phase {
  display: block;
  margin-top: 5px;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: #d1aa87;
  line-height: 1.15;
}
.dungeon-boss[data-mechanic='warning'] .dungeon-boss-phase {
  color: #ffe0a3;
}
.dungeon-boss[data-mechanic='danger'] .dungeon-boss-phase {
  color: #ffb69a;
}
.dungeon-boss[data-mechanic='exposed'] .dungeon-boss-phase {
  color: #d4f3b7;
}
.dungeon-boss[data-mechanic='exposed'] .dungeon-boss-bar {
  border-color: #b3d38c;
}
.dungeon-boss[data-mechanic='exposed'] .dungeon-boss-fill {
  background: linear-gradient(90deg, #557b48, #cbdfa0);
}
.dungeon-objective {
  position: absolute;
  bottom: max(21px, var(--d-safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 330px);
  width: max-content;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 7px 23px;
  background: linear-gradient(90deg, transparent, #0b1012f0 12%, #0b1012f0 88%, transparent);
  border-bottom: 1px solid #b999614f;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  color: #e9dcc0;
}
.dungeon-objective > i {
  width: 8px;
  height: 8px;
  border: 1px solid #d9b878;
  transform: rotate(45deg);
  flex: none;
}
.dungeon-objective > small {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #a9b4a9;
  white-space: nowrap;
  border-left: 1px solid #7c715556;
  padding-left: 11px;
}
.dungeon-chapter {
  position: absolute;
  top: 29%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: min(720px, calc(100% - 40px));
  filter: drop-shadow(0 4px 8px #000);
  animation: dungeon-chapter 4.8s both;
}
.dungeon-chapter > small {
  display: block;
  color: #cdb892;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
}
.dungeon-chapter > strong {
  display: block;
  font-family: 'Creepster', 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 59px);
  line-height: 1.13;
  letter-spacing: 0.09em;
  padding: 9px 0;
  color: #f1e0ba;
}
.dungeon-chapter > span {
  display: block;
  font-size: 13px;
  color: #a8b2a6;
  letter-spacing: 0.12em;
}
.dungeon-chapter:after {
  content: '';
  display: block;
  width: 210px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c4a569, transparent);
  margin: 14px auto;
}
@keyframes dungeon-chapter {
  0% {
    opacity: 0;
    filter: blur(6px);
    translate: 0 12px;
  }
  13%,
  72% {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
  100% {
    opacity: 0;
    translate: 0 -8px;
  }
}
.dungeon-loot {
  position: absolute;
  left: 50%;
  top: 27%;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 40px));
  background: radial-gradient(ellipse at 50% 0, #6b422229, transparent 65%),
    linear-gradient(100deg, #10151aed, #161717f7 45%, #10151af2);
  border-top: 1px solid #c6a161;
  border-bottom: 1px solid #9a7a4a;
  box-shadow: 0 15px 70px #000b, inset 0 1px 0 #f8d9a01f;
  padding: 20px 28px 20px;
  clip-path: polygon(
    16px 0,
    calc(100% - 16px) 0,
    100% 16px,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    16px 100%,
    0 calc(100% - 16px),
    0 16px
  );
}
.dungeon-loot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #a890582d;
}
.dungeon-loot-head > div {
  min-width: 0;
}
.dungeon-loot-head small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.19em;
  color: #ba9c6e;
}
.dungeon-loot-head strong {
  display: block;
  font-family: 'Creepster', 'Rajdhani', sans-serif;
  font-weight: 400;
  font-size: 38px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin-top: 4px;
  color: #f1dcae;
}
.dungeon-loot-count {
  font-family: 'Creepster', 'Rajdhani', sans-serif;
  font-size: 40px;
  min-width: 2ch;
  text-align: right;
  color: #d8b475;
  font-variant-numeric: tabular-nums;
}
.dungeon-loot-list {
  display: grid;
  gap: 0;
  margin-top: 6px;
}
.dungeon-prize {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(160px, auto);
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  min-height: 76px;
  border-bottom: 1px solid #ac8c5824;
}
.dungeon-prize:last-child {
  border-bottom: 0;
}
.dungeon-prize-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #caae6c99;
  transform: rotate(45deg);
  background: linear-gradient(130deg, #54432b, #211e15);
  box-shadow: inset 0 0 0 3px #131817;
  color: #e9c989;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.dungeon-prize-icon > span {
  transform: rotate(-45deg);
  font-weight: 600;
}
.dungeon-prize[data-rarity='rare'] .dungeon-prize-icon {
  border-color: #aa97df;
  background: linear-gradient(130deg, #41324b, #17131d);
  color: #d7c6ff;
}
.dungeon-prize-name {
  min-width: 0;
}
.dungeon-prize-name strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: #eadabd;
  line-height: 1.15;
}
.dungeon-prize-name small {
  font-size: 15px;
  line-height: 1.2;
  color: #a9b1a5;
}
.dungeon-prize-winner {
  text-align: right;
  min-width: 0;
  max-width: 270px;
}
.dungeon-prize-winner strong {
  display: block;
  font-size: 24px;
  color: #f0d39c;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 20ch;
}
.dungeon-prize-winner small {
  font-size: 15px;
  color: #a6b7b0;
  white-space: nowrap;
}
.dungeon-prize[data-mine='true'] {
  background: linear-gradient(90deg, transparent, #a2822530, transparent);
}
.dungeon-prize[data-mine='true'] .dungeon-prize-winner strong {
  color: #fce5a7;
}
.dungeon-prize[data-rolling='true'] .dungeon-prize-winner strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: #b7c4bc;
}
.dungeon-loot-roster {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 12px;
  padding: 8px 2px 0;
  color: #b7b4a3;
  font-size: 16px;
  line-height: 1.2;
}
.dungeon-loot-roster span {
  max-width: 13ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dungeon-loot-roster b {
  color: #e2c78f;
  margin-left: 4px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.dungeon-loot-note {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: #aeb9aa;
  text-align: center;
}
.dungeon-roll-meter {
  height: 2px;
  background: #29251c;
  margin-top: 12px;
  overflow: hidden;
}
.dungeon-roll-meter > i {
  display: block;
  height: 100%;
  background: #c2a16a;
  transform-origin: left;
}
.dungeon-nav {
  position: absolute;
  right: 18px;
  bottom: 128px;
  width: 190px;
  height: 232px;
  opacity: 0.94;
  filter: drop-shadow(0 2px 5px #000);
  text-align: center;
}
.dungeon-nav > svg {
  display: block;
  width: 190px;
  height: 173px;
  overflow: visible;
}
.dungeon-nav path {
  fill: none;
  stroke: #83918755;
  stroke-width: 9;
  stroke-linecap: square;
}
.dungeon-nav .dungeon-map-arm {
  stroke: #cfad6955;
  stroke-width: 5;
}
.dungeon-nav .dungeon-map-arm[data-state='active'] {
  stroke: #dec28d;
}
.dungeon-nav .dungeon-map-arm[data-state='cleared'] {
  stroke: #92b082;
}
.dungeon-nav .dungeon-map-player {
  fill: #edf1d1;
  stroke: #27332b;
  stroke-width: 1;
}
.dungeon-nav .dungeon-map-boss {
  fill: #453528;
  stroke: #c6a16c;
  stroke-width: 1;
}
.dungeon-nav .dungeon-map-boss[data-state='cleared'] {
  fill: #a0b388;
  stroke: #c7d7a3;
}
.dungeon-nav > small {
  display: block;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #bdb797;
  line-height: 1.25;
}
.dungeon-nav > span {
  font-size: 15px;
  color: #cbbb9c;
}
.dungeon-reduced-motion .dungeon-chapter {
  animation: none;
}
.dungeon-reduced-motion .dungeon-boss-bar > i,
.dungeon-reduced-motion .dungeon-wing > i > b {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .dungeon-chapter {
    animation: none;
  }
  .dungeon-boss-bar > i,
  .dungeon-wing > i > b {
    transition: none;
  }
}
@container dungeon-ui (max-width:1050px) {
  .dungeon-command {
    width: min(565px, calc(100% - 270px));
  }
  .dungeon-heading > strong {
    font-size: 20px;
  }
  .dungeon-heading > span {
    display: none;
  }
  .dungeon-wings {
    gap: 10px;
  }
  .dungeon-wing {
    font-size: 10px;
    letter-spacing: 0.035em;
  }
  .dungeon-objective {
    max-width: calc(100% - 210px);
    font-size: 13px;
  }
  .dungeon-objective > small {
    display: none;
  }
}
@container dungeon-ui (max-width:700px) {
  .dungeon-command {
    top: calc(111px + var(--d-safe-top));
    width: calc(100% - 40px);
    min-width: 0;
  }
  .dungeon-heading > strong {
    font-size: 21px;
  }
  .dungeon-wings {
    gap: 12px;
  }
  .dungeon-meta {
    padding: 4px 0;
    font-size: 10px;
    gap: 9px;
  }
  .dungeon-meta .dungeon-room {
    display: none;
  }
  .dungeon-boss {
    margin-top: 8px;
  }
  .dungeon-boss-name {
    font-size: 22px;
  }
  .dungeon-boss-bar {
    margin-top: 5px;
  }
  .dungeon-objective {
    bottom: max(98px, calc(var(--d-safe-bottom) + 85px));
    max-width: calc(100% - 40px);
    padding: 6px 15px;
    font-size: 13px;
  }
  .dungeon-nav {
    display: none;
  }
  .dungeon-loot {
    top: 32%;
    padding: 14px 17px;
    width: calc(100% - 28px);
  }
  .dungeon-loot-head strong {
    font-size: 24px;
  }
  .dungeon-prize {
    grid-template-columns: 29px minmax(0, 1fr) minmax(85px, auto);
    gap: 9px;
    min-height: 50px;
    padding: 7px 0;
  }
  .dungeon-prize-icon {
    width: 26px;
    height: 26px;
  }
  .dungeon-prize-name strong {
    font-size: 13px;
  }
  .dungeon-prize-winner strong {
    font-size: 14px;
    max-width: 12ch;
  }
  .dungeon-prize-name small,
  .dungeon-prize-winner small {
    font-size: 10px;
  }
  .dungeon-chapter {
    top: 36%;
  }
  .dungeon-loot-roster {
    font-size: 10px;
    gap: 4px 9px;
  }
}
@container dungeon-ui (max-height:500px) {
  .dungeon-command {
    top: max(8px, var(--d-safe-top));
    width: min(500px, calc(100% - 280px));
    min-width: 230px;
  }
  .dungeon-heading {
    padding: 3px 6px;
  }
  .dungeon-heading > strong {
    font-size: 18px;
    letter-spacing: 0.06em;
  }
  .dungeon-wings {
    padding-top: 5px;
  }
  .dungeon-wing {
    font-size: 9px;
  }
  .dungeon-meta {
    padding: 3px 0;
    font-size: 10px;
  }
  .dungeon-meta .dungeon-room {
    display: none;
  }
  .dungeon-boss {
    margin-top: 4px;
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    gap: 0 10px;
    padding: 0 15px;
  }
  .dungeon-boss-name {
    font-size: 17px;
    letter-spacing: 0.06em;
  }
  .dungeon-boss-phase {
    display: block;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    text-align: right;
    letter-spacing: 0.045em;
  }
  .dungeon-boss-bar {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    height: 7px;
  }
  .dungeon-nav {
    display: none;
  }
  .dungeon-objective {
    bottom: max(15px, var(--d-safe-bottom));
    max-width: calc(100% - 270px);
    font-size: 12px;
    padding: 4px 13px;
  }
  .dungeon-chapter {
    top: 38%;
  }
  .dungeon-chapter > strong {
    font-size: 34px;
  }
  .dungeon-loot {
    top: 31%;
    width: min(560px, calc(100% - 135px));
    padding: 8px 16px;
  }
  .dungeon-loot-head {
    padding-bottom: 6px;
  }
  .dungeon-loot-head strong {
    font-size: 22px;
  }
  .dungeon-loot-head small {
    font-size: 9px;
  }
  .dungeon-prize {
    min-height: 36px;
    padding: 5px 0;
    grid-template-columns: 25px minmax(0, 1fr) minmax(85px, auto);
  }
  .dungeon-prize-icon {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }
  .dungeon-prize-name strong,
  .dungeon-prize-winner strong {
    font-size: 13px;
  }
  .dungeon-prize-name small,
  .dungeon-prize-winner small {
    font-size: 10px;
  }
  .dungeon-loot-roster {
    padding-top: 4px;
    font-size: 10px;
  }
  .dungeon-loot-note {
    margin-top: 5px;
    font-size: 10px;
  }
  .dungeon-roll-meter {
    margin-top: 6px;
  }
}

.dungeon-loadout {
  margin: 4px auto 0;
  padding: 3px 8px;
  max-width: 100%;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.065em;
  color: #dcba81;
  background: linear-gradient(90deg, transparent, #22180fe8 17%, #22180fe8 83%, transparent);
  white-space: pre-line;
}
.dungeon-loot-eligibility {
  padding: 8px 0;
  color: #d4bf95;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #a38c5e38;
}
.dungeon-hull-bar {
  flex: 0 1 95px;
  min-width: 28px;
}
@container dungeon-ui (max-width: 400px) {
  .dungeon-hull {
    padding-inline: 5px;
    gap: 5px;
  }
  .dungeon-hull-bar {
    width: 55px;
  }
  .dungeon-hull > small {
    font-size: 9px;
    padding-left: 5px;
  }
  .dungeon-hull > b {
    font-size: 10px;
  }
}

/* The shared roll stays reachable at maximum HUD scale and in short landscape. */
#dungeonHud .dungeon-loot {
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #a38c5e #111718;
  pointer-events: auto;
  touch-action: pan-y;
}
#dungeonHud:has(.dungeon-loot:not([hidden])) {
  /* The existing chat input is at 60. It must not cover a scrollable prize row. */
  z-index: 61;
}
#dungeonHud .dungeon-loot:focus-visible {
  outline: 2px solid #d5bb84;
  outline-offset: 3px;
}
/* User-selected Creepster face on every expedition instrument; chat lives outside this HUD. */
#dungeonHud {
  font-family: 'Creepster', 'Rajdhani', sans-serif;
}
#dungeonHud * {
  font-weight: 400;
}
#dungeonHud .dungeon-meta,
#dungeonHud .dungeon-wing {
  font-size: 13px;
}
#dungeonHud .dungeon-heading > span,
#dungeonHud .dungeon-hull,
#dungeonHud .dungeon-hull > small,
#dungeonHud .dungeon-loadout {
  font-size: 12px;
}
#dungeonHud .dungeon-hull > b {
  font-size: 13px;
}
#dungeonHud .dungeon-boss-phase {
  font-size: 12px;
}
#dungeonHud .dungeon-objective {
  font-size: 17px;
}
#dungeonHud .dungeon-objective > small {
  font-size: 13px;
}
#dungeonHud .dungeon-loot-note {
  font-size: 15px;
}
@container dungeon-ui (max-width: 600px) {
  #dungeonHud .dungeon-meta,
  #dungeonHud .dungeon-wing {
    font-size: 12px;
  }
  #dungeonHud .dungeon-hull,
  #dungeonHud .dungeon-hull > small,
  #dungeonHud .dungeon-loadout {
    font-size: 11px;
  }
  #dungeonHud .dungeon-objective {
    font-size: 15px;
  }
}
@container dungeon-ui (max-height: 400px) {
  #dungeonHud .dungeon-boss-phase {
    font-size: 10px;
  }
  #dungeonHud .dungeon-meta,
  #dungeonHud .dungeon-wing {
    font-size: 11px;
  }
  #dungeonHud .dungeon-hull,
  #dungeonHud .dungeon-hull > small {
    font-size: 10px;
  }
  #dungeonHud .dungeon-objective {
    font-size: 14px;
  }
}
