:root {
  color-scheme: dark;
  --bg: #05070c;
  --ink: #f8f1df;
  --muted: #b7b2a6;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(8, 11, 18, 0.94);
  --panel-2: rgba(17, 22, 33, 0.96);
  --hp: #e14b4b;
  --mana: #38a8f4;
  --gold: #f3c64d;
  --soul: #65dcc6;
  --accent: #d96b38;
  --control: rgba(13, 17, 27, 0.78);
  --control-strong: rgba(24, 31, 46, 0.94);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-variant-numeric: tabular-nums;
}

button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(30, 36, 48, 0.9);
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  letter-spacing: 0;
  min-height: 40px;
  padding: 8px 11px;
  cursor: pointer;
  transition: filter 80ms, transform 60ms, border-color 80ms;
  touch-action: manipulation;
}

button:active {
  transform: translateY(1px);
  filter: brightness(1.18);
}

button:disabled {
  opacity: 0.42;
  cursor: default;
}

#gameCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #060810;
  image-rendering: auto;
  touch-action: none;
}

.hidden {
  display: none !important;
}

.hud {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  padding: max(10px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
}

.topbar,
.resourceBar,
.navButtons,
.actions,
.joystick {
  pointer-events: auto;
}

.topbar {
  display: grid;
  grid-template-columns: 48px 1fr 42px 42px;
  gap: 8px;
  align-items: center;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 16, 27, 0.92), rgba(6, 8, 14, 0.76));
  backdrop-filter: blur(11px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.portrait {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #151b28;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.bars {
  min-width: 0;
}

.meter {
  position: relative;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
}

.meter + .meter {
  margin-top: 4px;
}

.meter span {
  display: block;
  width: 100%;
  height: 100%;
  transition: width 120ms linear;
}

.meter.hp span {
  background: linear-gradient(90deg, #831726, var(--hp) 72%, #ff7a66);
}

.meter.mana span {
  background: linear-gradient(90deg, #123c91, var(--mana) 72%, #73d4ff);
}

.meter b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-shadow: 0 1px 2px #000;
}

.xpRow,
.resourceBar {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.xpRow {
  margin-top: 3px;
}

.resourceBar {
  margin-top: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.66);
  backdrop-filter: blur(8px);
}

.iconBtn {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
}

.pauseGlyph {
  width: 16px;
  height: 18px;
  display: grid;
  grid-template-columns: 5px 5px;
  gap: 6px;
}

.pauseGlyph::before,
.pauseGlyph::after {
  content: "";
  border-radius: 2px;
  background: var(--ink);
}

.audioGlyph {
  position: relative;
  width: 18px;
  height: 18px;
}

.audioGlyph::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 8px;
  background: var(--ink);
  clip-path: polygon(0 25%, 58% 25%, 100% 0, 100% 100%, 58% 75%, 0 75%);
}

.audioGlyph::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: 50%;
}

#audioBtn.muted .audioGlyph::before,
.audioGlyph.muted::before {
  opacity: 0.45;
}

#audioBtn.muted .audioGlyph::after,
.audioGlyph.muted::after {
  opacity: 0.35;
  box-shadow: 4px 0 0 0 var(--ink), 8px 0 0 0 var(--ink);
  clip-path: none;
  width: 0;
  height: 0;
  border: 0;
}

.navButtons {
  position: absolute;
  left: 12px;
  top: calc(108px + env(safe-area-inset-top));
  display: flex;
  gap: 6px;
}

.miniBtn {
  width: 54px;
  min-height: 42px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 5px 6px;
  font-size: 9px;
  line-height: 1;
  background: var(--control);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.11);
}

.miniBtn b,
.actionBtn b {
  font-size: inherit;
  line-height: 1.05;
}

.actions {
  position: absolute;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  display: grid;
  grid-template-columns: repeat(3, 58px);
  grid-template-rows: repeat(3, 50px);
  gap: 6px;
  align-items: center;
  justify-items: center;
}

.actionBtn {
  width: 58px;
  height: 50px;
  min-height: 50px;
  display: grid;
  place-items: center;
  gap: 1px;
  padding: 4px;
  border-radius: 10px;
  background: var(--control-strong);
  font-size: 10px;
  line-height: 1.05;
  overflow-wrap: anywhere;
  backdrop-filter: blur(8px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.actionBtn:active {
  transform: scale(0.94) translateY(2px);
}

.actionBtn.attack {
  grid-column: 2;
  grid-row: 2;
  width: 70px;
  height: 64px;
  min-height: 64px;
  border-color: rgba(233, 116, 64, 0.78);
  background: linear-gradient(160deg, rgba(177, 64, 33, 0.98), rgba(91, 27, 18, 0.96));
  font-size: 12px;
  box-shadow: 0 8px 22px rgba(217, 107, 56, 0.32), inset 0 1px 0 rgba(255, 180, 100, 0.16);
}

.actionBtn.potion {
  grid-column: 3;
  grid-row: 3;
  border-color: rgba(104, 220, 148, 0.58);
  background: linear-gradient(160deg, rgba(21, 70, 44, 0.96), rgba(9, 33, 23, 0.92));
}

.actionBtn.dash {
  grid-column: 2;
  grid-row: 3;
  border-color: rgba(101, 180, 255, 0.58);
  background: linear-gradient(160deg, rgba(20, 50, 90, 0.96), rgba(9, 22, 44, 0.92));
}

/* Dash active glow */
.actionBtn.dash.cooling {
  border-color: rgba(255, 255, 255, 0.06);
}

/* Blessing pick cards */
.blessingCard {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px;
  background: rgba(14, 18, 28, 0.92);
  text-align: center;
  transition: transform 120ms;
}
.blessingCard:hover { transform: translateY(-2px); }
.blessingCard h3 { margin: 0 0 6px; font-size: 15px; }
.blessingCard p  { margin: 0 0 12px; font-size: 13px; color: var(--muted); }

.actionBtn.skillOne {
  grid-column: 1;
  grid-row: 1;
}

.actionBtn.skillTwo {
  grid-column: 1;
  grid-row: 3;
}

.actionBtn.jump {
  grid-column: 3;
  grid-row: 1;
  border-color: rgba(101, 220, 198, 0.58);
  background: linear-gradient(160deg, rgba(22, 67, 67, 0.96), rgba(9, 33, 34, 0.92));
}

.actionBtn.cooling {
  color: #817d73;
  background: rgba(15, 16, 22, 0.88);
  border-color: rgba(255, 255, 255, 0.06);
}

.joystick {
  position: absolute;
  left: 18px;
  bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
  width: 106px;
  height: 106px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 50%, rgba(101, 220, 198, 0.12), transparent 38%),
    rgba(9, 13, 21, 0.5);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.02), 0 12px 34px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(7px);
  touch-action: none;
}

.joyThumb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(101, 220, 198, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(101, 220, 198, 0.14)), rgba(18, 24, 40, 0.92);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
  touch-action: none;
}

.ico {
  width: 22px;
  height: 22px;
  display: block;
  background-image: url("assets/ui-icons.svg");
  background-size: 176px 22px;
  background-repeat: no-repeat;
  image-rendering: auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.22);
}

.ico.attack { background-position: 0 0; }
.ico.jump { background-position: -22px 0; }
.ico.shield { background-position: -44px 0; }
.ico.quake { background-position: -66px 0; }
.ico.potion { background-position: -88px 0; }
.ico.bag { background-position: -110px 0; }
.ico.talent { background-position: -132px 0; }
.ico.daily { background-position: -154px 0; }
/* Dash icon: reuse jump sprite with rotation to signal lateral movement */
.ico.dash { background-position: -22px 0; transform: rotate(90deg); }

.toast {
  position: fixed;
  z-index: 9;
  top: calc(160px + env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  max-width: min(86vw, 420px);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 10, 18, 0.93);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  pointer-events: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.panel {
  position: fixed;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 12px max(16px, env(safe-area-inset-bottom));
  background:
    linear-gradient(rgba(3, 5, 10, 0.7), rgba(3, 5, 10, 0.82)),
    url("assets/backdrop.svg") center / cover no-repeat,
    radial-gradient(circle at 50% 8%, rgba(101, 220, 198, 0.12), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(217, 107, 56, 0.14), transparent 28%),
    rgba(3, 5, 10, 0.72);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.panel:empty {
  display: none;
}

.panel *,
.sheet * {
  touch-action: pan-y;
}

.panel button,
.sheet button {
  touch-action: manipulation;
}

.sheet {
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 22, 34, 0.98), rgba(7, 9, 15, 0.98));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.62);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.sheetHeader {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 12, 20, 0.96);
  backdrop-filter: blur(12px);
}

.sheetHeader h1,
.sheetHeader h2 {
  margin: 0;
  font-size: clamp(20px, 4.7vw, 28px);
  letter-spacing: 0;
  line-height: 1.1;
}

.sheetBody {
  padding: 13px;
}

.inventorySheet {
  width: min(100%, 760px);
}

.inventoryHeader {
  align-items: flex-start;
}

.inventoryHeaderActions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.inventoryBody {
  gap: 12px;
}

.inventoryStats span {
  min-width: calc(50% - 8px);
}

.inventoryPotions {
  margin-bottom: 2px;
}

.inventoryGrid {
  display: grid;
  gap: 12px;
}

.inventoryCol {
  display: grid;
  gap: 10px;
}

.inventoryCol h3 {
  margin: 4px 0 0;
  font-size: 15px;
}

.equippedGrid,
.backpackGrid {
  grid-template-columns: 1fr;
}

.backpackGrid .card,
.equippedGrid .card,
.relicGrid .card,
.relicGrid .relicCard {
  min-width: 0;
}

.backpackGrid .card {
  background: rgba(255, 255, 255, 0.035);
}

.backpackGrid .card button,
.equippedGrid .card button {
  min-height: 36px;
  padding: 7px 10px;
}

.lead {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 10px;
}

.classGrid {
  grid-template-columns: repeat(auto-fit, minmax(164px, 1fr));
}

.menuSheet {
  width: min(100%, 880px);
}

.menuHero {
  display: grid;
  grid-template-columns: minmax(126px, 42%) 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  min-height: 126px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(101, 220, 198, 0.08), rgba(217, 107, 56, 0.07)),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.menuKeyArt {
  position: relative;
  align-self: stretch;
  min-height: 110px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: url("assets/key-art.svg") center / cover no-repeat, #141923;
  overflow: hidden;
}

.menuKeyArt::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.menuKeyArt .classAvatar.huge {
  position: absolute;
  left: 9px;
  bottom: 9px;
  width: 58px;
  height: 58px;
  background-size: 290px 174px, auto;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.48);
  z-index: 1;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--soul);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.classCard {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 9px;
  align-items: center;
}

.classCard .classActions {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.classAvatar {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-image: url("assets/heroes.svg"), linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.24));
  background-size: 290px 174px, auto;
  background-repeat: no-repeat;
  image-rendering: auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.22);
}

.classAvatar.huge {
  width: 82px;
  height: 82px;
  background-size: 410px 246px, auto;
}

.classAvatar.warrior { background-position: 0 0, center; }
.classAvatar.archer { background-position: -58px 0, center; }
.classAvatar.mage { background-position: -116px 0, center; }
.classAvatar.assassin { background-position: -174px 0, center; }
.classAvatar.paladin { background-position: -232px 0, center; }
.classAvatar.huge.warrior { background-position: 0 0, center; }
.classAvatar.huge.archer { background-position: -82px 0, center; }
.classAvatar.huge.mage { background-position: -164px 0, center; }
.classAvatar.huge.assassin { background-position: -246px 0, center; }
.classAvatar.huge.paladin { background-position: -328px 0, center; }
.menuKeyArt .classAvatar.huge.warrior { background-position: 0 0, center; }
.menuKeyArt .classAvatar.huge.archer { background-position: -58px 0, center; }
.menuKeyArt .classAvatar.huge.mage { background-position: -116px 0, center; }
.menuKeyArt .classAvatar.huge.assassin { background-position: -174px 0, center; }
.menuKeyArt .classAvatar.huge.paladin { background-position: -232px 0, center; }

.classMeta {
  min-width: 0;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px;
}

.card.selected {
  border-color: rgba(243, 198, 77, 0.82);
  box-shadow: inset 0 0 0 1px rgba(243, 198, 77, 0.22), 0 0 18px rgba(243, 198, 77, 0.08);
}

.card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.card p,
.card small {
  color: var(--muted);
  line-height: 1.35;
}

.card p {
  margin: 0 0 8px;
  font-size: 13px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.stack {
  display: grid;
  gap: 8px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.primary {
  background: linear-gradient(180deg, #b64e2c, #742a1d);
  border-color: rgba(255, 200, 120, 0.35);
  box-shadow: 0 4px 16px rgba(180, 70, 30, 0.25);
}

.danger {
  border-color: rgba(235, 78, 78, 0.56);
  background: rgba(100, 26, 28, 0.82);
}

.ok { color: #b5ffdc; }
.warn { color: #ffd87a; }

.rarity-common { color: #dedbd2; }
.rarity-good { color: #6de390; }
.rarity-rare { color: #ffd64f; }
.rarity-legendary { color: #ce8cff; }
.rarity-ancient { color: #ff9d42; }

@media (min-width: 720px) {
  .inventoryGrid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: start;
  }

  .inventorySheet {
    width: min(100%, 860px);
  }

  .hud {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar,
  .resourceBar {
    width: min(560px, calc(100vw - 36px));
  }
}

@media (max-width: 520px) {
  .inventoryHeader {
    flex-direction: column;
    align-items: stretch;
  }

  .inventoryHeaderActions {
    justify-content: stretch;
  }

  .inventoryHeaderActions button {
    flex: 1 1 0;
  }

  .inventoryStats span {
    min-width: 100%;
  }

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

  .classCard {
    grid-template-columns: 68px 1fr;
  }

  .classAvatar {
    width: 64px;
    height: 64px;
    background-size: 320px 192px, auto;
  }

  .classAvatar.warrior { background-position: 0 0, center; }
  .classAvatar.archer { background-position: -64px 0, center; }
  .classAvatar.mage { background-position: -128px 0, center; }
  .classAvatar.assassin { background-position: -192px 0, center; }
  .classAvatar.paladin { background-position: -256px 0, center; }
}

@media (max-width: 390px) {
  .sheetHeader h1,
  .sheetHeader h2 {
    font-size: 21px;
  }

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

  .classAvatar.huge {
    width: 70px;
    height: 70px;
    background-size: 350px 210px, auto;
  }

  .classAvatar.huge.warrior { background-position: 0 0, center; }
  .classAvatar.huge.archer { background-position: -70px 0, center; }
  .classAvatar.huge.mage { background-position: -140px 0, center; }
  .classAvatar.huge.assassin { background-position: -210px 0, center; }
  .classAvatar.huge.paladin { background-position: -280px 0, center; }
}

.menuStats {
  position: static;
  margin: 12px 0;
  flex-wrap: wrap;
  border-radius: 8px;
}

.inlineStats {
  position: static;
  margin: 0;
  flex-wrap: wrap;
  border-radius: 8px;
}

.menuStats span,
.inlineStats span {
  min-width: calc(50% - 8px);
}

.menuFooter {
  margin-top: 12px;
}

.relicGrid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.relicCard,
.codexCard {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
}

.codexCard {
  grid-template-columns: 74px 1fr;
}

.relicCard.locked {
  opacity: 0.56;
}

.relicIcon {
  width: 44px;
  height: 44px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background-image: url("assets/relics.svg"), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.26));
  background-size: 264px 44px, auto;
  background-repeat: no-repeat;
  image-rendering: auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.22);
}

.relic-emberCore { background-position: 0 0, center; }
.relic-jadeFeather { background-position: -44px 0, center; }
.relic-moonLens { background-position: -88px 0, center; }
.relic-martyrIcon { background-position: -132px 0, center; }
.relic-abyssCompass { background-position: -176px 0, center; }
.relic-stormBrand { background-position: -220px 0, center; }

.codex h3 {
  margin: 8px 0 2px;
}

.codex .classGrid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (max-width: 360px) {
  .actions {
    grid-template-columns: repeat(3, 52px);
  }

  .actionBtn {
    width: 52px;
    font-size: 9px;
  }

  .actionBtn.attack {
    width: 62px;
    height: 58px;
    min-height: 58px;
  }

  .joystick {
    width: 94px;
    height: 94px;
  }

  .miniBtn {
    width: 50px;
  }
}


@media (pointer: coarse), (max-width: 900px) {
  .topbar,
  .resourceBar,
  .sheet,
  .card,
  .inventorySheet,
  .menuPanel,
  .panelInner,
  .dialog,
  .joystick {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .topbar,
  .resourceBar,
  .sheet,
  .card,
  .inventorySheet,
  .menuPanel,
  .panelInner,
  .dialog {
    border-color: rgba(255, 255, 255, 0.10);
  }

  button,
  .miniBtn,
  .iconBtn {
    transition: none;
  }
}
