:root {
  --hero-font: "Arial Black", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  --bg: #0c0f1a;
  --bg-soft: #111625;
  --panel: #151b2b;
  --panel-2: #0f1422;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f8ff;
  --muted: #8990a6;
  --muted-2: #c2c6d4;
  --yellow: #ffd139;
  --purple: #9146ff;
  --purple-2: #6e38d5;
  --danger: #f14d62;
  --sidebar: 318px;
  --scrollbar-lock-gap: 0px;
}

/* Source-backed location catalog */
.nav-submenu {
  max-height: min(78vh, 650px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.location-page-title > span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 54px;
  margin: 22px 0 16px;
  padding: 0 10px 0 16px;
  color: #8790a1;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.location-search > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.location-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.location-search button {
  width: 34px;
  height: 34px;
  color: #aab2c1;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
}

.location-category-filter {
  display: flex;
  gap: 8px;
  padding-bottom: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.location-category-filter button {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 0 14px;
  color: #b7bfce;
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.location-category-filter button:hover,
.location-category-filter button:focus-visible,
.location-category-filter button.is-active {
  color: #17140b;
  background: var(--yellow);
  border-color: var(--yellow);
  outline: 0;
}

.location-catalog-count {
  margin: 15px 0 10px;
  color: #8490a5;
  font-size: 13px;
}

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

.location-card {
  min-width: 0;
  overflow: hidden;
  color: #f4f6fb;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.location-card:hover,
.location-card:focus-visible {
  background: #151c2c;
  border-color: rgba(255, 212, 60, 0.48);
  outline: 0;
  transform: translateY(-3px);
}

.location-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #090d16;
}

.location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.location-card:hover .location-card-image img {
  transform: scale(1.035);
}

.location-card-body {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 16px;
}

.location-card-body > span {
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card h2 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.location-card small {
  margin-top: 5px;
  overflow: hidden;
  color: #8799ba;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-card p {
  display: -webkit-box;
  margin: 12px 0 16px;
  overflow: hidden;
  color: #b7bfce;
  font-size: 14px;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.location-card-body > strong {
  align-self: end;
  margin-top: auto;
  color: var(--yellow);
  font-size: 12px;
}

.location-guide-page {
  display: grid;
  gap: 20px;
}

.location-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  min-height: 390px;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(120, 70, 215, 0.17), transparent 38%),
    #111725;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
}

.location-detail-copy {
  align-self: center;
}

.location-detail-copy > span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail-copy h1 {
  max-width: 820px;
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
}

.location-detail-copy small {
  display: block;
  margin-bottom: 18px;
  color: #8da0c4;
  font-size: 18px;
}

.location-detail-copy p {
  max-width: 800px;
  margin: 0;
  color: #c5ccda;
  font-size: 17px;
  line-height: 1.62;
}

.location-detail-image {
  min-height: 320px;
  overflow: hidden;
  background: #090d16;
  border: 1px solid rgba(255, 212, 60, 0.2);
  border-radius: 12px;
}

.location-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.location-detail-content,
.location-detail-aside {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 13px;
}

.location-detail-content {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.location-guide-section {
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}

.location-detail-content h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 25px;
  line-height: 1.18;
}

.location-detail-content p,
.location-detail-content li {
  color: #c0c8d7;
  font-size: 16px;
  line-height: 1.68;
}

.location-detail-content p {
  margin: 0 0 15px;
}

.location-detail-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.location-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.location-section-heading h2 {
  margin: 0;
}

.location-section-heading > span {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 10px;
  color: #0b0f18;
  font-weight: 900;
  background: var(--yellow);
  border-radius: 999px;
}

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

.location-hero-card {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #0c121e;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

a.location-hero-card:hover {
  background: #141c2c;
  border-color: rgba(255, 212, 60, 0.4);
  transform: translateY(-2px);
}

.location-hero-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  background: #080c14;
}

.location-hero-card-copy {
  display: grid;
  min-height: 58px;
  place-items: center;
  padding: 12px 10px;
  text-align: center;
}

.location-hero-card-copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.location-table-wrap {
  margin: 18px 0 24px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.location-table-wrap table {
  width: 100%;
  border-collapse: collapse;
}

.location-table-wrap th,
.location-table-wrap td {
  min-width: 110px;
  padding: 12px 14px;
  color: #c6cedd;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.location-table-wrap th {
  color: #fff;
  background: rgba(255, 212, 60, 0.08);
}

.location-detail-aside {
  position: relative;
  align-self: stretch;
  padding: 0;
  background: transparent;
  border: 0;
}

.location-detail-aside > section + section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.location-detail-aside > section > span {
  display: block;
  margin-bottom: 7px;
  color: #7f8ba1;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-detail-aside > section > strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.location-store-banner {
  position: static;
  display: block;
  overflow: hidden;
  padding: 12px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.location-store-banner:hover,
.location-store-banner:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 212, 60, 0.42);
  outline: none;
}

.location-store-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.location-store-banner--full-art {
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.location-store-banner + section {
  margin-top: 14px;
  padding: 20px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 13px;
}

.location-related {
  display: grid;
  gap: 9px;
}

.location-related a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 7px;
  color: #dce1ea;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.location-related img {
  width: 48px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 1180px) {
  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .location-detail-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

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

@media (max-width: 820px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-detail-hero,
  .location-detail-layout {
    grid-template-columns: 1fr;
  }

  .location-detail-image {
    min-height: 260px;
  }

  .location-detail-aside {
    position: static;
  }

  .location-store-banner {
    position: static;
    max-width: 403px;
    margin: 0 auto;
  }

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

/* Ranked hero guides */
.content-detail-main .top-heroes-section {
  padding: 28px;
}

.content-detail-hero.content-detail-hero--ranked {
  min-height: 290px;
  background:
    linear-gradient(90deg, #0a0d16 0%, rgba(10, 13, 22, 0.98) 48%, rgba(10, 13, 22, 0.42) 72%, rgba(10, 13, 22, 0.08) 100%),
    var(--detail-image) calc(100% - 72px) 20% / auto 430px no-repeat,
    #0a0d16;
}

.content-detail-layout.content-detail-layout--ranked {
  grid-template-columns: minmax(0, 1fr);
}

.content-detail-layout--ranked .content-detail-aside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.content-detail-layout--ranked .content-detail-avoid {
  margin-top: 0;
  padding-top: 0;
  padding-left: 30px;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.top-heroes-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.top-heroes-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-heroes-heading h2 {
  margin: 0;
}

.top-heroes-heading > strong {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #17140b;
  background: var(--yellow);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.top-tier-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.top-tier-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 10px 14px;
  color: #c7cfdd;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.top-tier-legend-item strong {
  flex: 0 0 auto;
  color: var(--yellow);
  font-weight: 900;
}

.top-heroes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.top-hero-card {
  display: grid;
  grid-template-columns: 56px 118px minmax(0, 1fr);
  align-items: stretch;
  min-height: 142px;
  overflow: hidden;
  color: inherit;
  background: #0b111d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

a.top-hero-card:hover,
a.top-hero-card:focus-visible {
  background: #0e1625;
  border-color: rgba(255, 209, 57, 0.42);
  outline: 0;
  transform: translateY(-2px);
}

.top-hero-rank {
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(255, 209, 57, 0.055);
  border-right: 1px solid rgba(255, 209, 57, 0.12);
  font-size: 18px;
  font-weight: 900;
}

.top-hero-card > img {
  align-self: center;
  width: 118px;
  height: 142px;
  padding: 7px 0;
  object-fit: contain;
  object-position: var(--news-position, center);
  background: #080c14;
}

.top-hero-portraits {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  width: auto;
  background: #080c14;
}

.top-hero-card--portraits {
  grid-template-columns: 56px max-content minmax(0, 1fr);
}

.top-hero-card--portraits-stacked .top-hero-portraits {
  flex-direction: column;
}

.top-hero-portraits a {
  display: block;
  width: 118px;
  background: #080c14;
  transition: filter 150ms ease, transform 150ms ease;
}

.top-hero-portraits a:hover,
.top-hero-portraits a:focus-visible {
  z-index: 1;
  outline: 2px solid var(--yellow);
  outline-offset: -2px;
  filter: brightness(1.08);
}

.top-hero-portraits a:active {
  transform: scale(0.98);
}

.top-hero-portraits img {
  display: block;
  width: 118px;
  height: 142px;
  padding: 7px 0;
  object-fit: contain;
}

.top-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 16px 20px;
}

.top-hero-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.top-hero-title-row h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
}

.top-hero-title-row span {
  max-width: 48%;
  text-align: right;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.top-hero-copy p {
  color: #c7cfdd;
  font-size: 14px;
  line-height: 1.5;
}

.top-hero-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
  gap: 10px;
  margin-top: 14px;
}

.top-hero-options section {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 9px;
}

.top-hero-options h4 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 13px;
  line-height: 1.4;
}

.top-hero-options p {
  margin: 7px 0 0;
  color: #aeb9cc;
  font-size: 13px;
  line-height: 1.45;
}

.top-hero-options p:first-of-type {
  margin-top: 0;
}

.top-hero-options p strong {
  color: #ffffff;
}

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

.top-guide-fact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 16px;
  background: #0b111d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.top-guide-fact-card h3 {
  margin: 0 0 7px;
  color: var(--yellow);
  font-size: 16px;
  line-height: 1.3;
}

.top-guide-fact-card p {
  color: #bcc6d8;
}

.content-detail-main .top-guide-video-note {
  display: grid;
  gap: 18px;
  padding: 26px 28px 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 194, 24, 0.12), transparent 34%),
    #111827;
}

.top-guide-video-note-copy {
  display: grid;
  gap: 10px;
}

.top-guide-video-note-copy > span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-detail-main .top-guide-video-note-copy h2 {
  margin: 0;
}

.top-guide-video-note-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #080b12;
  border: 1px solid rgba(255, 209, 57, 0.32);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.top-guide-video-note-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.top-guide-video-note-link {
  justify-self: start;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.top-guide-video-note-link:hover,
.top-guide-video-note-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  outline: 0;
}

.top-guide-fact-heroes {
  display: flex;
  gap: 7px;
  align-self: start;
}

.top-guide-fact-heroes a {
  display: block;
  width: 58px;
  overflow: hidden;
  background: #070b13;
  border: 1px solid rgba(255, 209, 57, 0.38);
  border-radius: 7px;
}

.top-guide-fact-heroes a:hover,
.top-guide-fact-heroes a:focus-visible {
  border-color: var(--yellow);
  outline: none;
  transform: translateY(-2px);
}

.top-guide-fact-heroes img {
  display: block;
  width: 58px;
  height: 70px;
  object-fit: cover;
  object-position: top center;
}

.content-detail-aside-column {
  display: grid;
  gap: 20px;
  align-self: start;
}

.top-guide-context-promo {
  min-width: 0;
}

.account-store-aside-cta {
  display: block;
  aspect-ratio: 384 / 575;
  overflow: hidden;
  background: #090b10;
  border: 1px solid rgba(255, 200, 66, 0.28);
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.account-store-aside-cta img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-store-aside-cta--full-art {
  aspect-ratio: auto;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.account-store-aside-cta--full-art img {
  height: auto;
  object-fit: contain;
}

.account-store-aside-cta:hover,
.account-store-aside-cta:focus-visible {
  border-color: rgba(255, 216, 86, 0.78);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34), 0 0 24px rgba(255, 196, 40, 0.14);
  outline: 0;
  transform: translateY(-2px);
}

.donation-aside-cta {
  padding: 0;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255, 200, 66, 0.24);
  border-radius: 12px;
}

.donation-aside-visual {
  aspect-ratio: 1122 / 760;
  overflow: hidden;
  border-radius: 11px 11px 0 0;
}

.donation-aside-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.15);
}

.donation-aside-content {
  display: grid;
  padding: 18px 16px 16px;
}

.donation-aside-content span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.donation-aside-content strong {
  margin-top: 7px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.3;
}

.donation-aside-content p {
  margin: 8px 0 0;
  color: #9fa9bc;
  font-size: 14px;
  line-height: 1.4;
}

.donation-aside-content a {
  display: inline-flex;
  min-height: 48px;
  margin-top: 16px;
  align-items: center;
  justify-content: center;
  color: #11131a;
  background: linear-gradient(135deg, #ffe06b, #ffc21c);
  border: 1px solid #ffdf69;
  border-radius: 9px;
  box-shadow:
    0 0 18px rgba(255, 206, 43, 0.42),
    0 12px 30px rgba(255, 176, 0, 0.22);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  animation: donation-button-glow 2.4s ease-in-out infinite;
}

.donation-aside-content a:hover,
.donation-aside-content a:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 0 28px rgba(255, 216, 73, 0.68),
    0 16px 36px rgba(255, 176, 0, 0.3);
}

@keyframes donation-button-glow {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(255, 206, 43, 0.34),
      0 12px 30px rgba(255, 176, 0, 0.18);
  }

  50% {
    box-shadow:
      0 0 25px rgba(255, 216, 73, 0.58),
      0 14px 34px rgba(255, 176, 0, 0.27);
  }
}

@media (prefers-reduced-motion: reduce) {
  .donation-aside-content a {
    animation: none;
  }
}

.top-hero-copy small {
  display: inline-block;
  margin-top: 10px;
  padding-left: 10px;
  color: #8894aa;
  border-left: 2px solid rgba(255, 209, 57, 0.3);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .content-detail-hero.content-detail-hero--ranked {
    min-height: 310px;
    background:
      linear-gradient(90deg, rgba(10, 13, 22, 0.99), rgba(10, 13, 22, 0.76)),
      var(--detail-image) right 20% / auto 360px no-repeat,
      #0a0d16;
  }

  .content-detail-main .top-heroes-section {
    padding: 20px;
  }

  .top-heroes-heading {
    align-items: center;
  }

  .top-tier-legend {
    grid-template-columns: 1fr;
  }

  .top-tier-legend-item {
    align-items: flex-start;
  }

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

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

  .top-hero-card {
    grid-template-columns: 38px 76px minmax(0, 1fr);
  }

  .top-hero-card > img {
    width: 76px;
    height: 130px;
    padding: 6px 0;
  }

  .top-hero-portraits {
    width: auto;
  }

  .top-hero-portraits a,
  .top-hero-portraits img {
    width: 64px;
  }

  .top-hero-portraits img {
    height: 110px;
    padding: 6px 0;
  }

  .top-hero-card--portraits {
    grid-template-columns: 38px max-content minmax(0, 1fr);
  }

  .top-hero-copy {
    padding: 13px 12px;
  }

  .top-hero-title-row h3 {
    font-size: 16px;
  }

  .top-hero-title-row {
    display: grid;
    gap: 5px;
  }

  .top-hero-title-row span {
    max-width: none;
    text-align: left;
  }

  .top-hero-copy small {
    display: none;
  }

  .content-detail-layout--ranked .content-detail-aside {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .content-detail-layout--ranked .content-detail-avoid {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card-body {
    min-height: 190px;
  }

  .location-detail-hero,
  .location-detail-content {
    padding: 22px;
  }

  .location-detail-copy h1 {
    font-size: 34px;
  }

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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.is-route-changing {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

html.has-hero-guide,
html.has-talent-lightbox,
body.has-hero-guide {
  overflow: hidden;
  overscroll-behavior: none;
}

body.has-talent-lightbox {
  overflow: hidden;
  overscroll-behavior: none;
}

body.has-hero-guide {
  padding-right: var(--scrollbar-lock-gap);
}

button,
a {
  font: inherit;
}

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

.app-shell {
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
  align-items: start;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background:
    radial-gradient(circle at 76% 10%, rgba(255, 209, 57, 0.06), transparent 22rem),
    linear-gradient(180deg, #0c0f1a 0%, #080b13 100%);
}

@media (min-width: 721px) and (max-width: 1399px) {
  body {
    overflow-x: hidden;
  }

  .app-shell {
    width: 1760px;
    transform: scale(var(--fit-scale, 1));
    transform-origin: top left;
  }
}

.sidebar {
  grid-column: 1;
  position: fixed;
  z-index: 80;
  top: 29px;
  bottom: 0;
  left: 24px;
  display: flex;
  flex-direction: column;
  width: 292px;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 38px 21px 16px 23px;
  background: #111520;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, 0.025),
    0 24px 54px rgba(0, 0, 0, 0.18);
  overflow: visible;
}

html.has-hero-guide .sidebar {
  position: fixed;
  top: 29px;
  bottom: 0;
  left: 24px;
  height: auto;
  min-height: 0;
  margin: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 20px;
  color: #ffffff;
  font-family: var(--hero-font);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  width: 46px;
  height: 41px;
  margin-right: 8px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-word {
  display: inline-block;
}

.brand-ru {
  display: inline-grid;
  place-items: center;
  min-width: 25px;
  height: 14px;
  margin-left: 4px;
  padding: 0 3px;
  color: #17110a;
  background: #f8d34a;
  border-radius: 3px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.main-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.nav-link {
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: center;
  min-height: 42px;
  gap: 11px;
  padding: 0 12px;
  color: #91949f;
  border-radius: 14px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 380;
  letter-spacing: 0;
  line-height: 1;
  outline: 0;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #b9bcc6;
  background: rgba(255, 255, 255, 0.025);
}

.nav-link.is-active {
  color: #05070c;
  min-height: 54px;
  background: linear-gradient(180deg, #f8d650 0%, #f5cc42 100%);
  font-weight: 400;
}

.nav-group {
  position: relative;
  z-index: 1;
  display: block;
  gap: 0;
  margin: 0;
}

.nav-group[open] {
  z-index: 90;
  gap: 0;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group.is-active > .nav-group-summary {
  color: #05070c;
  min-height: 54px;
  background: linear-gradient(180deg, #f8d650 0%, #f5cc42 100%);
  font-weight: 400;
}

.nav-group-summary {
  grid-template-columns: 23px 1fr 20px;
}

.nav-chevron {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: currentColor;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(0);
  transition: transform 140ms ease;
}

.nav-group[open] .nav-chevron {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  z-index: 100;
  top: -3px;
  left: calc(100% + 14px);
  display: grid;
  width: 264px;
  gap: 3px;
  padding: 10px;
  background: #171c28;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: nav-flyout-in 140ms ease both;
}

.nav-submenu::before {
  position: absolute;
  top: 0;
  right: 100%;
  width: 14px;
  height: 100%;
  content: "";
}

.nav-group:not([open]) > .nav-submenu {
  display: none;
}

.nav-sub-link {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #a0a4b0;
  border-radius: 8px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 380;
  line-height: 1.1;
  transition: color 140ms ease, background 140ms ease, transform 140ms ease;
}

.nav-sub-link:hover {
  color: #f3f5fb;
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(2px);
}

.nav-sub-link.is-active {
  color: #f7cc35;
  background: rgba(247, 204, 53, 0.1);
}

@keyframes nav-flyout-in {
  from {
    opacity: 0;
    transform: translateX(-4px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.nav-icon {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
}

.nav-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.sidebar-cta {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 16px;
  margin-top: auto;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(180deg, var(--purple), var(--purple-2));
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  box-shadow: 0 10px 24px rgba(145, 70, 255, 0.22);
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.sidebar-cta:hover,
.sidebar-cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(180deg, #a455ff, #7d35e8);
  box-shadow: 0 12px 28px rgba(145, 70, 255, 0.34);
  outline: 0;
  transform: translateY(-1px);
}

.sidebar-cta:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 7px 18px rgba(145, 70, 255, 0.24);
}

.content {
  grid-column: 2;
  min-width: 0;
  padding: 29px 24px 64px;
}

.view {
  display: none;
  animation: fade-in 180ms ease;
}

.view.is-active {
  display: block;
}

.knowledge-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  aspect-ratio: 1404 / 449;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, #111520 0%, #111520 43%, rgba(17, 21, 32, 0.88) 55%, rgba(17, 21, 32, 0.2) 70%, rgba(17, 21, 32, 0) 100%),
    #111520;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.knowledge-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(148deg, transparent 0 13%, rgba(189, 178, 74, 0.1) 13.2% 13.45%, transparent 13.7% 100%),
    linear-gradient(137deg, transparent 0 35%, rgba(189, 178, 74, 0.07) 35.2% 35.45%, transparent 35.7% 100%),
    linear-gradient(130deg, transparent 0 52%, rgba(189, 178, 74, 0.06) 52.2% 52.45%, transparent 52.7% 100%),
    linear-gradient(126deg, transparent 0 77%, rgba(189, 178, 74, 0.045) 77.2% 77.45%, transparent 77.7% 100%);
  display: block;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.knowledge-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 209, 57, 0.55), transparent);
  display: none;
}

.knowledge-hero .hero-figma-media {
  position: absolute;
  display: block;
  top: 0;
  right: -8px;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 1;
  transform: none;
  transform-origin: right top;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.84) 7%, #000 16%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.84) 7%, #000 16%, #000 100%);
}

.knowledge-copy {
  position: absolute;
  top: 96px;
  left: 54px;
  display: block;
  z-index: 2;
  width: 520px;
  font-family: var(--hero-font);
  user-select: text;
}

.knowledge-copy::before {
  position: absolute;
  top: -10px;
  right: -34px;
  bottom: -12px;
  left: -12px;
  content: "";
  background: transparent;
  display: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  z-index: -1;
}

.eyebrow,
.panel-label {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.knowledge-copy h1 {
  margin-bottom: 4px;
  font-size: 45px;
  line-height: 0.88;
  font-weight: 900;
  text-transform: uppercase;
  color: #f7f8ff;
}

.knowledge-copy strong {
  display: block;
  margin-bottom: 28px;
  color: #9b9da6;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.page-title h1,
.article-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.94;
  font-weight: 950;
  text-transform: uppercase;
}

.knowledge-copy p:last-child {
  color: #a0a2ab;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.42;
}

.page-title p,
.article-hero p,
.talent-panel p,
.article-main p {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

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

#view-home > .section-block:first-of-type {
  margin-top: 24px;
}

#view-home > .section-block:first-of-type .section-heading {
  display: none;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2,
.page-title h1 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-main h2,
.talent-panel h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 26px;
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading a {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
}

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

.topic-card,
.news-card,
.hero-card,
.guide-card,
.news-feature,
.article-hero,
.article-main,
.article-aside,
.talent-panel {
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 8px;
}

.topic-card {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.topic-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: brightness(1) saturate(1.06);
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.topic-card:hover img {
  transform: scale(1.04);
  opacity: 0.98;
  filter: brightness(1.18) saturate(1.12);
}

.topic-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(6, 8, 14, 0.94));
  transition: opacity 180ms ease;
}

.topic-card:hover::after {
  opacity: 0.58;
}

.topic-card h3,
.topic-card span {
  position: relative;
  z-index: 1;
}

.topic-card h3 {
  margin: 94px 0 0;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.topic-card span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
}

.news-feature {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 196px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #111726;
}

.news-feature img,
.news-card img,
.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature-media,
.news-card-media {
  position: relative;
  overflow: hidden;
  background: #090e18;
  isolation: isolate;
}

.news-feature-media::before,
.news-card-media::before {
  display: none;
}

.news-feature-media img,
.news-card-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--news-position, center);
}

.news-feature-body {
  padding: 22px 24px;
}

.date-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-kind {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  color: #18130a;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.news-feature h3,
.news-card h3,
.guide-card h3,
.article-aside h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 950;
}

.news-feature p,
.news-card p,
.guide-card p {
  margin-bottom: 14px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.read-link {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

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

.news-card,
.guide-card {
  overflow: hidden;
  background: #121827;
}

.guide-card--switch {
  cursor: pointer;
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.guide-card--clickable,
.news-card--clickable,
.news-feature[data-news-index] {
  cursor: pointer;
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.guide-card--switch:hover,
.guide-card--switch:focus-within,
.guide-card--switch.is-active,
.guide-card--clickable:hover,
.guide-card--clickable:focus-visible,
.guide-card--clickable:focus-within,
.news-card--clickable:hover,
.news-card--clickable:focus-visible,
.news-card--clickable:focus-within {
  border-color: rgba(255, 209, 57, 0.42);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.news-feature[data-news-index]:hover,
.news-feature[data-news-index]:focus-visible,
.news-feature[data-news-index]:focus-within {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.guide-card--switch.is-active .read-link {
  color: #ffffff;
}

.news-card-media {
  height: 220px;
}

.news-card-body,
.guide-card-body {
  padding: 15px;
}

#view-news .news-card {
  display: flex;
  flex-direction: column;
}

#view-news .news-card-media {
  height: auto;
  aspect-ratio: 16 / 9;
}

#view-news .news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

#view-news .read-link,
.latest-news-section .news-card .read-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin-top: auto;
}

#view-news .news-card h3 {
  min-height: 68px;
}

#view-news .news-card p,
.latest-news-section .news-card p {
  min-height: 66px;
}

.latest-news-section {
  margin-top: 58px;
}

.latest-news-section .section-heading {
  justify-content: center;
  margin-bottom: 26px;
}

.latest-news-section .section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.latest-news-section .news-feature {
  grid-template-columns: minmax(320px, 428px) minmax(0, 1fr);
  gap: 30px;
  min-height: 324px;
  margin-bottom: 24px;
  padding: 10px 10px 10px 10px;
  border-color: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  background:
    radial-gradient(circle at 43% 100%, rgba(103, 52, 89, 0.16), transparent 32%),
    linear-gradient(135deg, #111722 0%, #121620 55%, #11151f 100%);
  box-shadow: none;
}

.latest-news-section .news-feature-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.latest-news-section .news-feature-media {
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.latest-news-section .news-feature-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 12px 20px 20px 0;
}

.latest-news-section .date-label {
  margin-bottom: 18px;
  padding: 3px 9px 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #f2f3f7;
  background: #1b2230;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.latest-news-section .news-feature h3 {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1.28;
  font-weight: 500;
  text-transform: none;
}

.latest-news-section .news-feature p {
  max-width: 860px;
  margin-bottom: 0;
  color: #9b9ca5;
  font-size: 16px;
  line-height: 1.43;
  font-weight: 400;
}

.news-read-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin-top: 13px;
  padding: 0 16px;
  border-radius: 10px;
  color: #d7d8df;
  background: #252a34;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.news-read-button:hover {
  color: #ffffff;
  background: #343a46;
}

.latest-news-section .news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.latest-news-section .news-card {
  display: block;
  border-color: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  background: #10151f;
  box-shadow: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.latest-news-section .news-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: #131925;
}

.latest-news-section .news-card-media {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.latest-news-section .news-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-news-section .news-card-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 18px 13px 18px;
}

.latest-news-section .news-card h3 {
  margin-bottom: 16px;
  min-height: 52px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  text-transform: none;
}

.latest-news-section .news-card p {
  margin-bottom: 0;
  color: #a1a3ac;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

.news-all-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 183px;
  min-height: 61px;
  margin: 30px auto 0;
  border-radius: 14px;
  color: #ffd132;
  background: #282620;
  font-size: 18px;
  font-weight: 600;
  box-shadow: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.news-all-button:hover {
  color: #ffd139;
  background: #55451f;
}

.heroes-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.heroes-grid-large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-card {
  overflow: hidden;
  background: #101624;
}

.hero-card-button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.hero-card-button:hover {
  border-color: rgba(255, 212, 60, 0.18);
  background-color: #131a29;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-card-button:active {
  transform: translateY(-1px);
}

.hero-card-button:focus-visible {
  outline: 2px solid rgba(255, 212, 60, 0.65);
  outline-offset: 3px;
}

.hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  background: #090c14;
}

.hero-card-body {
  min-height: 56px;
  padding: 9px;
}

.hero-card h3 {
  margin-bottom: 4px;
  min-height: 27.6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.hero-card span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.best-heroes-section {
  margin-top: 58px;
}

.best-heroes-section .section-heading {
  justify-content: center;
  margin-bottom: 34px;
}

.best-heroes-section .section-heading h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.best-heroes-section .heroes-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 24px;
}

.best-heroes-section .hero-card {
  overflow: hidden;
  padding: 10px 10px 13px;
  border-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  background: #10141f;
  box-shadow: none;
}

.best-heroes-section .hero-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
}

.hero-card-image-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.hero-card-image-link img {
  transition: filter 160ms ease, transform 160ms ease;
}

.hero-card-image-link:hover img {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.best-heroes-section .hero-card-body {
  min-height: 62px;
  padding: 14px 5px 0;
}

.best-heroes-section .hero-card h3 {
  margin-bottom: 0;
  min-height: 48px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.best-heroes-section .hero-card span {
  color: #b4b5be;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

.heroes-all-button {
  width: 158px;
  margin-top: 34px;
}

.page-title {
  margin-bottom: 22px;
}

.donate-page-head {
  position: relative;
  margin-bottom: 22px;
}

.donate-page-head .page-title {
  min-width: 0;
  margin-bottom: 0;
}

.donate-purchase-cta {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-grid;
  place-items: center;
  min-width: 190px;
  min-height: 44px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, var(--purple), var(--purple-2));
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(145, 70, 255, 0.22);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.donate-purchase-cta:hover,
.donate-purchase-cta:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #a455ff, #7d35e8);
  box-shadow: 0 12px 28px rgba(145, 70, 255, 0.34);
  outline: 0;
  transform: translateY(-1px);
}

.donate-purchase-cta:active {
  transform: translateY(1px) scale(0.99);
}

.page-title h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.page-title p {
  max-width: 680px;
  margin-bottom: 0;
}

.page-title h1 + p {
  margin-top: 14px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-chip {
  min-height: 28px;
  padding: 0 15px;
  color: var(--muted-2);
  background: #151b2b;
  border: 1px solid var(--stroke);
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.filter-chip.is-active {
  color: #17140b;
  background: var(--yellow);
  border-color: transparent;
}

#view-heroes {
  padding-top: 0;
}

.heroes-page-title {
  margin-bottom: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.heroes-page-title h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.heroes-search {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 58px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.heroes-search svg {
  width: 42px;
  height: 42px;
  padding: 12px;
  color: #ffffff;
  background: #0f1320;
  border-radius: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.heroes-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  color: #f5f6fb;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 21px;
  font-weight: 400;
}

.heroes-search input::-webkit-search-cancel-button {
  appearance: none;
}

.heroes-search input::placeholder {
  color: #5e6068;
  opacity: 1;
}

.heroes-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  justify-self: end;
  margin-right: 36px;
  color: #426ba8;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  transition:
    color 150ms ease,
    transform 150ms ease;
}

.heroes-search-clear:hover,
.heroes-search-clear:focus-visible {
  color: #6f9ce4;
  outline: 0;
  transform: scale(1.08);
}

.heroes-search-clear:active {
  color: #ffffff;
  transform: scale(0.88);
}

.heroes-search-clear[hidden] {
  display: none;
}

.hero-rarity-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.rarity-tab {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: filter 160ms ease, background-color 160ms ease;
}

.rarity-tab:hover {
  filter: brightness(1.13);
}

.rarity-tab.is-selected {
  filter: brightness(1.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.rarity-tab:active {
  transform: translateY(1px);
}

.rarity-mythic {
  color: #ff4343;
  background: #1b101c;
}

.rarity-legendary {
  color: #ffd139;
  background: #1c1c20;
}

.rarity-epic {
  color: #9146ff;
  background: #1b1331;
}

.rarity-rare {
  color: #5363ff;
  background: #141936;
}

.faction-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.faction-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 149px;
  padding: 12px 8px 11px;
  color: #f5f6fb;
  background: #10141f;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 11px;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.faction-card:hover,
.faction-card.is-selected {
  border-color: rgba(255, 255, 255, 0.07);
  background: #131925;
}

.faction-card:active {
  transform: translateY(1px);
}

.faction-card img {
  width: 62px;
  height: 74px;
  margin-bottom: 15px;
  object-fit: contain;
}

.faction-card strong {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.faction-card span {
  color: #a6a8b2;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.faction-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faction-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #767a86;
  background: #0e121d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease;
}

.faction-controls button:hover {
  color: #ffffff;
  background: #161c28;
}

.faction-controls button:disabled {
  color: #3b4050;
  background: #0c1019;
  cursor: default;
  opacity: 0.62;
}

.faction-controls button:disabled:hover {
  color: #3b4050;
  background: #0c1019;
}

.active-hero-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 28px;
}

.active-filter-chip {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 10px;
  min-width: 269px;
  min-height: 46px;
  padding: 0 14px;
  color: #f3f4fa;
  background: #10141f;
  border: 1px solid rgba(255, 255, 255, 0.02);
  border-radius: 11px;
  font-size: 14px;
  font-weight: 400;
}

.active-filter-chip:has(img) {
  grid-template-columns: 22px auto auto;
}

.active-hero-filters img {
  width: 22px;
  height: 27px;
  object-fit: contain;
}

.filter-remove {
  justify-self: end;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #8797b8;
  background: transparent;
  border: 0;
  cursor: pointer;
  border-radius: 8px;
  font-size: 27px;
  font-weight: 300;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.filter-remove:hover,
.filter-remove:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  outline: 0;
  transform: scale(1.08);
}

.filter-remove:active {
  transform: scale(0.88);
}

.heroes-empty {
  min-height: 140px;
  padding: 46px 18px;
  color: #8f96a6;
  background: #10141f;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 13px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
}

#view-heroes .heroes-grid-large {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px 19px;
}

#view-heroes .hero-card {
  padding: 8px 8px 10px;
  border-color: rgba(255, 255, 255, 0.03);
  border-radius: 13px;
  background: #10141f;
}

#view-heroes .hero-card img {
  height: auto;
  aspect-ratio: auto;
  border-radius: 7px;
  object-fit: contain;
  object-position: center;
}

#view-heroes .hero-card-body {
  min-height: 50px;
  padding: 11px 4px 0;
}

#view-heroes .hero-card h3 {
  margin-bottom: 0;
  min-height: 38.4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

#view-heroes .hero-card span {
  display: none;
}

.hero-load-more,
.news-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.hero-load-more button,
.news-load-more button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 54px;
  padding: 0 28px;
  color: #ffd43c;
  background: linear-gradient(180deg, #20242d 0%, #181d26 100%);
  border: 1px solid rgba(255, 212, 60, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 212, 60, 0.06);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-load-more button:hover,
.news-load-more button:hover {
  color: #ffe879;
  background: linear-gradient(180deg, #2a281e 0%, #211f18 100%);
  border-color: rgba(255, 212, 60, 0.34);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3), 0 0 18px rgba(255, 212, 60, 0.08), inset 0 1px 0 rgba(255, 212, 60, 0.1);
}

.hero-load-more button:active,
.news-load-more button:active {
  transform: translateY(1px);
}

.hero-load-more button[hidden],
.news-load-more button[hidden] {
  display: none;
}

#view-hero-guide {
  padding-top: 0;
}

.hero-guide-page {
  display: grid;
  grid-template-columns: 306px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: none;
}

.hero-guide-side-column {
  display: grid;
  gap: 16px;
  align-content: start;
  overflow: hidden;
}

.hero-guide-profile-card {
  display: flex;
  flex-direction: column;
  max-width: 306px;
  min-height: 0;
  padding: 16px 18px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%),
    #111520;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.hero-guide-profile-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.hero-guide-page-image {
  display: block;
  width: 106px;
  height: auto;
  margin: 0;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.36));
}

.hero-guide-page-faction-icon {
  display: block;
  width: 92px;
  height: 92px;
  margin-top: 4px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.42));
}

.hero-guide-page-faction-icon[hidden] {
  display: none;
}

.hero-guide-profile-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.hero-guide-profile-list div {
  display: grid;
  grid-template-columns: minmax(90px, auto) minmax(0, 1fr);
  min-height: 49px;
  align-items: center;
  column-gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0;
}

.hero-guide-profile-list dt {
  color: #838895;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

.hero-guide-profile-list dd {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: #f5f6fb;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
  text-align: right;
  overflow-wrap: anywhere;
}

#hero-guide-page-books {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.hero-guide-page-books-score {
  font-weight: 700;
}

#hero-guide-page-books small {
  color: #9399a8;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
}

#hero-guide-page-books[data-book-level="skip"] .hero-guide-page-books-score {
  color: #ff8a80;
}

#hero-guide-page-books[data-book-level="low"] .hero-guide-page-books-score,
#hero-guide-page-books[data-book-level="situational"] .hero-guide-page-books-score {
  color: #ffd43c;
}

#hero-guide-page-books[data-book-level="good"] .hero-guide-page-books-score,
#hero-guide-page-books[data-book-level="high"] .hero-guide-page-books-score {
  color: #8de7ad;
}

.hero-guide-profile-list dd.is-yellow,
.hero-guide-profile-list dd[data-rarity="legendary"] {
  color: #ffd43c;
}

.hero-guide-profile-list dd[data-rarity="mythic"] {
  color: #ff4343;
}

.hero-guide-profile-list dd[data-rarity="epic"] {
  color: #9146ff;
}

.hero-guide-profile-list dd[data-rarity="rare"] {
  color: #5363ff;
}

.hero-guide-page-try {
  display: grid;
  place-items: center;
  min-height: 50px;
  margin-top: 22px;
  color: #0a0b0f;
  background: linear-gradient(180deg, #f8d650 0%, #f0c834 100%);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.hero-guide-page-try:hover,
.hero-guide-page-try:focus-visible {
  filter: brightness(1.08);
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 209, 57, 0.18);
}

.hero-guide-shortcuts {
  max-width: 306px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 58%),
    #10141f;
  border: 1px solid rgba(255, 255, 255, 0.052);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.hero-guide-shortcuts h2 {
  margin: 0 0 16px;
  color: #8e95a6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.hero-guide-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 14px;
}

.hero-guide-shortcut {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 8px 8px 11px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #10141f;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 13px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.hero-guide-shortcut:hover,
.hero-guide-shortcut:focus-visible {
  border-color: rgba(255, 209, 57, 0.5);
  filter: brightness(1.08);
  outline: 0;
  transform: translateY(-1px);
}

.hero-guide-shortcut img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 7px;
  object-fit: contain;
  object-position: center;
}

.hero-guide-shortcut span {
  display: block;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 2px;
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

.hero-guide-article {
  min-width: 0;
  padding: 14px 0 42px;
}

.hero-guide-article-head {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 34px;
}

.hero-guide-back {
  display: grid;
  place-items: center;
  position: relative;
  width: 72px;
  height: 56px;
  padding: 0;
  color: #c9ceda;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 999px;
  font-size: 0;
  line-height: 1;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-guide-back svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-guide-back:hover,
.hero-guide-back:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  outline: 0;
  transform: translateX(-2px);
}

.hero-guide-article-head h1 {
  margin: 0 0 3px;
  color: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 39px;
  font-weight: 560;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-guide-article-head p {
  margin: 0 0 0 2px;
  color: #9b9fab;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.hero-guide-article-section {
  padding: 28px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.hero-guide-article-section:first-of-type {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.hero-guide-article-section h2 {
  margin: 0 0 26px;
  color: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.guide-stars {
  color: #f4ca38;
  text-shadow: 0 0 10px rgba(244, 202, 56, 0.22);
}

.hero-guide-article-section > p {
  max-width: 930px;
  margin: 0;
  color: #a8acb7;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-guide-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-guide-tabs button {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-guide-tabs button:hover,
.hero-guide-tabs button:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  outline: 0;
}

.hero-guide-video-title {
  margin: 34px 0 14px;
  color: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 23px;
  font-weight: 550;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.hero-guide-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  padding: 10px;
  background: #101520;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.hero-guide-video-card {
  position: relative;
  isolation: isolate;
  min-height: 164px;
  overflow: hidden;
  background: #121724;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.hero-guide-video-card--embed {
  min-height: 0;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hero-guide-video-card--placeholder {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #171b24;
}

.hero-guide-video-card--placeholder i {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.hero-guide-video-card iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-guide-video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-guide-video-card i {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 38px;
  background: #ff0033;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(255, 0, 51, 0.32);
  transform: translate(-50%, -50%);
  opacity: 0.95;
}

.hero-guide-video-card i::after {
  position: absolute;
  left: 21px;
  top: 10px;
  width: 0;
  height: 0;
  content: "";
  border-bottom: 9px solid transparent;
  border-left: 15px solid #ffffff;
  border-top: 9px solid transparent;
}

.hero-guide-video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.04), rgba(6, 8, 15, 0.38));
  z-index: 1;
  pointer-events: none;
}

.hero-guide-video-card--embed::after {
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.12), rgba(6, 8, 15, 0.36));
}

.hero-guide-video-card span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  z-index: 2;
  color: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 550;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.hero-guide-video-card:hover img,
.hero-guide-video-card:focus-visible img {
  opacity: 0.78;
  transform: scale(1.03);
}

.hero-guide-stats-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 22px;
  align-items: end;
}

.hero-guide-stats-row span {
  display: grid;
  gap: 10px;
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-guide-stats-row small {
  color: #a0a4b0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
}

.hero-guide-stats-row strong {
  color: #ffffff;
  font-size: 21px;
  font-weight: 550;
  line-height: 1;
}

.hero-guide-skill-list {
  display: grid;
  gap: 12px;
}

.hero-guide-skill-list article {
  overflow: hidden;
  background: #111622;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 8px;
}

.hero-guide-skill-list header {
  display: grid;
  grid-template-columns: 30px auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-guide-skill-list header.hero-guide-skill-header--no-icon {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.hero-guide-skill-list header .hero-guide-skill-cooldown {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  white-space: nowrap;
}

.hero-guide-skill-cooldown i {
  color: #ffd43c;
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.hero-guide-skill-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.28));
}

.hero-guide-skill-list header span,
.hero-guide-skill-list header em {
  color: #ffd43c;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.hero-guide-skill-list header strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.15;
}

.hero-guide-skill-list article p {
  margin: 0;
  padding: 12px 14px 0;
  color: #b3b8c5;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.52;
}

.hero-guide-skill-list article p:last-child {
  padding-bottom: 13px;
}

.hero-guide-upgrades {
  color: #858b98 !important;
  font-size: 12px !important;
}

.hero-guide-muted {
  max-width: 820px;
  margin: 0 0 16px;
  color: #aeb4c2;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-guide-empty {
  margin: 0;
  padding: 18px;
  color: #8f96a6;
  background: rgba(255, 255, 255, 0.028);
  border: 1px dashed rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.hero-guide-empty--wide {
  grid-column: 1 / -1;
}

.hero-guide-artifact-grid,
.hero-guide-use-grid,
.hero-guide-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 12px;
}

.hero-guide-artifact-grid article,
.hero-guide-use-grid article,
.hero-guide-feature-grid article {
  min-width: 0;
  background: #111622;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 10px;
}

.hero-guide-artifact-grid article,
.hero-guide-feature-grid article {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px 10px 12px;
  text-align: center;
}

.hero-guide-link-card {
  cursor: pointer;
  outline: 0;
  transition: border-color 160ms ease, background-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.hero-guide-link-card:hover,
.hero-guide-link-card:focus-visible {
  background: #141a28;
  border-color: rgba(255, 209, 57, 0.36);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.hero-guide-link-card:active {
  transform: translateY(0);
}

.hero-guide-artifact-grid img,
.hero-guide-feature-grid img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.32));
}

.hero-guide-feature-grid img {
  width: 126px;
  height: 126px;
}

.hero-guide-artifact-grid span,
.hero-guide-feature-grid span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-guide-artifact-grid small,
.hero-guide-feature-grid small {
  color: #c7b7ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

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

.hero-guide-use-grid article {
  padding: 16px;
}

.guide-jump-popover {
  position: fixed;
  z-index: 2000;
  display: grid;
  min-width: 188px;
  max-width: min(260px, calc(100vw - 24px));
  gap: 8px;
  padding: 12px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 62%),
    #151b28;
  border: 1px solid rgba(255, 209, 57, 0.3);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px) scale(0.98);
  transition: opacity 140ms ease, transform 140ms ease;
}

.guide-jump-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.guide-jump-popover-kind {
  color: #ffd139;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.guide-jump-popover-title {
  color: #f7f8ff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.guide-jump-popover button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #111520;
  background: linear-gradient(180deg, #ffde59, #f2c936);
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.guide-jump-popover button:hover,
.guide-jump-popover button:focus-visible {
  filter: brightness(1.06);
  outline: 0;
}

.guide-jump-popover-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.guide-jump-popover .guide-jump-popover-cancel {
  color: #d8deea;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-guide-use-grid h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.2;
}

.hero-guide-use-grid p {
  margin: 0;
  color: #aeb4c2;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-guide-build-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-guide-build-compact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "priority"
    "slots";
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 209, 57, 0.025), transparent 45%),
    #111722;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 16px 30px rgba(0, 0, 0, 0.14);
}

.hero-guide-build-panel article,
.hero-guide-build-card,
.hero-guide-synergy-table article,
.hero-guide-list-panel,
.hero-guide-summary-card {
  min-width: 0;
  background:
    linear-gradient(135deg, rgba(255, 209, 57, 0.05), transparent 42%),
    #111622;
  border: 1px solid rgba(255, 209, 57, 0.18);
  border-radius: 10px;
}

.hero-guide-build-card {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-guide-build-card--priority {
  grid-area: priority;
}

.hero-guide-build-card--slots {
  grid-area: slots;
}

.hero-guide-build-card--sets {
  grid-area: sets;
}

.hero-guide-build-panel article {
  padding: 18px;
}

.hero-guide-build-panel h3,
.hero-guide-build-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #ffd139;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: none;
}

.hero-guide-build-panel ul,
.hero-guide-list-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.hero-guide-build-panel li,
.hero-guide-list-panel li,
.hero-guide-summary-card p {
  color: #d4d8e2;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.55;
}

.hero-guide-priority-list,
.hero-guide-mini-table,
.hero-guide-set-chips {
  display: grid;
  gap: 8px;
}

.hero-guide-priority-list {
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
}

.hero-guide-set-chips {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-guide-mini-table {
  overflow: hidden;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.hero-guide-priority-list span,
.hero-guide-set-chips span {
  display: grid;
  min-width: 0;
  min-height: 0;
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 8px;
}

.hero-guide-priority-list span {
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  align-content: center;
  min-height: 46px;
  padding: 8px 12px 8px 10px;
  overflow: hidden;
}

.hero-guide-priority-list span.has-note {
  min-height: 58px;
  row-gap: 2px;
}

.hero-guide-priority-list span:last-child {
  padding-right: 14px;
}

.hero-guide-set-chips span {
  align-content: center;
  min-height: 54px;
  padding: 9px 11px;
}

.hero-guide-priority-list strong {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #12100a;
  background: linear-gradient(180deg, #ffe56b, #d99a1b);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 10px rgba(238, 169, 35, 0.14);
}

.hero-guide-priority-list em,
.hero-guide-mini-table strong,
.hero-guide-set-chips strong {
  color: #ffffff;
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-guide-priority-list em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-width: 0;
  color: #ffffff;
  overflow-wrap: anywhere;
  white-space: normal;
}

.hero-guide-priority-list span.has-note em {
  grid-row: 1;
  align-self: end;
}

.hero-guide-mini-table small,
.hero-guide-set-chips small {
  color: #aeb4c2;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.hero-guide-priority-list small {
  display: block;
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  margin-top: 0;
  color: #aeb4c2;
  font-size: 11px;
  font-weight: 520;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hero-guide-priority-list span.has-note small {
  align-self: start;
}

.hero-guide-mini-table div {
  position: relative;
  display: grid;
  grid-template-columns: 25% 24% minmax(0, 1fr);
  align-items: center;
  min-height: 42px;
  padding: 0;
  background: transparent;
}

.hero-guide-mini-table div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.hero-guide-mini-table strong,
.hero-guide-mini-table span,
.hero-guide-mini-table small {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
}

.hero-guide-mini-table strong {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.hero-guide-mini-table span,
.hero-guide-mini-table small {
  border-left: 1px solid rgba(255, 255, 255, 0.055);
}

.hero-guide-mini-table span {
  color: #ffd139;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-guide-synergy-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(255, 209, 57, 0.045), transparent 38%),
    #111622;
  border: 1px solid rgba(255, 209, 57, 0.18);
  border-radius: 10px;
  padding: 12px;
}

.hero-guide-synergy-table article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 8px;
  min-width: 0;
  min-height: 110px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 8px;
}

.hero-guide-synergy-table article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.hero-guide-synergy-table strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-guide-synergy-table span {
  width: fit-content;
  padding: 3px 7px;
  color: #ffd139;
  background: rgba(255, 209, 57, 0.08);
  border: 1px solid rgba(255, 209, 57, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 780;
  line-height: 1;
}

.hero-guide-synergy-table p {
  margin: 0;
  color: #b9becb;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.4;
}

.hero-guide-synergy-table-wide {
  grid-column: auto;
}

.hero-guide-list-panel,
.hero-guide-summary-card {
  padding: 22px 24px;
}

.hero-guide-summary-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
}

.hero-guide-artifact-grid {
  margin-top: 22px;
}

.hero-guide-feature-grid {
  max-width: 520px;
  margin: 22px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-guide-feature-grid--compact {
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(124px, 132px));
  justify-content: center;
}

.hero-guide-feature-grid--compact img {
  width: 78px;
  height: 78px;
}

.hero-guide-relic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(154px, 184px));
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
}

.hero-guide-relic-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  text-align: center;
}

.hero-guide-relic-card:hover,
.hero-guide-relic-card:focus-visible,
.hero-guide-relic-stone:hover,
.hero-guide-relic-stone:focus-visible {
  background: transparent;
  border-color: transparent;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-guide-relic-card img {
  width: 168px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.34));
}

.hero-guide-relic-card span {
  color: #dfff23;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-guide-relic-card small {
  color: #c7b7ff;
  font-size: 12px;
  line-height: 1.2;
}

.hero-guide-relic-stones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-guide-relic-stone {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.hero-guide-relic-stone img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.32));
}

.hero-guide-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 170px));
  justify-content: center;
  align-items: start;
  gap: 24px 26px;
  margin-top: 22px;
}

.hero-guide-location-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 244px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-align: center;
}

.hero-guide-location-card:hover,
.hero-guide-location-card:focus-visible {
  background: transparent;
  border-color: transparent;
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-guide-location-card img {
  width: 158px;
  height: 194px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.34));
}

.hero-guide-location-card img[src*="-cover-normal"],
.hero-guide-location-card img:not([src*="/locations/icons/"]) {
  box-sizing: border-box;
  width: 158px;
  height: 194px;
  padding: 4px;
  background: linear-gradient(145deg, #fff28a 0%, #dcae24 42%, #6f4600 100%);
  object-fit: cover;
  clip-path: polygon(8% 0, 92% 0, 100% 7%, 100% 72%, 50% 100%, 0 72%, 0 7%);
}

.hero-guide-location-card span,
.hero-guide-location-card small {
  min-width: 0;
}

.hero-guide-location-card span {
  color: #dfff23;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-guide-location-card small {
  margin-top: 0;
  color: #c7b7ff;
  font-size: 12px;
  font-weight: 400;
}

.hero-guide-talent-trees {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.hero-guide-talent-zoom {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 209, 63, 0.24);
  background: #15111f;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: border-color 160ms ease, filter 160ms ease, transform 160ms ease;
}

.hero-guide-talent-zoom img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 160ms ease, transform 160ms ease;
}

.hero-guide-talent-zoom:hover,
.hero-guide-talent-zoom:focus-visible {
  border-color: rgba(255, 209, 63, 0.58);
  filter: brightness(1.06);
  outline: 0;
  transform: translateY(-2px);
}

.hero-guide-talent-zoom:hover img,
.hero-guide-talent-zoom:focus-visible img {
  transform: scale(1.015);
}

.hero-guide-talent-zoom::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(4, 7, 14, 0.38);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.hero-guide-talent-zoom:hover::after,
.hero-guide-talent-zoom:focus-visible::after {
  opacity: 1;
}

.talent-zoom-icon {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: rgba(8, 12, 22, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
  pointer-events: none;
}

.talent-zoom-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-guide-talent-zoom:hover .talent-zoom-icon,
.hero-guide-talent-zoom:focus-visible .talent-zoom-icon {
  opacity: 1;
}

.hero-guide-build-images {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), max-content));
  justify-content: center;
  justify-items: center;
  max-width: 1040px;
  margin: 14px auto 0;
}

.hero-guide-build-images .hero-guide-talent-zoom {
  width: auto;
  max-width: 100%;
  background: #090d16;
}

.hero-guide-build-item {
  width: auto;
  max-width: 100%;
  margin: 0;
}

.hero-guide-build-item figcaption {
  max-width: 760px;
  margin: 10px auto 0;
  color: #d8ddeb;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.hero-guide-build-images .hero-guide-talent-zoom img {
  width: auto;
  max-width: 100%;
  max-height: 780px;
  object-fit: contain;
}

.hero-guide-build-images--compact {
  max-width: 680px;
}

.hero-guide-build-images--compact .hero-guide-build-item,
.hero-guide-build-images--compact .hero-guide-talent-zoom,
.hero-guide-build-images--compact .hero-guide-talent-zoom img {
  width: 100%;
}

.hero-guide-build-images--multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  max-width: 1040px;
}

.hero-guide-build-images--multiple .hero-guide-build-item {
  width: 100%;
}

.hero-guide-build-images--multiple .hero-guide-talent-zoom,
.hero-guide-build-images--multiple .hero-guide-talent-zoom img {
  width: 100%;
}

.hero-guide-build-images--multiple .hero-guide-talent-zoom img {
  max-height: none;
  object-fit: contain;
}

.talent-lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 18px;
  padding: 76px 34px 46px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.talent-lightbox.is-open {
  pointer-events: auto;
  opacity: 1;
}

.talent-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.9);
  backdrop-filter: blur(3px);
}

.talent-lightbox-counter {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  color: #f4f6ff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.talent-lightbox-close {
  position: absolute;
  z-index: 3;
  top: 17px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 44px;
  font-weight: 260;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.talent-lightbox-close:hover,
.talent-lightbox-close:focus-visible {
  color: #ffd139;
  outline: 0;
  transform: scale(1.04);
}

.talent-lightbox-figure {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
  margin: 0;
}

.talent-lightbox-figure img {
  display: block;
  width: auto;
  max-width: min(100%, 1540px);
  max-height: calc(100dvh - 150px);
  object-fit: contain;
  border: 1px solid rgba(255, 209, 63, 0.34);
  border-radius: 4px;
  background: #080b13;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.56);
}

.talent-lightbox-figure figcaption {
  color: #d7dbe8;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.talent-lightbox-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 46px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0;
  font-weight: 0;
  line-height: 1;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.talent-lightbox-arrow svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.talent-lightbox-arrow:hover,
.talent-lightbox-arrow:focus-visible {
  color: #ffd139;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 209, 57, 0.24);
  outline: 0;
  transform: scale(1.04);
}

.talent-lightbox-arrow-prev {
  grid-column: 1;
}

.talent-lightbox-arrow-next {
  grid-column: 3;
}

#guide-ratings h2 {
  margin: 34px 0 16px;
  text-align: center;
}

#guide-ratings h2:first-child {
  margin-top: 22px;
}

#guide-ratings .hero-guide-use-grid + h2,
#guide-ratings .hero-guide-build-panel + h2,
#guide-ratings .hero-guide-build-compact + h2,
#guide-ratings .hero-guide-artifact-grid + h2,
#guide-ratings .hero-guide-feature-grid + h2,
#guide-ratings .hero-guide-location-grid + h2,
#guide-ratings .hero-guide-synergy-table + h2,
#guide-ratings .hero-guide-list-panel + h2,
#guide-ratings .hero-guide-summary-card + h2 {
  margin-top: 38px;
}

#guide-ratings .hero-guide-video-title {
  margin-top: 38px;
}

#guide-ratings .hero-guide-use-grid,
#guide-ratings .hero-guide-build-panel,
#guide-ratings .hero-guide-build-compact,
#guide-ratings .hero-guide-artifact-grid,
#guide-ratings .hero-guide-feature-grid,
#guide-ratings .hero-guide-location-grid,
#guide-ratings .hero-guide-synergy-table,
#guide-ratings .hero-guide-list-panel,
#guide-ratings .hero-guide-summary-card {
  margin-top: 0;
}

#guide-ratings .hero-guide-artifact-grid {
  margin-left: auto;
  margin-right: auto;
}

.hero-guide-talent-set {
  display: grid;
  gap: 10px;
}

.hero-guide-talent-set + .hero-guide-talent-set {
  margin-top: 18px;
}

.hero-guide-talent-set h3 {
  margin: 0;
  color: #f7f8ff;
  font-size: 15px;
  font-weight: 550;
}

.hero-guide-talent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-guide-talent-grid .talent-tree {
  min-height: 202px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  opacity: 0.95;
}

.hero-guide-talent-grid .talent-tree.is-offense {
  background:
    radial-gradient(circle at 22% 18%, rgba(222, 54, 54, 0.34), transparent 18%),
    radial-gradient(circle at 78% 74%, rgba(222, 54, 54, 0.18), transparent 20%),
    #1a1014;
}

.hero-guide-talent-grid .talent-tree.is-defense {
  background:
    radial-gradient(circle at 24% 24%, rgba(61, 187, 84, 0.31), transparent 19%),
    radial-gradient(circle at 72% 78%, rgba(61, 187, 84, 0.17), transparent 21%),
    #101a15;
}

.hero-guide-talent-grid .talent-tree.is-support {
  background:
    radial-gradient(circle at 26% 22%, rgba(69, 102, 235, 0.32), transparent 19%),
    radial-gradient(circle at 78% 76%, rgba(69, 102, 235, 0.18), transparent 21%),
    #101522;
}

.hero-guide-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 38px 38px 38px calc(var(--sidebar) + 38px);
  pointer-events: none;
  opacity: 0;
  overscroll-behavior: contain;
  transition: opacity 180ms ease;
}

.hero-guide-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.hero-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 13, 0.58);
  backdrop-filter: blur(3px);
}

.hero-guide-panel {
  position: relative;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  width: min(1060px, calc(100vw - 76px));
  max-height: min(760px, calc(100dvh - 76px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 212, 60, 0.06), transparent 32%),
    linear-gradient(180deg, #171c28 0%, #0f1420 100%);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.56);
  transform: translateY(14px) scale(0.98);
  transition: transform 180ms ease;
}

.hero-guide-modal.is-open .hero-guide-panel {
  transform: translateY(0) scale(1);
}

.hero-guide-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  color: #c9ceda;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  font-weight: 300;
  line-height: 32px;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.hero-guide-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-guide-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 34px 24px;
  background: linear-gradient(180deg, rgba(255, 212, 60, 0.04), rgba(255, 255, 255, 0.01));
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px 0 0 22px;
}

.hero-guide-media > img {
  display: block;
  width: min(100%, 172px);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

.hero-guide-side-info {
  display: grid;
  justify-items: center;
  gap: 13px;
  width: 100%;
  margin-top: 22px;
  color: #ffffff;
  text-align: center;
}

.hero-guide-faction-icon {
  display: block;
  width: 80px;
  height: 94px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34));
}

.hero-guide-side-info strong {
  max-width: 168px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.18;
}

.hero-guide-side-role-text {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}

.hero-guide-side-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.hero-side-icon {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.28));
}

#hero-guide-side-affinity-icon {
  width: 25px;
  height: 25px;
}

#hero-guide-side-utility-icon {
  width: 22px;
  height: 28px;
}

.hero-guide-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 16px);
  min-height: 46px;
  margin-top: auto;
  margin-bottom: 30px;
  padding: 0 12px;
  color: #f8fff9;
  background:
    linear-gradient(180deg, #177345 0%, #0d4f32 100%);
  border: 1px solid rgba(167, 255, 206, 0.18);
  border-radius: 14px;
  box-shadow:
    0 12px 26px rgba(8, 90, 51, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 550;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-guide-store:hover {
  background:
    linear-gradient(180deg, #1f8a55 0%, #11623e 100%);
  border-color: rgba(202, 255, 226, 0.28);
  box-shadow:
    0 14px 30px rgba(10, 112, 63, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-guide-store:active {
  transform: translateY(1px) scale(0.99);
}

.hero-guide-content {
  min-height: 0;
  max-height: min(760px, calc(100dvh - 76px));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 48px 54px 56px 42px;
  background: linear-gradient(180deg, rgba(14, 19, 30, 0.96) 0%, rgba(10, 15, 25, 0.98) 100%);
  scrollbar-color: rgba(255, 212, 60, 0.35) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

.hero-guide-content::-webkit-scrollbar {
  width: 8px;
}

.hero-guide-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.hero-guide-content::-webkit-scrollbar-thumb {
  background: rgba(255, 212, 60, 0.35);
  border-radius: 999px;
}

.hero-guide-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 212, 60, 0.5);
}

.hero-guide-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  color: #ffd43c;
  background: rgba(255, 212, 60, 0.09);
  border: 1px solid rgba(255, 212, 60, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 550;
  line-height: 1;
}

.hero-guide-content h2 {
  max-width: 520px;
  margin: 18px 0 16px;
  color: #ffffff;
  font-size: 40px;
  font-weight: 650;
  line-height: 0.98;
}

.hero-guide-content p {
  max-width: 600px;
  color: #aeb4c1;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.48;
}

.hero-guide-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 28px;
}

.hero-guide-meta span {
  display: grid;
  gap: 8px;
  min-height: 72px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-guide-meta strong {
  color: #757d8c;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.hero-guide-meta em {
  color: #ffffff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.15;
}

.hero-guide-sections {
  display: grid;
  gap: 16px;
}

.hero-guide-sections section {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-guide-sections h3 {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 550;
}

.hero-guide-sections p {
  font-size: 16px;
  line-height: 1.5;
}

.news-list,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card img {
  height: 168px;
}

.guide-card[data-account-guide-slug="pochemu-pokupka-akkaunta-vygodna"] > img {
  object-position: center top;
}

.global-guide-search,
.novice-guide-search,
.misc-guide-search {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 34px;
  align-items: center;
  min-height: 50px;
  padding: 0 10px 0 16px;
  color: #8790a1;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.global-guide-search {
  position: sticky;
  top: 14px;
  z-index: 70;
  margin-bottom: 24px;
  box-shadow: 0 14px 34px rgba(4, 7, 14, 0.3);
}

.misc-guide-search {
  margin-bottom: 20px;
}

.novice-guide-search {
  margin-bottom: 12px;
}

.novice-guide-count {
  margin: 0 0 14px;
  color: #8e98ac;
  font-size: 14px;
}

.guides-empty {
  padding: 36px 20px;
  color: #aab2c2;
  text-align: center;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.global-guide-search > svg,
.novice-guide-search > svg,
.misc-guide-search > svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.global-guide-search input,
.novice-guide-search input,
.misc-guide-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  color: #f6f8fc;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.global-guide-search input::placeholder,
.novice-guide-search input::placeholder,
.misc-guide-search input::placeholder {
  color: #737b8d;
}

.global-guide-search > button,
.novice-guide-search > button,
.misc-guide-search > button {
  width: 30px;
  height: 30px;
  padding: 0;
  color: #9fa8b9;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 25px;
}

.global-guide-search > button:hover,
.novice-guide-search > button:hover,
.misc-guide-search > button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.global-guide-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: grid;
  max-height: min(580px, calc(100vh - 100px));
  padding: 8px;
  overflow-y: auto;
  background: #101624;
  border: 1px solid rgba(255, 212, 60, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.global-guide-search-results[hidden] {
  display: none;
}

.global-guide-search-results > button {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 7px 10px;
  color: #ffffff;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
}

.global-guide-search-results > button:hover,
.global-guide-search-results > button:focus-visible {
  background: rgba(255, 212, 60, 0.08);
  outline: 1px solid rgba(255, 212, 60, 0.22);
}

.global-guide-search-results img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  background: #090d16;
  border-radius: 7px;
}

.global-guide-search-results span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.global-guide-search-results strong,
.global-guide-search-results small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-guide-search-results small {
  color: #939daf;
  font-size: 12px;
}

.global-guide-search-results em {
  color: #ffd43c;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.global-guide-search-results > p {
  margin: 0;
  padding: 18px;
  color: #aab2c1;
  text-align: center;
}

.misc-subsection-head {
  grid-column: 1 / -1;
  padding: 20px 0 4px;
}

.misc-subsection-head span {
  display: inline-flex;
  margin-bottom: 9px;
  color: #ffd43c;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.misc-subsection-head h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.misc-subsection-head p {
  max-width: 760px;
  margin: 0;
  color: #aeb4c2;
  font-size: 15px;
  line-height: 1.5;
}

.misc-back-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  color: #cbd1dc;
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.misc-back-button:hover,
.misc-back-button:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 209, 57, 0.42);
  outline: 0;
  transform: translateY(-1px);
}

.catalog-empty {
  margin: 24px 0;
  padding: 28px;
  color: #aeb6c5;
  text-align: center;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.relic-catalog-head {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.relic-catalog-head .misc-back-button {
  flex: 0 0 auto;
  margin-top: 1px;
}

.relic-category-filter {
  grid-column: 1 / -1;
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.relic-category-filter button {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 13px;
  color: #b7bfce;
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.relic-category-filter button:hover,
.relic-category-filter button:focus-visible,
.relic-category-filter button.is-active {
  color: #17140b;
  background: #ffd43c;
  border-color: #ffd43c;
  outline: 0;
}

.relic-catalog-count {
  grid-column: 1 / -1;
  color: #7f8899;
  font-size: 12px;
}

.relic-icon-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.relic-icon-card {
  display: grid;
  gap: 7px;
  align-content: start;
  min-width: 0;
  padding: 10px 8px 12px;
  color: #f4f6fb;
  text-align: center;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

.relic-icon-card:hover,
.relic-icon-card:focus-visible {
  background: #151c2c;
  border-color: rgba(255, 212, 60, 0.45);
  outline: 0;
  transform: translateY(-2px);
}

.relic-icon-frame {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: radial-gradient(circle, rgba(65, 80, 112, 0.24), #090d16 72%);
  border-radius: 8px;
}

.relic-icon-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.buff-icon-frame {
  aspect-ratio: 1;
  padding: 8px;
}

.buff-detail-intro {
  grid-template-columns: 190px minmax(0, 1fr);
}

.buff-detail-icon {
  aspect-ratio: 1;
  padding: 16px;
}

.relic-icon-card strong {
  font-size: 12px;
  line-height: 1.25;
}

.relic-icon-card small {
  overflow: hidden;
  color: #7e8798;
  font-size: 9px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.relic-guide-page {
  display: grid;
  gap: 20px;
}

.relic-detail-hero,
.relic-detail-main section,
.relic-detail-aside {
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.relic-detail-hero {
  padding: 26px;
}

.relic-detail-intro {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.relic-detail-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: radial-gradient(circle, rgba(86, 106, 145, 0.25), #090d16 72%);
  border: 1px solid rgba(255, 212, 60, 0.18);
  border-radius: 14px;
}

.relic-detail-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.relic-detail-intro > div:last-child > span {
  color: #ffd43c;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.relic-detail-intro h1 {
  margin: 8px 0 4px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.05;
}

.relic-detail-english {
  margin: 0 0 18px;
  color: #8f99ab;
  font-size: 16px;
}

.relic-detail-effect {
  max-width: 850px;
  margin: 0;
  color: #d3d9e4;
  font-size: 17px;
  line-height: 1.55;
}

.relic-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
  align-items: start;
}

.relic-detail-main {
  display: grid;
  gap: 16px;
}

.relic-detail-main section,
.relic-detail-aside {
  padding: 24px;
}

.relic-detail-main h2,
.relic-detail-aside h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.relic-detail-main h2 {
  font-size: 23px;
}

.relic-detail-main p,
.relic-detail-aside p {
  color: #bdc5d3;
  line-height: 1.6;
}

.relic-upgrade-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: relic-level;
}

.relic-upgrade-list li {
  padding: 10px 12px;
  color: #d9deea;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 8px;
  font-size: 13px;
}

.relic-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.relic-facts-grid > div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9px;
}

.relic-facts-grid strong {
  color: #ffd43c;
  font-size: 11px;
  text-transform: uppercase;
}

.relic-facts-grid p {
  margin: 7px 0 0;
  font-size: 14px;
}

.artifact-source-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #c6cedb;
  line-height: 1.55;
}

.relic-faq-list {
  display: grid;
  gap: 8px;
}

.relic-faq-list details {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 9px;
}

.relic-faq-list summary {
  color: #eef1f7;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.4;
}

.relic-faq-list p {
  margin: 12px 0 0;
  font-size: 14px;
}

.relic-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.relic-hero-links a,
.relic-hero-links span {
  padding: 8px 11px;
  color: #dfe4ee;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 12px;
}

.relic-hero-links a:hover {
  color: #17140b;
  background: #ffd43c;
  border-color: #ffd43c;
}

.relic-detail-aside {
  position: sticky;
  top: 88px;
}

.relic-detail-aside h3:not(:first-child) {
  margin-top: 26px;
}

.relic-detail-aside dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.relic-detail-aside dl > div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.relic-detail-aside dt {
  color: #7e8798;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.relic-detail-aside dd {
  margin: 0;
  color: #e7eaf1;
  font-size: 13px;
  line-height: 1.45;
}

.article-layout {
  display: grid;
  gap: 20px;
}

.article-hero {
  min-height: 286px;
  padding: 44px;
  background:
    linear-gradient(90deg, rgba(10, 13, 22, 0.98), rgba(10, 13, 22, 0.56)),
    url("./assets/topics/debuffs-guide.png") center / cover;
}

.article-hero span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-hero h1 {
  margin-top: 12px;
  font-size: 62px;
}

.article-hero p {
  width: min(620px, 100%);
  margin-bottom: 0;
}

.article-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
}

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

.article-main h2 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 24px;
}

.article-main h2:first-child {
  margin-top: 0;
}

.article-main p {
  margin-bottom: 0;
}

.article-aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-aside li {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.45;
}

.article-aside li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  vertical-align: 1px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.guide-detail-page,
.news-detail-page {
  display: grid;
  gap: 22px;
}

.content-detail-hero {
  position: relative;
  min-height: 330px;
  padding: 34px 38px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10, 13, 22, 0.98), rgba(10, 13, 22, 0.72) 48%, rgba(10, 13, 22, 0.24)),
    var(--detail-image) center / cover;
  background-clip: padding-box;
  border: 1px solid #273043;
  border-radius: 12px;
  isolation: isolate;
}

.content-detail-hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  border: 1px solid #273043;
  border-radius: inherit;
  box-shadow: inset 0 0 18px 4px rgba(7, 10, 18, 0.72);
  pointer-events: none;
}

.content-detail-hero > * {
  position: relative;
  z-index: 1;
}

.content-detail-hero--news {
  min-height: 360px;
  padding-right: 38px;
  background:
    linear-gradient(90deg, rgba(9, 13, 22, 0.98) 0%, rgba(9, 13, 22, 0.9) 42%, rgba(9, 13, 22, 0.55) 68%, rgba(9, 13, 22, 0.18) 100%),
    var(--detail-image) var(--detail-position, center) / var(--detail-size, cover) no-repeat,
    #0b101b;
}

.content-detail-hero--news h1,
.content-detail-hero--news p {
  max-width: 760px;
}

.content-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 0 14px;
  color: #cbd1dc;
  background: rgba(18, 24, 39, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.content-detail-back:hover,
.content-detail-back:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 209, 57, 0.42);
  outline: 0;
  transform: translateY(-1px);
}

.content-detail-hero span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.content-detail-hero h1 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 52px;
  font-weight: 850;
  line-height: 1.05;
}

.content-detail-hero p {
  max-width: 660px;
  margin: 0;
  color: #d8deea;
  font-size: 17px;
  line-height: 1.55;
}

.content-detail-updated {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  color: #fff0a6;
  background: rgba(255, 209, 57, 0.1);
  border: 1px solid rgba(255, 209, 57, 0.24);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.content-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
}

.content-detail-main,
.content-detail-aside {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 12px;
}

.content-detail-main {
  display: grid;
  gap: 0;
  align-content: start;
  align-self: start;
}

.content-detail-main section {
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.content-detail-main section:last-child {
  border-bottom: 0;
}

.content-detail-main h2,
.content-detail-aside h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 750;
  line-height: 1.15;
}

.content-detail-main p {
  margin: 0;
  color: #b7bfce;
  font-size: 15px;
  line-height: 1.6;
}

.news-context-promo {
  min-width: 0;
}

.news-promo-code {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 208, 66, 0.07);
}

.news-promo-code span {
  color: #e6c976;
  font-size: 13px;
  font-weight: 800;
}

.news-promo-code code {
  color: #fff;
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  letter-spacing: 0.025em;
  user-select: all;
}

.news-promo-code button {
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid #e8b743;
  border-radius: 8px;
  background: #ffd042;
  color: #171b24;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.news-promo-code button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.news-article-copy p + p {
  margin-top: 16px;
}

.news-article-skills-index {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 208, 66, 0.055);
}

.news-article-skills-index span {
  margin-right: 5px;
  color: #ffd75c;
  font-size: 13px;
  font-weight: 800;
}

.news-article-skill-jump {
  padding: 7px 10px;
  border: 1px solid rgba(255, 208, 66, 0.24);
  border-radius: 7px;
  background: transparent;
  color: #f6e6b5;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.news-article-skill-jump:hover,
.news-article-skill-jump:focus-visible {
  border-color: var(--yellow);
  background: rgba(255, 208, 66, 0.12);
  color: #fff;
  outline: 0;
}

.news-article-copy {
  scroll-margin-top: 20px;
}

.news-article-media-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 24px;
}

.news-article-copy--with-media .news-article-figure {
  width: 100%;
  margin: 0;
}

.news-article-figure {
  width: min(100%, 980px);
  margin: 22px auto 26px;
}

.news-article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #07101d;
}

.news-article-figure--open > button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.news-article-figure--open {
  display: flex;
  flex-direction: column;
}

.news-article-figure--open figcaption {
  order: -1;
  margin: 0 0 10px;
}

.news-article-figure--open button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.news-article-figure--open button:hover img {
  border-color: var(--yellow);
}

.news-article-figure figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.news-article-figure--open figcaption button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffd75c;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .news-article-media-row {
    grid-template-columns: 1fr;
  }
}


.content-detail-points {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-detail-points li {
  position: relative;
  padding-left: 22px;
  color: #d2d8e4;
  font-size: 14px;
  line-height: 1.55;
}

.content-detail-points li::before {
  position: absolute;
  top: 0.58em;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--yellow);
  border-radius: 2px;
  transform: rotate(45deg);
}

.content-detail-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.content-detail-steps article {
  min-height: 150px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.content-detail-steps span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.content-detail-steps strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.content-detail-aside {
  align-self: start;
  padding: 24px;
}

.content-detail-aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-detail-aside li {
  color: #b7bfce;
  font-size: 13px;
  line-height: 1.45;
}

.content-detail-aside li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  vertical-align: 1px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
}

.content-detail-avoid {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.content-detail-avoid h3 {
  font-size: 18px;
}

.content-detail-avoid li::before {
  background: #ef665c;
}

.talent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
  min-height: 344px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(145, 70, 255, 0.16), transparent 36%),
    #111726;
}

.talent-tree {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.talent-tree span {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 209, 57, 0.6), transparent 28%),
    #0b0f18;
  border: 1px solid rgba(255, 209, 57, 0.22);
  border-radius: 8px;
}

.talent-hero-link {
  width: max-content;
  margin-top: 22px;
}

.talent-panel-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.talent-panel-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: #c7cede;
  background: #0b0f18;
  border: 1px solid rgba(255, 209, 57, 0.18);
  border-radius: 8px;
  line-height: 1.45;
}

.talent-panel-steps strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #17140b;
  background: var(--yellow);
  border-radius: 50%;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .top-guide-context-promo {
    display: none;
  }

  .news-context-promo {
    display: none;
  }

  .content-detail-main {
    min-height: 0 !important;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: sticky;
    z-index: 5;
    top: 0;
    bottom: auto;
    left: auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    width: auto;
    height: auto;
    margin: 0;
    padding: 12px 16px;
    gap: 14px;
    border-right: 0;
    border-radius: 0;
    overflow: visible;
  }

  .brand {
    height: auto;
    margin: 0;
    font-size: 18px;
  }

  .brand-logo {
    width: 42px;
    height: 38px;
    margin-right: 7px;
  }

  .brand-ru {
    min-width: 22px;
    height: 12px;
    font-size: 9px;
  }

  .main-nav {
    display: flex;
    flex: 0 0 auto;
    overflow-x: auto;
    overflow-y: visible;
    gap: 8px;
    padding-bottom: 2px;
  }

  .nav-link {
    flex: 0 0 auto;
    grid-template-columns: 18px auto;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav-link.is-active,
  .nav-group.is-active > .nav-group-summary {
    min-height: 36px;
  }

  .nav-group {
    flex: 0 0 auto;
    position: relative;
  }

  .nav-group-summary {
    grid-template-columns: 18px auto 18px;
  }

  .nav-icon {
    width: 18px;
    height: 18px;
  }

  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .nav-chevron {
    width: 18px;
    height: 18px;
    font-size: 16px;
  }

  .nav-submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 6px);
    z-index: 20;
    width: 220px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #121723;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  }

  .sidebar-cta {
    width: 112px;
    min-height: 28px;
  }

  .content {
    padding: 24px 18px 54px;
  }

  .donate-page-head {
    display: block;
  }

  .donate-purchase-cta {
    min-width: 172px;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 14px;
  }

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

  .knowledge-hero .hero-figma-media {
    right: -6px;
  }

  .topic-grid,
  .news-grid,
  .news-list,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #view-home .topic-grid .topic-card {
    display: none;
  }

  #view-home .topic-grid .topic-card[href="#heroes"],
  #view-home .topic-grid .topic-card[href="#locations"],
  #view-home .topic-grid .topic-card[href="#novice"] {
    display: block;
  }

  .latest-news-section .news-feature {
    grid-template-columns: 1fr;
  }

  .heroes-search {
    z-index: 30;
  }

  .heroes-search .hero-search-results {
    max-height: min(56dvh, 430px);
  }

  .latest-news-section .news-feature-body {
    padding: 6px 8px 10px;
  }

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

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

  .content-detail-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-cta {
    display: none;
  }

  .knowledge-hero {
    min-height: 440px;
    padding: 32px 24px;
    align-items: start;
    aspect-ratio: auto;
    background:
      linear-gradient(90deg, #111520 0%, #111520 46%, rgba(17, 21, 32, 0.74) 64%, rgba(17, 21, 32, 0.2) 100%),
      #111520;
    border: 1px solid var(--stroke);
  }

  .knowledge-hero::before,
  .knowledge-hero::after,
  .knowledge-copy,
  .knowledge-hero .hero-figma-media {
    display: block;
  }

  .knowledge-hero::before {
    inset: 0;
    width: auto;
    height: auto;
  }

  .knowledge-copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(304px, 100%);
    opacity: 1;
  }

  .knowledge-hero .hero-figma-media {
    top: auto;
    right: -230px;
    bottom: 0;
    height: 72%;
    opacity: 0.64;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 24%);
  }

  .knowledge-copy h1,
  .article-hero h1,
  .content-detail-hero h1 {
    font-size: 44px;
  }

  .knowledge-copy strong {
    font-size: 19px;
  }

  .topic-grid,
  .news-grid,
  .news-list,
  .guide-grid,
  .news-feature,
  .article-columns,
  .talent-panel {
    grid-template-columns: 1fr;
  }

  .news-feature img {
    height: 190px;
  }

  .latest-news-section .section-heading {
    align-items: center;
  }

  .latest-news-section .section-heading h2 {
    font-size: 28px;
  }

  .latest-news-section .news-feature-image {
    height: 220px;
  }

  .latest-news-section .news-feature h3 {
    font-size: 24px;
    line-height: 1.35;
  }

  .latest-news-section .news-feature p {
    font-size: 17px;
  }

  .latest-news-section .news-grid {
    grid-template-columns: 1fr;
  }

  .content-detail-hero {
    min-height: 300px;
    padding: 26px 22px;
  }

  .content-detail-main section,
  .content-detail-aside {
    padding: 20px;
  }

  .content-detail-hero h1 {
    font-size: 34px;
  }

  .misc-subsection-head h2 {
    font-size: 26px;
  }

  .latest-news-section .news-card-media {
    height: 230px;
  }

  #view-news .news-card-media {
    height: 230px;
  }

  #view-news .news-card h3,
  .latest-news-section .news-card h3 {
    min-height: 0;
  }

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

  #view-heroes .hero-rarity-tabs,
  #view-heroes .faction-grid {
    grid-template-columns: 1fr;
  }

  #view-heroes .heroes-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #view-heroes .active-filter-chip {
    min-width: min(100%, 269px);
  }

  .hero-guide-modal {
    padding: 18px;
  }

  .hero-guide-panel {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
    max-height: calc(100dvh - 36px);
  }

  .hero-guide-media {
    padding: 22px 20px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-guide-media > img {
    width: min(48vw, 172px);
  }

  .hero-guide-store {
    width: min(100%, 220px);
    margin-top: 18px;
  }

  .hero-guide-content {
    padding: 28px 24px 30px;
  }

  .hero-guide-content h2 {
    font-size: 32px;
  }

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

  .hero-guide-profile-card,
  .hero-guide-shortcuts {
    max-width: none;
  }

  .hero-guide-shortcuts-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .hero-guide-shortcut {
    flex: 0 0 118px;
  }

  .hero-guide-build-panel,
  .hero-guide-build-compact,
  .hero-guide-use-grid {
    grid-template-columns: 1fr;
  }

  .hero-guide-build-compact {
    grid-template-areas:
      "priority"
      "slots";
    padding: 14px;
  }

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

  .hero-guide-mini-table {
    grid-template-columns: 1fr;
  }

  .hero-guide-mini-table div {
    grid-template-columns: 1fr;
  }

  .hero-guide-mini-table span,
  .hero-guide-mini-table small {
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    border-left: 0;
  }

  .hero-guide-synergy-table {
    grid-template-columns: 1fr;
  }

  .hero-guide-synergy-table article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-guide-build-panel article,
  .hero-guide-build-card,
  .hero-guide-synergy-table article,
  .hero-guide-list-panel,
  .hero-guide-summary-card {
    padding: 12px;
  }

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

  .hero-guide-talent-trees {
    grid-template-columns: 1fr;
  }

  .talent-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 68px 12px 34px;
  }

  .talent-lightbox-counter {
    top: 22px;
    left: 16px;
    font-size: 15px;
  }

  .talent-lightbox-close {
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 40px;
  }

  .talent-lightbox-arrow {
    width: 42px;
    height: 38px;
    background: rgba(255, 255, 255, 0.065);
  }

  .talent-lightbox-arrow svg {
    width: 21px;
    height: 21px;
  }

  .talent-lightbox-figure img {
    max-height: calc(100dvh - 130px);
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .article-hero,
  .article-main,
  .article-aside,
  .talent-panel {
    padding: 24px;
  }

  .global-guide-search {
    position: relative;
    top: auto;
    margin-bottom: 18px;
  }

  .global-guide-search-results > button {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .global-guide-search-results em {
    display: none;
  }

  .relic-catalog-head {
    display: grid;
    gap: 4px;
  }

  .relic-icon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .relic-icon-card {
    padding: 7px 6px 9px;
  }

  .relic-icon-card strong {
    font-size: 10px;
  }

  .relic-icon-card small {
    display: none;
  }

  .relic-detail-intro,
  .relic-detail-layout {
    grid-template-columns: 1fr;
  }

  .relic-detail-intro {
    gap: 18px;
  }

  .relic-detail-icon {
    width: 150px;
  }

  .relic-detail-intro h1 {
    font-size: 32px;
  }

  .relic-detail-aside {
    position: static;
  }

  .relic-facts-grid,
  .relic-upgrade-list {
    grid-template-columns: 1fr;
  }
}

/* Location layout refinements */
@media (min-width: 721px) {
  #locations-menu .nav-submenu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 520px;
    max-height: none;
    overflow: visible;
  }
}

.location-category-filter {
  flex-wrap: wrap;
  overflow: visible;
}

.location-card-image {
  height: 190px;
  aspect-ratio: auto;
  padding: 8px;
  background: radial-gradient(circle, rgba(70, 89, 126, 0.24), #090d16 72%);
}

.location-card-image img {
  object-fit: contain;
}

.location-card:hover .location-card-image img {
  transform: scale(1.02);
}

.location-detail-hero {
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 26px;
  min-height: 0;
  padding: 26px 28px;
}

.location-detail-copy .content-detail-back {
  margin-bottom: 20px;
}

.location-detail-copy h1 {
  font-size: clamp(34px, 3.2vw, 48px);
}

.location-detail-copy p {
  font-size: 16px;
  line-height: 1.58;
}

.location-detail-image {
  width: 250px;
  height: 230px;
  min-height: 0;
  align-self: center;
  padding: 8px;
  background: radial-gradient(circle, rgba(75, 91, 130, 0.28), #090d16 72%);
}

.location-detail-image img {
  object-fit: contain;
}

.location-detail-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.location-detail-aside {
  padding: 0;
}

.location-detail-aside > section > span {
  font-size: 12px;
}

.location-detail-aside > section > strong {
  font-size: 17px;
}

.location-related {
  gap: 12px;
}

.location-related a {
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 13px;
  min-height: 76px;
  padding: 9px;
  font-size: 15px;
  line-height: 1.35;
}

.location-related img {
  width: 78px;
  height: 58px;
  object-fit: contain;
  background: #090d16;
}

.location-table-wrap {
  scrollbar-color: rgba(255, 212, 60, 0.45) transparent;
  scrollbar-width: thin;
}

@media (max-width: 1180px) {
  .location-detail-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
  }
}

@media (max-width: 820px) {
  .location-detail-hero,
  .location-detail-layout {
    grid-template-columns: 1fr;
  }

  .location-detail-image {
    width: 100%;
    height: 260px;
  }
}

/* Mobile shell and reading experience */
.mobile-nav-toggle {
  display: none;
}

html.telegram-mini-app {
  min-height: var(--app-viewport-height, 100dvh);
  overscroll-behavior-y: none;
}

html.telegram-mini-app body,
html.telegram-mini-app .app-shell {
  min-height: var(--app-viewport-height, 100dvh);
}

html.telegram-mini-app a,
html.telegram-mini-app button,
html.telegram-mini-app summary {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  .app-shell {
    display: block;
    width: 100%;
    min-height: 100vh;
    padding-top: calc(64px + var(--tg-content-safe-area-inset-top, 0px));
    padding-bottom: var(--tg-content-safe-area-inset-bottom, 0px);
    transform: none;
  }

  .sidebar,
  html.has-hero-guide .sidebar {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 64px;
    margin: 0;
    padding: calc(10px + var(--tg-content-safe-area-inset-top, 0px)) max(14px, var(--tg-content-safe-area-inset-right, 0px)) 10px max(14px, var(--tg-content-safe-area-inset-left, 0px));
    gap: 8px 12px;
    background: rgba(12, 16, 27, 0.97);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
    transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
    overflow: visible;
  }

  .sidebar.is-scrolled,
  html.has-hero-guide .sidebar.is-scrolled {
    background: rgba(12, 16, 27, 0.84);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px) saturate(125%);
  }

  .brand {
    width: fit-content;
    min-height: 44px;
    margin: 0;
    font-size: 19px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 44px;
    gap: 9px;
    padding: 0 12px;
    color: #f3f5fb;
    background: #171d2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav-toggle-icon {
    display: grid;
    width: 18px;
    gap: 4px;
  }

  .mobile-nav-toggle-icon i {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .sidebar.is-mobile-open .mobile-nav-toggle-icon i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .sidebar.is-mobile-open .mobile-nav-toggle-icon i:nth-child(2) {
    opacity: 0;
  }

  .sidebar.is-mobile-open .mobile-nav-toggle-icon i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-height: calc(100dvh - 150px);
    gap: 7px;
    padding: 8px 0 2px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
  }

  .sidebar.is-mobile-open .main-nav {
    display: grid;
  }

  .nav-link,
  .nav-link.is-active,
  .nav-group.is-active > .nav-group-summary {
    grid-template-columns: 20px minmax(0, 1fr);
    min-height: 46px;
    padding: 0 12px;
    gap: 9px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.15;
  }

  .nav-group,
  .nav-group[open] {
    position: relative;
    z-index: 30;
    display: block;
    min-width: 0;
  }

  #locations-menu[open] {
    z-index: 40;
  }

  .nav-group-summary {
    grid-template-columns: 20px minmax(0, 1fr) 18px;
  }

  .nav-icon,
  .nav-icon svg {
    width: 20px;
    height: 20px;
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 42dvh;
    margin-top: 7px;
    padding: 7px;
    gap: 3px;
    overflow-y: auto;
    background: #0d121e;
    box-shadow: none;
    animation: none;
  }

  .sidebar.is-mobile-open .main-nav {
    max-height: none;
    overflow: visible;
  }

  #locations-menu .nav-submenu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(200% + 7px);
    max-height: none;
    margin: 0;
    gap: 4px 7px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-sub-link {
    min-height: 42px;
    padding: 7px 10px;
    font-size: 14px;
    line-height: 1.25;
  }

  .sidebar-cta,
  .sidebar.is-mobile-open .sidebar-cta {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    min-height: 48px;
    margin: 2px 0 4px;
  }

  .sidebar.is-mobile-open .sidebar-cta {
    display: grid;
  }

  .content {
    display: block;
    grid-column: 1;
    width: 100%;
    min-width: 0;
    padding: 18px 14px 48px;
  }

  .global-guide-search {
    margin-bottom: 14px;
  }

  .global-guide-search input,
  .guide-search input,
  .hero-search input {
    min-height: 48px;
    font-size: 16px;
  }

  .knowledge-hero {
    min-height: 410px;
    padding: 28px 22px;
    border-radius: 12px;
  }

  .knowledge-copy {
    width: min(286px, 88%);
  }

  .knowledge-copy h1,
  .article-hero h1,
  .content-detail-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    overflow-wrap: anywhere;
  }

  .knowledge-copy p br {
    display: none;
  }

  .knowledge-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .knowledge-hero .hero-figma-media {
    right: -250px;
    height: 70%;
  }

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

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

  .section-heading h2,
  .latest-news-section .section-heading h2 {
    font-size: 27px;
    line-height: 1.08;
  }

  .topic-grid,
  .news-grid,
  .news-list,
  .guide-grid,
  .latest-news-section .news-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .topic-card,
  .guide-card,
  .news-card {
    border-radius: 12px;
  }

  .latest-news-section .news-feature-image,
  .latest-news-section .news-card-media,
  #view-news .news-card-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .latest-news-section .news-feature-body,
  .latest-news-section .news-card-body,
  #view-news .news-card-body,
  .guide-card-body,
  .topic-card-body {
    padding: 18px;
  }

  .latest-news-section .news-feature h3,
  #view-news .news-card h3,
  .latest-news-section .news-card h3,
  .guide-card h3 {
    font-size: 22px;
    line-height: 1.2;
  }

  .latest-news-section .news-feature p,
  #view-news .news-card p,
  .latest-news-section .news-card p,
  .guide-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .read-link,
  .news-read-button,
  .news-all-button,
  .load-more-button,
  .content-detail-back {
    min-height: 44px;
  }

  .heroes-grid,
  .heroes-grid-large,
  .best-heroes-section .heroes-grid,
  #view-heroes .heroes-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .best-heroes-section .hero-card {
    padding: 8px 8px 11px;
  }

  .best-heroes-section .hero-card-body {
    min-height: 54px;
    padding: 11px 3px 0;
  }

  .best-heroes-section .hero-card h3 {
    min-height: 0;
    font-size: 16px;
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  #view-heroes .faction-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }

  #view-heroes .faction-card {
    min-height: 128px;
    padding: 9px 5px;
  }

  #view-heroes .faction-card img {
    width: 48px;
    height: 58px;
    margin-bottom: 9px;
  }

  #view-heroes .faction-card strong {
    font-size: 12px;
    line-height: 1.12;
  }

  #view-heroes .faction-card span {
    font-size: 10px;
  }

  #view-heroes .faction-controls {
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .content-detail-hero,
  .content-detail-hero--news,
  .content-detail-hero.content-detail-hero--ranked {
    min-height: 390px;
    padding: 20px;
    background-position: 62% center;
    border-radius: 12px;
  }

  .content-detail-hero::after {
    box-shadow: inset 0 0 24px 7px rgba(7, 10, 18, 0.92);
  }

  .content-detail-hero--news {
    background:
      linear-gradient(90deg, rgba(9, 13, 22, 0.97) 0%, rgba(9, 13, 22, 0.84) 62%, rgba(9, 13, 22, 0.48) 100%),
      var(--detail-image) var(--detail-position, center) / var(--detail-size, cover) no-repeat,
      #0b101b;
  }

  .content-detail-back {
    margin-bottom: 24px;
    padding: 0 14px;
    font-size: 13px;
  }

  .content-detail-hero h1 {
    margin-bottom: 16px;
    line-height: 1.04;
  }

  .content-detail-hero p,
  .content-detail-main p {
    font-size: 16px;
    line-height: 1.6;
  }

  .content-detail-layout,
  .content-detail-layout.content-detail-layout--ranked,
  .location-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .content-detail-main section,
  .content-detail-main .top-heroes-section,
  .content-detail-aside,
  .article-main,
  .article-aside,
  .talent-panel {
    padding: 20px 18px;
  }

  .content-detail-main h2,
  .content-detail-aside h3 {
    font-size: 24px;
    line-height: 1.16;
  }

  .content-detail-aside li,
  .content-detail-points li {
    font-size: 15px;
  }

  .content-detail-steps,
  .top-guide-facts-grid,
  .top-tier-legend,
  .top-hero-options,
  .content-detail-layout--ranked .content-detail-aside {
    grid-template-columns: 1fr;
  }

  .hero-guide-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .hero-guide-stats-row span {
    min-width: 0;
  }

  .hero-guide-stats-row small,
  .hero-guide-stats-row strong {
    overflow-wrap: anywhere;
  }

  .hero-guide-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-guide-article {
    grid-row: 2;
    padding-top: 4px;
  }

  .hero-guide-side-column {
    display: contents;
  }

  .hero-guide-profile-card {
    grid-row: 1;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .hero-guide-shortcuts {
    grid-row: 3;
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .hero-guide-article-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 22px;
  }

  .hero-guide-back {
    width: 48px;
    height: 48px;
  }

  .hero-guide-back svg {
    width: 24px;
    height: 24px;
  }

  .hero-guide-article-head h1 {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .hero-guide-article-head p {
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .hero-guide-article-section {
    padding: 24px 0;
  }

  .hero-guide-article-section h2 {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.15;
    text-align: left;
  }

  .hero-guide-article-section > p {
    font-size: 16px;
  }

  .hero-guide-build-images,
  .hero-guide-build-images--compact,
  .hero-guide-build-images--multiple {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-guide-build-images .hero-guide-build-item,
  .hero-guide-build-images .hero-guide-talent-zoom {
    width: 100%;
    max-width: 320px;
  }

  .hero-guide-build-images .hero-guide-talent-zoom img,
  .hero-guide-build-images--multiple .hero-guide-talent-zoom img {
    width: auto;
    max-width: 100%;
    max-height: min(56dvh, 426px);
    margin-inline: auto;
    object-fit: contain;
  }

  .talent-lightbox {
    grid-template-columns: minmax(0, 1fr);
    padding: 62px 14px 34px;
  }

  .talent-lightbox-figure {
    grid-column: 1;
  }

  .talent-lightbox-figure img {
    max-width: calc(100vw - 28px);
    max-height: calc(100dvh - 126px);
  }

  .talent-lightbox-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
  }

  .talent-lightbox-arrow:hover,
  .talent-lightbox-arrow:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .talent-lightbox-arrow-prev {
    left: 10px;
  }

  .talent-lightbox-arrow-next {
    right: 10px;
  }

  .hero-guide-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 20px;
  }

  .hero-guide-tabs button {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 14px;
    line-height: 1.2;
  }

  .top-heroes-heading {
    align-items: center;
  }

  .top-heroes-heading > strong {
    width: 44px;
    height: 44px;
  }

  .top-hero-card {
    grid-template-columns: 38px 76px minmax(0, 1fr);
  }

  .top-hero-card--portraits {
    grid-template-columns: 38px max-content minmax(0, 1fr);
  }

  .top-hero-copy {
    padding: 13px 12px;
  }

  .top-hero-title-row {
    display: grid;
    gap: 6px;
  }

  .top-hero-title-row span {
    max-width: none;
    text-align: left;
  }

  .location-category-filter,
  .hero-rarity-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .location-category-filter button,
  .relic-category-filter button,
  .misc-back-button,
  .heroes-search-clear,
  .location-search button,
  .guide-search button,
  .global-guide-search button,
  #faction-prev,
  #faction-next {
    min-width: 44px;
    min-height: 44px;
  }

  .location-category-filter button,
  .relic-category-filter button {
    font-size: 13px;
  }

  .location-detail-hero {
    padding: 20px;
  }

  .location-detail-image {
    height: 220px;
  }

  .location-table-wrap,
  .hero-guide-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.hero-search-results {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  max-height: 440px;
  padding: 7px;
  overflow-y: auto;
  background: #111725;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
}

.hero-search-results[hidden] {
  display: none;
}

.hero-search-results button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  padding: 5px 8px;
  gap: 10px;
  color: #f5f7fb;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.hero-search-results button:hover,
.hero-search-results button:focus-visible {
  background: rgba(255, 209, 57, 0.1);
  outline: 1px solid rgba(255, 209, 57, 0.34);
}

.hero-search-results img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.hero-search-results span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hero-search-results strong,
.hero-search-results small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-search-results strong {
  font-size: 15px;
}

.hero-search-results small,
.hero-search-results p {
  color: #aeb7c8;
  font-size: 12px;
}

.hero-search-results p {
  margin: 0;
  padding: 14px;
  text-align: center;
}

#faction-page-status {
  min-width: 48px;
  color: #aeb7c8;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

@media (min-width: 721px) {
  #faction-page-status {
    display: none;
  }
}

@media (max-width: 380px) {
  .content {
    padding-inline: 12px;
  }

  .brand {
    font-size: 17px;
  }

  .mobile-nav-toggle {
    min-width: 96px;
    padding-inline: 10px;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .knowledge-hero {
    min-height: 390px;
    padding-inline: 18px;
  }

  .content-detail-hero,
  .content-detail-hero--news,
  .content-detail-hero.content-detail-hero--ranked {
    min-height: 370px;
    padding: 18px;
  }

  .content-detail-main section,
  .content-detail-main .top-heroes-section,
  .content-detail-aside {
    padding: 18px 16px;
  }

  .top-hero-card,
  .top-hero-card--portraits {
    grid-template-columns: 34px 68px minmax(0, 1fr);
  }

  .top-hero-card > img,
  .top-hero-portraits a,
  .top-hero-portraits img {
    width: 68px;
  }
}

@media (max-width: 720px) {
  .top-hero-card,
  .top-hero-card--portraits {
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .top-hero-rank {
    grid-column: 1;
    grid-row: 1;
  }

  .top-hero-card > img,
  .top-hero-portraits {
    grid-column: 2;
    grid-row: 1;
  }

  .top-hero-portraits,
  .top-hero-card--portraits-stacked .top-hero-portraits {
    flex-flow: row wrap;
    align-content: flex-start;
  }

  .top-hero-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}
/* Crawlable catalog links remain available without JavaScript and behind pagination. */
.seo-page-links { margin-top: 32px; padding: 24px; border: 1px solid #293044; border-radius: 16px; }
.seo-page-links h2 { margin: 0 0 16px; }
.seo-page-links a { display: inline-block; margin: 6px 16px 6px 0; color: #b8c9ff; }
