:root {
  --surface-ink: rgba(13, 15, 14, 0.86);
  --surface-panel: rgba(8, 8, 8, 0.72);
  --surface-page: rgb(74, 72, 67);
  --text-primary: rgb(250, 250, 246);
  --text-muted: rgb(184, 184, 173);
  --accent-hover: rgb(209, 199, 148);
  --accent-pressed: rgb(209, 199, 11);
  --border-light: rgba(255, 255, 255, 0.18);
  --edo-surface-ink: rgba(13, 15, 14, 0.86);
  --edo-surface-panel: rgba(8, 8, 8, 0.78);
  --edo-text-primary: rgb(250, 250, 246);
  --edo-text-muted: rgb(184, 184, 173);
  --edo-accent-hover: rgb(209, 199, 148);
  --edo-border-light: rgba(255, 255, 255, 0.18);
}
body.edo-static {
  margin: 0;
  min-height: 100vh;
  color: var(--text-primary);
  background: linear-gradient(rgba(74, 72, 67, 0.84), rgba(74, 72, 67, 0.9)),
    url("media/site/char-select-bg.png") center top / cover fixed no-repeat,
    var(--surface-page);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.edo-static * {
  box-sizing: border-box;
}
body.edo-static a {
  color: inherit;
}
body.edo-static h1 {
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}
body.edo-static h2 {
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: 0;
}
body.edo-static p {
  line-height: 1.6;
}
body.edo-static nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
body.edo-static nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
body.edo-static nav a:hover {
  color: var(--accent-hover);
}
body.edo-static .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
body.edo-static .site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(13, 15, 14, 0.94);
  border-bottom: 1px solid var(--border-light);
}
body.edo-static .brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}
body.edo-static .page-shell {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}
body.edo-static .home-hero,
body.edo-static .entity-detail-panel,
body.edo-static .detail-subpanel,
body.edo-static .panel,
body.edo-static .entity-card,
body.edo-static .entity-pill-card {
  background: var(--surface-panel);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .home-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  padding-top: 15px;
  overflow: hidden;
  background: rgba(13, 15, 14, 0.88);
}
body.edo-static .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(13, 15, 14, 0.94), rgba(13, 15, 14, 0.72) 42%, rgba(74, 72, 67, 0.54)),
        url("media/site/intro-bg.png") top / cover no-repeat;
  opacity: 0.72;
}
body.edo-static .home-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 45px;
}
body.edo-static .home-hero-copy h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}
body.edo-static .home-logo {
  display: block;
  width: min(560px, 62vw);
  max-height: 150px;
  object-fit: contain;
  object-position: center bottom;
  margin: 0 auto;
}
body.edo-static .home-hero-text {
  justify-self: start;
  text-align: left;
}
body.edo-static .home-hero-text .home-subtitle {
  margin: 0 0 8px;
  color: var(--accent-hover);
  font-size: 22px;
  font-weight: 800;
}
body.edo-static .home-hero-text .home-subtitle +p {
  font-style: italic;
  color: gray;
}
body.edo-static .eyebrow {
  margin: 0 0 8px;
  color: var(--accent-hover);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
body.edo-static .subtle {
  color: var(--text-muted);
}
body.edo-static .index-section {
  margin-top: 30px;
}
body.edo-static .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}
body.edo-static .boss-card-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
body.edo-static .pill-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.edo-static .entity-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
body.edo-static .entity-card:hover {
  border-color: var(--accent-hover);
}
body.edo-static .entity-card img {
  width: 100%;
  max-width: 140px;
  height: auto;
  max-height: 108px;
  object-fit: contain;
  object-position: center center;
  image-rendering: pixelated;
  align-self: center;
}
body.edo-static .entity-card span {
  font-weight: 800;
}
body.edo-static .boss-card img {
  max-width: 200px;
  height: auto;
  max-height: 160px;
}
body.edo-static .entity-pill-card {
  position: relative;
  z-index: 1;
  min-height: 52px;
  min-width: 176px;
  max-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}
body.edo-static .entity-pill-card:hover {
  border-color: var(--accent-hover);
}
body.edo-static .entity-pill-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  image-rendering: pixelated;
  flex: 0 0 auto;
}
body.edo-static .entity-pill-card span {
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.edo-static .entity-page {
  display: grid;
  gap: 18px;
}
body.edo-static .commander-variants {
  display: grid;
  gap: 14px;
}
body.edo-static .commander-variants >h2 {
  margin: 0;
}
body.edo-static .commander-variant .detail-sprite-frame {
  min-height: 240px;
}
body.edo-static .commander-variant .detail-sprite-frame img {
  max-width: 220px;
  max-height: 260px;
}
body.edo-static .commander-variant h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: 0;
}
body.edo-static .commander-variant-stats {
  margin-top: 18px;
}
body.edo-static .entity-detail-body .detail-shell {
  width: min(1180px, calc(100vw - 8px));
  padding: 4px 0 56px;
}
body.edo-static .entity-detail-panel {
  padding: 20px;
  background: rgba(8, 8, 8, 0.8);
}
body.edo-static .entity-detail-main {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
body.edo-static .detail-sprite-frame {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 320px;
  overflow: visible;
}
body.edo-static .detail-sprite-frame img {
  max-width: 255px;
  max-height: 330px;
  object-fit: contain;
  object-position: center top;
  image-rendering: pixelated;
}
body.edo-static .entity-page-small-art .entity-detail-main {
  grid-template-columns: 180px minmax(0, 1fr);
}
body.edo-static .entity-page-small-art .detail-sprite-frame {
  min-height: 126px;
  align-items: center;
}
body.edo-static .entity-page-small-art .detail-sprite-frame img {
  max-width: 140px;
  max-height: 108px;
}
body.edo-static .detail-copy {
  padding-right: 8px;
}
body.edo-static .detail-copy h1 {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}
body.edo-static .detail-copy p {
  max-width: 78ch;
}
body.edo-static .detail-stats {
  margin-top: 22px;
}
body.edo-static .detail-stats h2 {
  margin-bottom: 14px;
}
body.edo-static .detail-bottom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
body.edo-static .detail-subpanel {
  padding: 20px;
  background: rgba(8, 8, 8, 0.8);
}
body.edo-static .detail-subpanel h2 {
  margin-bottom: 14px;
}
body.edo-static .panel {
  padding: 20px;
}
body.edo-static .panel p {
  max-width: none;
}
body.edo-static .guide-body h3 {
  margin: 20px 0 6px;
  font-size: 18px;
}
body.edo-static .guide-body h3:first-child {
  margin-top: 0;
}
body.edo-static .media-gallery {
  overflow: hidden;
}
body.edo-static .sprite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
body.edo-static .sprite-grid figure {
  margin: 0;
  min-height: 154px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(13, 15, 14, 0.62);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .sprite-grid img {
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
  image-rendering: pixelated;
}
body.edo-static .sprite-grid figcaption {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
body.edo-static .castle-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
body.edo-static .castle-info-card,
body.edo-static .castle-tier-row {
  padding: 14px;
  background: rgba(13, 15, 14, 0.62);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .castle-info-card h3,
body.edo-static .castle-tier-row h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
body.edo-static .castle-info-card p {
  margin: 0 0 12px;
  color: var(--text-muted);
  line-height: 1.45;
}
body.edo-static .castle-tier-list {
  display: grid;
  gap: 12px;
}
body.edo-static .castle-tier-row {
  display: grid;
  grid-template-columns: minmax(360px, 480px) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}
body.edo-static .castle-tier-copy p {
  margin: 0 0 12px;
  color: var(--text-muted);
  line-height: 1.45;
}
body.edo-static .castle-tier-art {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: center;
  min-height: 240px;
  overflow: visible;
}
body.edo-static .castle-tier-art img {
  width: auto;
  height: auto;
  max-width: 220px;
  max-height: 240px;
  object-fit: contain;
  image-rendering: pixelated;
}
body.edo-static .unit-composition {
  display: grid;
  gap: 8px;
}
body.edo-static .unit-stack {
  display: grid;
  gap: 4px;
  padding: 7px 8px;
  background: var(--surface-ink);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .unit-stack span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
}
body.edo-static .unit-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  align-items: end;
  min-height: 32px;
}
body.edo-static .unit-icons img {
  width: 22px;
  height: 30px;
  object-fit: contain;
  object-position: center bottom;
  image-rendering: pixelated;
}
body.edo-static .mini-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.edo-static .mini-stat {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-width: 124px;
  padding: 6px 8px;
  background: var(--surface-ink);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .mini-stat span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
}
body.edo-static .mini-stat strong {
  font-size: 14px;
}
body.edo-static .unlocks-shell .entity-detail-panel {
  min-height: 0;
}
body.edo-static .unlocks-hero {
  padding: 26px 28px;
}
body.edo-static .unlock-timeline,
body.edo-static .unlock-score-list {
  display: grid;
}
body.edo-static .unlock-timeline {
  gap: 14px;
}
body.edo-static .unlock-score-list {
  gap: 12px;
}
body.edo-static .unlock-score-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  background: rgba(13, 15, 14, 0.62);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .unlock-score-row h3 {
  margin: 6px 0 0;
  color: var(--accent-hover);
  font-size: 18px;
}
body.edo-static .unlock-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body.edo-static .unlock-pill-list-wide {
  gap: 10px;
}
body.edo-static .unlock-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  max-width: 360px;
  padding: 6px 9px;
  background: var(--surface-ink);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
body.edo-static .unlock-pill em {
  margin-left: auto;
  color: var(--accent-hover);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}
body.edo-static .unlock-pill-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-weight: 900;
  font-size: 13px;
}
body.edo-static .unlock-pill-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}
body.edo-static .unlock-pill-copy strong {
  font-size: 13px;
  line-height: 1.15;
}
body.edo-static .unlock-pill-copy span {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
body.edo-static .unlock-pill-hidden .unlock-pill-icon {
  color: var(--text-muted);
}
body.edo-static .stat-grid,
body.edo-static .pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.edo-static .stat-pill {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: space-between;
  min-width: 182px;
  padding: 8px 10px;
  background: var(--surface-ink);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  text-decoration: none;
  cursor: default;
}
body.edo-static .stat-pill:hover {
  border-color: var(--accent-hover);
}
body.edo-static .stat-pill span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  flex: 1 1 auto;
}
body.edo-static .stat-pill strong {
  font-size: 15px;
}
body.edo-static .related-pill {
  min-width: auto;
  cursor: pointer;
}
body.edo-static .pill-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  image-rendering: pixelated;
  flex: 0 0 auto;
}
@media (max-width: 680px) {
  body.edo-static .site-header,
  body.edo-static .entity-detail-main,
  body.edo-static .detail-bottom-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  body.edo-static .entity-detail-main {
    display: grid;
  }
  body.edo-static .commander-variant .detail-sprite-frame {
    min-height: 150px;
  }
  body.edo-static .commander-variant .detail-sprite-frame img {
    max-width: 170px;
    max-height: 210px;
  }
  body.edo-static .detail-sprite-frame {
    min-height: 160px;
    justify-content: flex-start;
  }
  body.edo-static .detail-sprite-frame img {
    max-width: 180px;
    max-height: 220px;
  }
  body.edo-static .castle-tier-row {
    grid-template-columns: 1fr;
  }
  body.edo-static .castle-tier-art {
    justify-content: flex-start;
    min-height: 132px;
  }
  body.edo-static .castle-tier-art img {
    max-width: 132px;
    max-height: 140px;
  }
  body.edo-static .unlock-score-row {
    grid-template-columns: 1fr;
  }
  body.edo-static .home-hero {
    min-height: 220px;
    padding: 22px;
  }
  body.edo-static .home-logo {
    width: min(400px, 84vw);
  }
  body.edo-static .home-hero-text {
    justify-self: stretch;
  }
  body.edo-static .stat-pill {
    width: 100%;
  }
}
.mw-parser-output .edo-page {
  color: var(--edo-text-primary);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.mw-parser-output .edo-page a {
  color: var(--edo-accent-hover);
}
.mw-parser-output .edo-page .mw-headline,
.mw-parser-output .edo-page h1,
.mw-parser-output .edo-page h2,
.mw-parser-output .edo-page h3 {
  letter-spacing: 0;
}
.mw-parser-output .edo-panel,
.mw-parser-output .edo-infobox {
  background: var(--edo-surface-panel);
  border: 1px solid var(--edo-border-light);
  border-radius: 6px;
  padding: 1rem;
  margin: 0 0 1rem;
}
.mw-parser-output .edo-panel h2:first-child,
.mw-parser-output .edo-panel h3:first-child {
  margin-top: 0;
}
.mw-parser-output .edo-infobox {
  float: right;
  clear: right;
  width: min(320px, 38%);
  margin-left: 1rem;
}
.mw-parser-output .edo-stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.mw-parser-output .edo-stat-grid table {
  width: 100%;
  background: transparent;
  border-collapse: separate;
  border-spacing: 0.35rem;
}
.mw-parser-output .edo-stat-grid td,
.mw-parser-output .edo-stat-grid th {
  background: var(--edo-surface-ink);
  border: 1px solid var(--edo-border-light);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
}
.mw-parser-output .edo-infobox table {
  width: 100%;
  background: transparent;
  border-collapse: separate;
  border-spacing: 0.35rem;
}
.mw-parser-output .edo-media-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mw-parser-output .edo-media-grid img {
  image-rendering: pixelated;
  object-fit: contain;
}
.mw-parser-output .edo-infobox img {
  image-rendering: pixelated;
  object-fit: contain;
}
.mw-parser-output .edo-commander-variants img {
  image-rendering: pixelated;
  object-fit: contain;
}
.mw-parser-output .edo-inline-stats {
  width: 100%;
}
.mw-parser-output .edo-inline-stats th,
.mw-parser-output .edo-inline-stats td {
  background: var(--edo-surface-ink);
  border: 1px solid var(--edo-border-light);
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
}
@media (max-width: 720px) {
  .mw-parser-output .edo-infobox {
    float: none;
    width: auto;
    margin-left: 0;
  }
}
