:root {
  color-scheme:dark;
  --bg:#11161c;
  --panel:#1b222b;
  --line:#343d47;
  --ink:#eef0f3;
  --muted:#a7b1bc;
  --gold:#dfbe83;
  font-family:Inter,"Segoe UI","Noto Sans",Arial,sans-serif;
  font-size:16px
}
* {
  box-sizing:border-box
}
body {
  margin:0;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6
}
a {
  color:inherit;
  text-decoration:none
}
a:hover {
  color:var(--gold)
}
button,input,select {
  font:inherit
}
button,select,.button {
  border:1px solid var(--line);
  background:var(--panel);
  color:var(--ink);
  border-radius:6px;
  padding:9px 14px;
  cursor:pointer
}
button:hover,.button:hover {
  border-color:var(--gold)
}
button:disabled {
  opacity:.4;
  cursor:default
}
input {
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  background:var(--bg);
  color:var(--ink);
  padding:10px 14px
}
input:focus,select:focus,button:focus-visible,a:focus-visible {
  outline:2px solid var(--gold);
  outline-offset:3px
}
h1,h2,h3,p {
  margin:0
}
h1 {
  font-family:Georgia,"Noto Serif",serif;
  font-size:clamp(1.9rem,3vw,2.7rem);
  font-weight:500;
  line-height:1.2
}
h2 {
  font-size:1.25rem;
  font-weight:600;
  line-height:1.5
}
h3 {
  font-size:1rem;
  font-weight:600
}
small {
  font-size:.875rem;
  color:var(--muted)
}
#sidebar {
  position:fixed;
  inset:0 auto 0 0;
  width:232px;
  border-right:1px solid var(--line);
  background:#151b22;
  display:flex;
  flex-direction:column;
  padding:35px 24px;
  z-index:20
}
.brand {
  font-family:Georgia,serif;
  letter-spacing:.08em;
  color:var(--gold);
  font-size:1.75rem;
  line-height:1.2
}
.brand span {
  display:block;
  font:500 .875rem "Segoe UI",sans-serif;
  letter-spacing:.3em;
  color:var(--ink);
  margin-top:8px
}
.game-title {
  font-size:.875rem;
  color:var(--muted);
  margin:20px 0 32px
}
#navigation {
  display:grid;
  gap:5px
}
#navigation a {
  padding:10px 12px;
  border-radius:5px;
  font-size:.95rem
}
#navigation a[aria-current] {
  background:#2a3037;
  color:var(--gold);
  box-shadow:inset 2px 0 var(--gold)
}
.sidebar-foot {
  margin-top:auto;
  padding-top:24px;
  border-top:1px solid var(--line);
  display:grid;
  gap:10px;
  font-size:.875rem;
  color:var(--muted)
}
.shell {
  margin-left:232px
}
header {
  height:84px;
  display:flex;
  gap:24px;
  align-items:center;
  padding:0 40px;
  border-bottom:1px solid var(--line);
  background:#141a21
}
#crumb {
  color:var(--muted);
  font-size:.875rem
}
#search-launch {
  margin-left:auto;
  min-width:130px;
  text-align:left;
  color:var(--muted)
}
.language {
  display:flex;
  align-items:center;
  gap:12px;
  font-size:.875rem;
  color:var(--muted)
}
.language select {
  max-width:195px
}
#menu {
  display:none
}
main {
  max-width:1500px;
  margin:auto;
  padding:40px;
  min-height:80vh
}
.page-heading {
  margin-bottom:32px
}
.page-heading p {
  color:var(--muted);
  margin-top:12px;
  max-width:780px
}
.stat-strip {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-block:1px solid var(--line);
  margin-bottom:40px
}
.stat-strip a {
  padding:20px 24px;
  border-right:1px solid var(--line)
}
.stat-strip a:first-child {
  padding-left:0
}
.stat-strip a:last-child {
  border:0
}
.stat-strip strong {
  font:500 1.8rem Georgia,serif;
  display:block
}
.stat-strip span {
  font-size:.875rem;
  color:var(--muted)
}
.section-title {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:20px;
  margin:30px 0 18px
}
.section-title a {
  font-size:.875rem;
  color:var(--gold)
}
.area-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px
}
.area-card {
  position:relative;
  display:block;
  padding:10px 16px 20px;
  background:linear-gradient(145deg,#242b32,#191f26);
  border:1px solid var(--line);
  border-radius:8px;
  transition:border-color .15s
}
.area-card:hover {
  border-color:var(--gold)
}
.area-card img {
  display:block;
  width:100%;
  height:150px;
  object-fit:contain;
  margin:6px 0 16px
}
.area-card span {
  font-size:.875rem;
  color:var(--gold)
}
.area-card h3 {
  margin-top:5px
}
.gold-feature {
  border:1px solid var(--line);
  border-radius:8px;
  padding:24px;
  display:flex;
  gap:24px;
  align-items:center;
  background:var(--panel)
}
.gold-feature p {
  margin:8px 0;
  color:var(--muted)
}
.gold-feature a {
  color:var(--gold)
}
.item-image {
  width:64px;
  height:64px;
  object-fit:contain;
  flex-shrink:0
}
.hero-image {
  width:96px;
  height:96px;
  object-fit:contain
}
.toolbar {
  display:flex;
  gap:16px;
  margin-bottom:20px;
  align-items:flex-end;
  flex-wrap:wrap
}
.toolbar label {
  font-size:.875rem;
  color:var(--muted);
  display:grid;
  gap:7px;
  flex:1;
  min-width:140px
}
.toolbar label:first-child {
  flex:2;
  min-width:220px
}
.toolbar select {
  width:100%
}
.results-count {
  font-size:.875rem;
  color:var(--muted);
  margin:18px 0
}
.table-wrap {
  overflow-x:auto;
  border:1px solid var(--line);
  border-radius:7px
}
table {
  width:100%;
  border-collapse:collapse;
  text-align:left
}
th {
  font-size:.875rem;
  font-weight:500;
  color:var(--muted);
  background:#202731;
  padding:14px 18px;
  white-space:nowrap
}
td {
  padding:15px 18px;
  border-top:1px solid var(--line);
  font-size:.95rem
}
td a {
  color:var(--gold)
}
td small {
  display:block;
  margin-top:4px;
  font-size:.8rem
}
tbody tr:hover {
  background:#1b222a
}
.loot-icon {
  display:inline-flex;
  margin-right:6px
}
.loot-icon img {
  width:34px;
  height:34px
}
.loot-icon span {
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip-path:inset(50%)
}
.pagination {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin:24px 0;
  color:var(--muted)
}
.item-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px
}
.item-card {
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:7px;
  min-width:0
}
.item-card h3 {
  overflow-wrap:anywhere
}
.item-card:hover,.hero-card:hover {
  border-color:var(--gold)
}
.hero-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px
}
.hero-card {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:7px;
  text-align:center;
  padding:24px 16px
}
.hero-card img {
  margin-bottom:14px
}
.hero-card small {
  display:block;
  margin-top:5px
}
.back {
  display:inline-block;
  margin-bottom:24px;
  color:var(--muted);
  font-size:.875rem
}
.stage-layout {
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:32px
}
.stage-panel {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:8px;
  padding:24px;
  align-self:start
}
.map-image {
  width:100%;
  height:200px;
  object-fit:contain
}
.stage-panel h2 {
  margin-top:20px
}
.stage-panel p {
  color:var(--gold);
  margin:6px 0 20px
}
.stage-nodes {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:8px
}
.stage-nodes a {
  border:1px solid var(--line);
  text-align:center;
  padding:9px 0;
  border-radius:4px;
  font-size:.875rem
}
.stage-nodes a[aria-current] {
  background:var(--gold);
  color:#171b20;
  border-color:var(--gold)
}
.stage-summary {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid var(--line);
  padding-bottom:24px;
  gap:16px
}
.stage-summary strong {
  display:block;
  font-size:1.5rem;
  font-weight:500;
  margin-top:5px
}
.stage-content section {
  margin-top:28px
}
.stage-content h2 {
  margin-bottom:14px
}
.stage-content .item-grid {
  grid-template-columns:repeat(2,1fr)
}
.monster-row {
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
  border-bottom:1px solid var(--line)
}
.monster-row span {
  color:var(--muted);
  font-size:.875rem
}
.monster-row strong {
  font-weight:500
}
.detail-heading {
  display:flex;
  align-items:center;
  gap:24px;
  margin-bottom:32px
}
.detail-heading .page-heading {
  margin:0
}
.detail-heading img {
  width:112px;
  height:112px
}
.article {
  max-width:850px;
  line-height:1.8
}
.article p {
  margin:0 0 20px;
  color:#c4cbd3
}
.article section {
  margin-bottom:32px
}
.article h2 {
  margin-bottom:12px
}
.native-copy {
  white-space:pre-line
}
.article a {
  color:var(--gold)
}
.section-copy {
  margin:26px 0
}
.button {
  display:inline-block;
  margin:10px 0
}
.guide-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px
}
.guide-card {
  padding:28px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:8px
}
.guide-card p {
  color:var(--muted);
  margin-top:12px
}
.hash {
  font-size:.8rem;
  overflow-wrap:anywhere;
  display:block;
  min-width:160px
}
.empty {
  padding:48px;
  text-align:center;
  color:var(--muted)
}
footer {
  border-top:1px solid var(--line);
  padding:24px 40px;
  color:var(--muted);
  font-size:.875rem
}
dialog {
  width:min(640px,90vw);
  max-height:80vh;
  overflow:auto;
  border:1px solid var(--line);
  border-radius:10px;
  background:var(--panel);
  color:var(--ink);
  padding:24px
}
dialog::backdrop {
  background:#0009
}
.dialog-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px
}
#search-results a {
  display:block;
  padding:14px 0;
  border-bottom:1px solid var(--line)
}
#search-results small {
  display:block
}
.skip {
  position:absolute;
  top:-80px;
  left:250px;
  z-index:50;
  background:var(--gold);
  color:#111;
  padding:12px
}
.skip:focus {
  top:10px
}
@media(min-width:1600px) {
  main {
  padding:48px 56px
}

}
@media(max-width:1150px) {
  #sidebar {
  width:204px;
  padding:30px 18px
}
.shell {
  margin-left:204px
}
main {
  padding:30px
}
header {
  padding:0 30px
}
.area-grid {
  grid-template-columns:repeat(2,1fr)
}
.item-grid {
  grid-template-columns:repeat(2,1fr)
}
.stage-layout {
  grid-template-columns:260px minmax(0,1fr);
  gap:24px
}
.stage-content .item-grid {
  grid-template-columns:1fr
}
.hero-grid {
  grid-template-columns:repeat(3,1fr)
}

}
@media(max-width:800px) {
  #sidebar {
  transform:translateX(-100%);
  transition:transform .2s
}
#sidebar.open {
  transform:translateX(0);
  top:75px
}
.shell {
  margin:0
}
#menu {
  display:block
}
header {
  height:auto;
  min-height:75px;
  padding:14px 20px;
  gap:12px;
  position:sticky;
  top:0;
  z-index:30
}
#crumb,.language>span {
  display:none
}
#search-launch {
  min-width:0
}
main {
  padding:26px 20px
}
.stage-layout {
  grid-template-columns:1fr
}
.stage-panel {
  display:grid;
  grid-template-columns:130px 1fr;
  gap:0 20px
}
.map-image {
  height:100px;
  grid-row:span 3
}
.stage-panel h2 {
  margin:0
}
.stage-panel p {
  margin:5px 0 10px
}
.stage-nodes {
  grid-column:1/-1;
  margin-top:14px;
  grid-template-columns:repeat(10,1fr)
}
.stage-content .item-grid {
  grid-template-columns:repeat(2,1fr)
}
footer {
  padding:24px 20px
}
.stat-strip strong {
  font-size:1.5rem
}
.stat-strip a {
  padding:16px
}
.hero-grid {
  grid-template-columns:repeat(3,1fr)
}

}
@media(max-width:500px) {
  .language select {
  max-width:125px;
  padding:9px
}
.stat-strip {
  grid-template-columns:repeat(2,1fr)
}
.stat-strip a:nth-child(2) {
  border-right:0
}
.stat-strip a:nth-child(3) {
  padding-left:0;
  border-top:1px solid var(--line)
}
.stat-strip a:nth-child(4) {
  border-top:1px solid var(--line)
}
.area-grid {
  gap:12px
}
.area-card {
  padding:10px 12px 16px
}
.area-card img {
  height:105px
}
.area-card h3 {
  font-size:.95rem
}
.item-grid,.stage-content .item-grid,.guide-grid {
  grid-template-columns:1fr
}
.hero-grid {
  grid-template-columns:repeat(2,1fr)
}
.stage-nodes {
  grid-template-columns:repeat(5,1fr)
}
.monster-row {
  flex-wrap:wrap;
  gap:4px
}
.gold-feature {
  padding:18px;
  gap:16px
}
.detail-heading {
  gap:16px
}
.detail-heading img {
  width:80px;
  height:80px
}
.toolbar label {
  min-width:100%
}
.section-title {
  align-items:start
}
.section-title a {
  max-width:140px;
  text-align:right
}

}
@media(prefers-reduced-motion:reduce) {
  * {
  transition:none!important
}

}


/* v2: database pages */
.muted {
  color:var(--muted)
}
.small {
  font-size:.875rem
}
.big {
  font-size:1.1rem;
  max-width:900px;
  margin-bottom:24px
}

.two-col {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  margin-bottom:28px
}
.two-col>section {
  min-width:0
}

section {
  margin-bottom:32px
}
section h2 {
  margin-bottom:12px
}
section h3 {
  margin:16px 0 8px;
  color:var(--gold);
  font-weight:500
}

.card {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:8px;
  padding:20px 22px
}
.card-head {
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:10px
}

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

table.stats th {
  width:46%;
  font-weight:500;
  color:var(--muted);
  background:transparent;
  white-space:normal
}
table.stats td {
  font-variant-numeric:tabular-nums
}

table.compact th,table.compact td {
  padding:9px 12px;
  font-size:.9rem;
  vertical-align:top
}
td small,th small {
  display:block;
  font-size:.75rem;
  color:var(--muted);
  margin-top:2px
}
.drop-summary>b { color:var(--gold); font-variant-numeric:tabular-nums }
.drop-tooltip { display:inline-grid; place-items:center; width:1.15rem; height:1.15rem; margin-left:.25rem; border:1px solid var(--muted); border-radius:50%; color:var(--muted); font-size:.72rem; font-weight:700; line-height:1; cursor:help; vertical-align:text-bottom }
.drop-tooltip:hover,.drop-tooltip:focus-visible { color:var(--gold); border-color:var(--gold); outline:none }

tr.current td {
  background:#262d36
}

.icon,.row-icon,.chip-icon,.ab-icon,.skill-icon,.mon-icon,.item-image,.hero-image,.portrait {
  object-fit:contain;
  vertical-align:middle;
  background:#0d1116;
  border-radius:6px
}
.row-icon {
  width:32px;
  height:32px;
  margin-right:8px
}
.chip-icon {
  width:28px;
  height:28px
}
.ab-icon {
  width:20px;
  height:20px;
  margin-right:6px
}
.portrait {
  width:112px;
  height:112px;
  flex-shrink:0
}
.no-icon {
  display:inline-block;
  width:1em;
  height:1em
}

.ab-list {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:6px
}
.ab-list li {
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:6px
}
.ab-list li small {
  margin-left:auto;
  font-size:.75rem;
  color:var(--muted)
}

.item-chip,.chip {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:5px 10px 5px 6px;
  margin:3px 4px 3px 0;
  border:1px solid var(--line);
  border-radius:6px;
  background:var(--panel);
  font-size:.9rem;
  color:var(--ink)
}
.item-chip b {
  color:var(--gold)
}
.chip {
  padding:5px 10px
}

.drop-rows {
  display:flex;
  flex-wrap:wrap;
  gap:4px
}
.drop-row {
  display:flex;
  align-items:center;
  gap:10px;
  padding:4px 0
}
.drop-row>span {
  font-size:.9rem;
  color:var(--muted)
}
.drop-group {
  margin-bottom:18px
}
.drop-group h3 {
  margin-top:8px
}

.stage-chips {
  display:flex;
  flex-wrap:wrap;
  gap:4px
}
.tag {
  font-size:.7rem;
  padding:2px 6px;
  border-radius:4px;
  background:var(--gold);
  color:#171b20;
  vertical-align:middle;
  margin-left:4px
}

.grade-1 {
  --g:#b8bec6
}
.grade-2 {
  --g:#7cc36a
}
.grade-3 {
  --g:#5ea9ff
}
.grade-4 {
  --g:#c78bff
}
.grade-5 {
  --g:#ffb347
}
.grade-6 {
  --g:#ff6767
}
.grade-7 {
  --g:#ff8fe0
}
.grade-8 {
  --g:#6fe3ff
}
.grade-9 {
  --g:#f3e77a
}
.grade-10 {
  --g:#ffffff
}

span.grade {
  color:var(--g,var(--ink));
  font-weight:600
}
.item-chip.grade,.item-card.grade,.hero-card.grade,.skill-card.grade,.card.grade {
  border-left:3px solid var(--g,var(--line))
}

.mon-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:12px
}
.mon-card {
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px;
  border:1px solid var(--line);
  border-radius:7px;
  background:var(--panel);
  min-width:0
}
.mon-card h3 {
  font-size:.95rem
}
.mon-icon {
  width:56px;
  height:56px;
  flex-shrink:0
}
.mini-stats {
  display:flex;
  gap:10px;
  font-size:.8rem;
  color:var(--muted);
  margin-top:4px;
  flex-wrap:wrap
}

.skill-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px
}
.skill-card {
  display:flex;
  gap:12px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:7px;
  background:var(--panel);
  min-width:0
}
.skill-card .skill-icon {
  width:48px;
  height:48px;
  flex-shrink:0
}
.skill-card p {
  font-size:.875rem;
  color:#c4cbd3;
  margin-top:6px
}
.skill-card:hover,.mon-card:hover {
  border-color:var(--gold)
}
.skill-block {
  margin-bottom:16px
}

.nav-pair {
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin:14px 0 24px;
  font-size:.9rem
}
.nav-pair a {
  color:var(--gold)
}

details {
  margin-top:12px
}
summary {
  cursor:pointer;
  color:var(--gold);
  font-size:.9rem
}
details .table-wrap {
  margin-top:10px
}

.formula-list {
  display:grid;
  gap:10px
}
.formula {
  padding:12px 14px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:6px
}
.formula b {
  display:block;
  color:var(--gold)
}
.formula span {
  display:block;
  font-size:.85rem;
  color:var(--muted)
}
.formula code {
  display:block;
  margin-top:6px;
  white-space:pre-wrap;
  overflow-wrap:anywhere;
  font-size:.85rem;
  color:#c4cbd3
}

.calc {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-bottom:28px
}
.calc-col {
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:8px;
  padding:20px
}
.calc-col label {
  display:grid;
  gap:6px;
  font-size:.875rem;
  color:var(--muted);
  margin-bottom:12px
}
.calc-col label.check {
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:10px
}
.calc-col select,.calc-col input {
  width:100%
}
.calc-col input[type=checkbox] {
  width:auto
}
.calc-col h2 {
  margin-bottom:14px
}
.calc-col h3 {
  margin-top:20px
}

.bonus-row {
  display:grid;
  grid-template-columns:1fr 110px 40px;
  gap:8px;
  margin-bottom:8px
}
.bonus-row button {
  padding:6px
}

.hero-card small {
  display:block;
  margin-top:4px
}
.item-card p {
  margin-top:4px;
  color:var(--muted)
}

code {
  font-size:.85em;
  color:#c4cbd3
}

@media(max-width:1150px) {
  .two-col,.passive-grid,.skill-grid,.calc {
  grid-template-columns:1fr
}

}

@media(max-width:800px) {
  .bonus-row {
  grid-template-columns:1fr 90px 36px
}
.portrait {
  width:80px;
  height:80px
}

}

.donate-header {
  white-space:nowrap
}
@media(max-width:800px) {
  header {
  flex-wrap:wrap
}
.donate-header {
  font-size:.8rem;
  padding:7px 10px
}

}

/* in-game style equipment tooltip card */
.eq-layout { align-items: start }
.eq-card { border: 1px solid var(--line); border-left: 4px solid var(--g,var(--line)); border-radius: 10px; background: var(--panel); overflow: hidden; max-width: 440px }
.eq-head { display: flex; justify-content: space-between; gap: 16px; padding: 18px 20px; background: linear-gradient(135deg, color-mix(in srgb, var(--g,#889) 30%, var(--panel)), var(--panel) 70%) }
.eq-head h1 { font: 600 1.35rem/1.25 Inter,"Segoe UI","Noto Sans",Arial,sans-serif; overflow-wrap: anywhere }
.eq-tier { color: var(--g,var(--gold)); font-weight: 600; margin-top: 6px }
.eq-slot { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; margin-top: 8px }
.eq-slot-icon, .eq-class-icon { width: auto; height: 22px; background: transparent; border-radius: 0; vertical-align: middle }
.eq-class-icon { height: 18px }
.eq-icon { position: relative; width: 72px; height: 72px; flex-shrink: 0 }
.eq-icon img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; border-radius: 8px }
.eq-icon .eq-item { padding: 6px; background: #0d1116 }
.eq-icon .eq-frame { background: transparent }
.eq-level { padding: 10px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--gold); font-size: .95rem }
.eq-level b { font-size: 1.05rem; margin-left: 4px }
.eq-abs { list-style: none; margin: 0; padding: 14px 20px; display: grid; gap: 10px }
.eq-abs li { display: flex; align-items: center; gap: 10px; font-size: 1.05rem }
.eq-abs li b { margin-left: auto; font-weight: 500; font-variant-numeric: tabular-nums }
.eq-jewels { padding: 12px 20px; border-top: 1px solid var(--line); display: grid; gap: 8px }
.eq-jewel { display: flex; align-items: center; gap: 10px; color: var(--muted) }
.eq-jewel-slot { width: 28px; height: 28px; background: transparent; border-radius: 0 }
.eq-trade { padding: 12px 20px; border-top: 1px solid var(--line); color: #e78b8b; font-weight: 500 }
.eq-trade.ok { color: #8fd47c }

/* competition key art and medals */
.league-card { position: relative; overflow: hidden }
.league-card > * { position: relative }
.league-card > .league-art { position: absolute; top: 0; right: 0; width: 200px; height: 100%; object-fit: cover; object-position: top; border-radius: 0; background: transparent; opacity: .5; mask-image: linear-gradient(90deg, transparent, #000 50%); -webkit-mask-image: linear-gradient(90deg, transparent, #000 50%) }
.medal { width: 28px; height: 28px; margin-right: 6px; background: transparent; border-radius: 0; vertical-align: middle }
