* { box-sizing: border-box; }
html {
  margin: 0;
  min-height: 100%;
  background: #050506;
}
body {
  margin: 0;
  min-height: 100%;
  color: #e8e8ee;
  font: 10pt/1.45 Verdana, Tahoma, Arial, sans-serif;
  background-color: #050506;
  background-image:
    radial-gradient(900px 420px at 50% 0, rgba(90, 12, 12, .32) 0%, transparent 58%),
    url("noobwar-site-bg.png");
  background-repeat: no-repeat;
  background-position: center top, center center;
  background-size: auto, cover;
  background-attachment: fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: max(160px, calc((100vw - 1080px) / 2));
  pointer-events: none;
  z-index: 0;
  background-image: url("noobwar-site-bg.png");
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
}
body::before {
  left: 0;
  background-position: left center;
  -webkit-mask-image: linear-gradient(90deg, #000 62%, transparent);
  mask-image: linear-gradient(90deg, #000 62%, transparent);
}
body::after {
  right: 0;
  background-position: right center;
  -webkit-mask-image: linear-gradient(270deg, #000 62%, transparent);
  mask-image: linear-gradient(270deg, #000 62%, transparent);
}

a { color: #ff5a5a; text-decoration: none; }
a:hover { color: #ffd6d6; }

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: transparent;
}
.top-art {
  height: 4px;
  background: linear-gradient(90deg, transparent, #c41212, transparent);
}
.logo-bar {
  width: 1080px;
  margin: 0 auto;
  padding: 6px 0 2px;
  text-align: center;
}
.logo { display: inline-block; }
.logo img {
  display: block;
  width: auto;
  max-width: 640px;
  max-height: 280px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.lang-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 8px auto 4px;
}
.lang-bar a {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid #3a3a46;
  background: #101014;
  color: #d7d7de;
  font-size: 8pt;
  letter-spacing: .02em;
}
.lang-bar a.on,
.lang-bar a:hover {
  border-color: #c41212;
  background: #1a0a0a;
  color: #fff;
}

.shell {
  width: 1080px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 190px 1fr 210px;
  gap: 12px;
  padding: 12px;
  background: #0c0c10;
  border: 1px solid #2a1212;
  box-shadow: 0 0 0 1px #000, 0 18px 50px rgba(0,0,0,.65);
}

.col { min-width: 0; }
.left-col, .right-col { display: flex; flex-direction: column; gap: 10px; }

.themebox {
  background: #111116;
  border: 1px solid #2c2c36;
}
.themebox-head {
  background: linear-gradient(#8e1515, #5a0d0d);
  color: #fff;
  text-align: center;
  font-weight: bold;
  letter-spacing: .04em;
  padding: 7px 0 8px;
  text-transform: uppercase;
  font-size: 9pt;
  border-bottom: 1px solid #c41212;
}
.themebox ul { list-style: none; margin: 0; padding: 0; }
.themebox li a {
  display: block;
  color: #d7d7de;
  padding: 7px 10px 7px 14px;
  border-bottom: 1px solid #1d1d24;
}
.themebox li a:hover,
.themebox li a.on {
  background: #1a0a0a;
  color: #fff;
  border-left: 3px solid #c41212;
  padding-left: 11px;
}

.info-body { padding: 10px 10px 12px; color: #cfcfd6; }
.info-body p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 3px 0;
  border-bottom: 1px solid #1c1c22;
}
.info-body p:last-child { border-bottom: 0; }
.info-body b { color: #f3f3f7; font-weight: 700; }
.online { color: #5dff7a; font-weight: bold; }
.offline { color: #ff5a5a; font-weight: bold; }

.rates-table { width: 100%; border-collapse: collapse; font-size: 8.5pt; }
.rates-table td {
  padding: 3px 0;
  border-bottom: 1px solid #1c1c22;
  color: #cfcfd6;
}
.rates-table td:last-child {
  text-align: right;
  color: #ffd0d0;
  font-variant-numeric: tabular-nums;
}

.top-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 10px;
  color: #d7d7de;
}
.top-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 22px;
  padding: 3px 0;
  border-bottom: 1px solid #1c1c22;
}
.top-list li:last-child { border-bottom: 0; }
.top-list a {
  color: #f0f0f5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.top-list .lvl {
  flex: 0 0 auto;
  color: #ff6b6b;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.top-list .empty { color: #8a8a94; }

.mini-search { padding: 10px; display: grid; gap: 8px; }
.mini-search input,
.aac-form input,
.aac-form select {
  width: 100%;
  border: 1px solid #3a3a46;
  background: #0a0a0e;
  padding: 6px 8px;
  font: 10pt Verdana, sans-serif;
  color: #f2f2f6;
}
.mini-search input:focus,
.aac-form input:focus,
.aac-form select:focus { outline: 1px solid #c41212; }
.aac-form input[type="radio"] { width: auto; margin-right: 4px; }
.aac-form label { margin-right: 12px; color: #dcdce4; }
.mini-search button,
.aac-form button,
.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #c41212;
  background: linear-gradient(#b31818, #6d0e0e);
  color: #fff;
  font: bold 10pt Verdana, sans-serif;
  padding: 6px 12px;
  cursor: pointer;
}
.mini-search button:hover,
.aac-form button:hover,
.btn:hover { filter: brightness(1.12); }
.download-btn {
  display: inline-block;
  margin: 8px 0 14px;
  padding: 10px 18px;
  font-size: 11pt;
}

.content-box {
  background: #131318;
  border: 1px solid #2c2c36;
}
.content-head {
  background: linear-gradient(#8e1515, #5a0d0d);
  color: #fff;
  font-weight: bold;
  padding: 8px 12px;
  border-bottom: 1px solid #c41212;
  letter-spacing: .03em;
}
.content-body { padding: 14px 16px 18px; color: #e4e4ea; }
.content-body p { margin: 0 0 10px; }
.content-body b { color: #fff; }

.home-ranks {
  display: grid;
  grid-template-columns: 1.35fr 1.1fr .85fr;
  gap: 12px;
  margin-bottom: 12px;
}
.home-ranks .content-body { padding: 10px 10px 12px; }
.home-rank-table { font-size: 8.5pt; }
.home-rank-table td, .home-rank-table th { padding: 4px 6px; }
.home-castle-label {
  color: #9a9aa4;
  font-size: 8pt;
  margin-bottom: 8px;
}
.home-castle-name {
  display: block;
  font-size: 13pt;
  font-weight: bold;
  color: #ffd0d0;
  word-break: break-word;
}
.home-castle-name.none { color: #8f8f99; }

.news { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid #26262e; }
.news-banner {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 12px;
  border: 1px solid #2a1212;
  background: #000;
}
.download-logo {
  display: block;
  width: auto;
  max-width: 420px;
  max-height: 280px;
  height: auto;
  margin: 0 auto 14px;
  object-fit: contain;
}
.news-title {
  font-size: 13pt;
  font-weight: bold;
  color: #fff;
  margin-bottom: 8px;
}
.news-text { color: #d8d8e0; }
.news-meta {
  margin-top: 10px;
  color: #8f8f99;
  font-size: 8pt;
  text-align: right;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  background: #101014;
}
table.data td, table.data th {
  border: 1px solid #2a2a32;
  padding: 6px 8px;
  text-align: left;
  vertical-align: middle;
}
table.data th {
  background: #1c0c0c;
  color: #fff;
  font-weight: bold;
}
table.data tr:nth-child(even) td { background: #16161c; }
table.data tr:hover td { background: #1d1212; }

.guild-logo-cell { width: 40px; text-align: center; }
.guild-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  border: 1px solid #2a2a32;
  background: #0a0a0e;
}
.guild-logo-lg {
  width: 64px;
  height: 64px;
}

.war-board td.war-side {
  width: 22%;
  text-align: center;
  font-weight: bold;
}
.war-board td.war-info {
  text-align: center;
  line-height: 1.45;
}
.war-score {
  font-size: 1.55em;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin: 2px 0 6px;
}
.war-score-a { color: #e85a5a; }
.war-score-b { color: #5ecf7a; }
.war-score-sep { color: #c8c8d0; margin: 0 4px; }
.war-status-active {
  color: #e85a5a;
  font-weight: bold;
  margin-bottom: 4px;
}
.war-status-pending {
  color: #e0b24a;
  font-weight: bold;
  margin-bottom: 4px;
}

.hof-badge {
  display: inline-block;
  margin-left: 4px;
  padding: 1px 5px;
  border: 1px solid #c4a035;
  background: #2a2208;
  color: #ffd56a;
  font-size: 8pt;
  font-weight: bold;
  letter-spacing: .04em;
  vertical-align: middle;
}

.shot {
  margin: 12px 0 14px;
  border: 1px solid #2a2a32;
  background: #101014;
  padding: 6px;
}
.shot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.shot figcaption {
  margin-top: 6px;
  color: #8a8a94;
  font-size: 8.5pt;
}

.aac-form table { width: 100%; }
.aac-form td { padding: 6px 8px; vertical-align: middle; color: #dcdce4; }
.skill-row { margin-bottom: 12px; }
.skill-row a {
  display: inline-block;
  margin: 0 6px 6px 0;
  padding: 4px 8px;
  border: 1px solid #3a3a46;
  background: #101014;
  color: #d7d7de;
}
.skill-row a.on, .skill-row a:hover {
  background: #8e1515;
  border-color: #c41212;
  color: #fff;
}

.cmd {
  display: inline-block;
  font-family: Consolas, "Courier New", monospace;
  background: #0a0a0e;
  border: 1px solid #3a3a46;
  color: #ffd0d0;
  padding: 2px 6px;
  cursor: pointer;
}
.cmd:hover { border-color: #c41212; color: #fff; }
.hint { color: #9a9aa4; font-size: 8.5pt; }
.shop-pic {
  width: 72px;
  text-align: center;
  color: #9a9aa4;
  vertical-align: middle;
}
.shop-pic .item-sprite {
  image-rendering: pixelated;
  width: 32px;
  height: 32px;
}
.shop-count {
  margin-top: 2px;
  font-size: 8pt;
  color: #c8c8d0;
}
.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 10px 0 8px;
}
.shop-tab {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #3a3a46;
  background: #121218;
  color: #c8c8d0;
  text-decoration: none;
  font-size: 8.5pt;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.shop-tab:hover {
  border-color: #c41212;
  color: #fff;
}
.shop-tab.on {
  border-color: #c41212;
  background: #2a1212;
  color: #ffd0d0;
}
.shop-tab-lead {
  margin: 0 0 10px;
}
.shop-pic-placeholder {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: 1px dashed #3a3a46;
  color: #7a7a84;
}
.forum-body {
  width: 100%;
  min-height: 120px;
  background: #0a0a0e;
  border: 1px solid #3a3a46;
  color: #e8e8ee;
  padding: 6px 8px;
  font: 10pt/1.45 Verdana, Tahoma, Arial, sans-serif;
}
.forum-post {
  border-bottom: 1px solid #2c2c36;
  margin-bottom: 12px;
  padding-bottom: 8px;
}

.error { color: #ff6b6b; font-weight: bold; }
.flash {
  background: #1a0f0f;
  border: 1px solid #c41212;
  color: #ffe0e0;
  padding: 8px 10px;
  margin-bottom: 10px;
}

.offer-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.offer-toolbar input { max-width: 240px; }

.wiki-body { padding-top: 12px; }
.wiki-search { margin-bottom: 14px; }
.wiki-search input {
  width: 100%;
  border: 1px solid #3a3a46;
  background: #0a0a0e;
  color: #f2f2f6;
  padding: 9px 12px;
  font: 10pt Verdana, sans-serif;
}
.wiki-search input:focus { outline: 1px solid #c41212; }
.wiki-wrap {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 14px;
  align-items: start;
}
.wiki-cats {
  background: #101014;
  border: 1px solid #2a2a32;
  padding: 8px 0 10px;
}
.wiki-cat-group { margin-bottom: 8px; }
.wiki-cat-title {
  color: #fff;
  font-weight: bold;
  font-size: 8.5pt;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 10px 4px;
}
.wiki-cats ul { list-style: none; margin: 0; padding: 0; }
.wiki-cats a {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  color: #d7d7de;
  padding: 5px 10px;
  font-size: 9pt;
}
.wiki-cats a span { color: #8a8a94; }
.wiki-cats a:hover,
.wiki-cats a.on {
  background: #1a0a0a;
  color: #fff;
  border-left: 3px solid #c41212;
  padding-left: 7px;
}
.wiki-hero {
  text-align: center;
  padding: 8px 8px 16px;
}
.wiki-hero h1 {
  margin: 0 0 8px;
  font-size: 16pt;
  color: #fff;
}
.wiki-hero p { margin: 0; color: #b8b8c0; }
.wiki-h {
  margin: 4px 0 10px;
  font-size: 11pt;
  color: #fff;
}
.wiki-lead { color: #cfcfd6; }
.wiki-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wiki-card {
  display: block;
  background: #101014;
  border: 1px solid #2a2a32;
  padding: 10px 10px 12px;
  min-height: 148px;
  color: #e4e4ea;
  position: relative;
}
.wiki-card:hover {
  border-color: #c41212;
  background: #160c0c;
  color: #fff;
}
.wiki-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  min-height: 18px;
}
.wiki-card-tags span {
  color: #8a8a94;
  font-size: 7.5pt;
  letter-spacing: .02em;
}
.wiki-card-icon {
  width: 52px;
  height: 52px;
  margin: 10px auto 8px;
  border: 1px solid #c41212;
  background: radial-gradient(circle at 50% 30%, #5a1212, #120808);
  color: #ffd0d0;
  font: bold 14pt Verdana, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wiki-card-icon img {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 0 2px rgba(196, 18, 18, 0.45));
}
.wiki-card-title {
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}
.wiki-card-sum {
  color: #9a9aa4;
  font-size: 8.5pt;
  text-align: center;
}
.wiki-article .wiki-h { margin-top: 14px; }
.wiki-list { margin: 0 0 12px; padding-left: 18px; color: #d8d8e0; }
.wiki-list li { margin-bottom: 4px; }
.wiki-crumb { color: #8a8a94; font-size: 8.5pt; }
.article-tags { justify-content: flex-start; margin-bottom: 10px; }
.wiki-article table.data { margin: 8px 0 12px; }

.outfit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 6px;
  margin: 10px 0 14px;
}
.outfit-grid figure {
  margin: 0;
  padding: 6px 4px 5px;
  border: 1px solid #2a2a32;
  background: #101014;
  text-align: center;
}
.outfit-grid figure:hover {
  border-color: #c41212;
  background: #161016;
}
.outfit-grid img {
  display: block;
  margin: 0 auto 4px;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.outfit-grid figcaption {
  color: #dcdce4;
  font-size: 8pt;
  line-height: 1.25;
  word-break: break-word;
}
.outfit-grid .outfit-sub {
  display: block;
  color: #6e6e76;
  font-size: 7pt;
}

@media (max-width: 700px) {
  .outfit-grid { grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); }
  .outfit-grid img { height: 60px; }
}

@media (max-width: 1100px) {
  .wiki-wrap, .wiki-grid { grid-template-columns: 1fr; }
  .home-ranks { grid-template-columns: 1fr; }
}

footer {
  width: 1080px;
  margin: 0 auto;
  padding: 0 0 28px;
  color: #6e6e76;
  text-align: center;
  font-size: 8pt;
}

@media (max-width: 1100px) {
  .logo-bar, .shell, footer { width: auto; margin-left: 8px; margin-right: 8px; }
  .shell { grid-template-columns: 1fr; }
  body::before,
  body::after { display: none; }
}

/* Arena bosses guide */
.bosses-intro {
  margin: 0 0 22px;
  max-width: 46em;
}
.bosses-intro p {
  margin: 0 0 12px;
  color: #cfcfd6;
  line-height: 1.55;
}
.bosses-intro p:last-child { margin-bottom: 0; }
.boss-tier {
  margin: 0 0 22px;
  border: 1px solid #2a2a32;
  background: #101014;
}
.boss-tier-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 10px 12px;
  background: linear-gradient(#2a1010, #160808);
  border-bottom: 1px solid #3a1a1a;
}
.boss-tier-head h2 {
  margin: 0;
  color: #ffd0d0;
  font-size: 12pt;
}
.boss-tier-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: #e8e8ee;
  font-size: 9pt;
}
.boss-tier-stats b { color: #ff8a8a; }
.boss-tier-1 .boss-tier-head { background: linear-gradient(#1a2a14, #0c1608); border-bottom-color: #2a3a1a; }
.boss-tier-1 .boss-tier-head h2 { color: #d8ffc8; }
.boss-tier-1 .boss-tier-stats b { color: #9dff7a; }
.boss-tier-2 .boss-tier-head { background: linear-gradient(#2a2410, #161208); border-bottom-color: #3a301a; }
.boss-tier-2 .boss-tier-head h2 { color: #ffe7b0; }
.boss-tier-2 .boss-tier-stats b { color: #ffd060; }
.boss-tier-3 .boss-tier-head { background: linear-gradient(#2a1018, #16080c); border-bottom-color: #3a1a28; }
.boss-tier-3 .boss-tier-head h2 { color: #ffc8e0; }
.boss-tier-3 .boss-tier-stats b { color: #ff7ab8; }
.boss-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 10px;
  padding: 12px;
}
.boss-card {
  border: 1px solid #2c2c36;
  background: #0c0c10;
  text-align: center;
  padding: 8px 6px 10px;
}
.boss-card:hover {
  border-color: #c41212;
  background: #140a0a;
}
.boss-art {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  image-rendering: pixelated;
}
.boss-art img {
  max-width: 64px;
  max-height: 64px;
  width: auto;
  height: auto;
}
.boss-art-missing {
  color: #555;
  font-size: 18pt;
}
.boss-name {
  margin: 0;
  color: #e8e8ee;
  font-size: 8.5pt;
  font-weight: normal;
  line-height: 1.25;
}
.boss-loot {
  border-top: 1px solid #2a2a32;
  padding: 12px;
  background: #0c0c10;
}
.boss-loot-title {
  margin: 0 0 6px;
  color: #ffd0d0;
  font-size: 10.5pt;
}
.boss-loot-coins {
  margin: 0 0 12px;
}
.loot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px;
}
.loot-card {
  border: 1px solid #2c2c36;
  background: #101014;
  padding: 8px;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 2px;
}
.loot-card:hover {
  border-color: #8a3030;
}
.loot-art {
  grid-row: 1 / span 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 2px;
  image-rendering: pixelated;
}
.loot-art img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  overflow: hidden;
}
.loot-name {
  margin: 0;
  color: #f0f0f6;
  font-size: 8.5pt;
  font-weight: bold;
  line-height: 1.2;
}
.loot-stats {
  margin: 0;
  color: #9a9aa4;
  font-size: 7.5pt;
  line-height: 1.3;
}

/* Items catalog */
.items-search {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 10px 0;
}
.items-search input[type="search"] {
  flex: 1 1 220px;
  min-width: 160px;
  background: #0a0a0e;
  border: 1px solid #3a3a46;
  color: #e8e8ee;
  padding: 4px 8px;
  font: 9pt/1.4 Verdana, Tahoma, Arial, sans-serif;
}
.items-cat-groups {
  margin: 8px 0 12px;
}
.items-cat-label {
  margin: 10px 0 4px;
  color: #8a8a94;
  font-size: 8pt;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.items-cat-groups .items-tabs {
  margin: 0 0 4px;
}
.items-loading {
  opacity: 0.55;
  pointer-events: none;
}
#items-live-hint {
  margin-left: 4px;
}
.items-cat-count {
  opacity: 0.7;
  font-size: 8pt;
  text-transform: none;
  letter-spacing: 0;
}
.items-result-meta { margin: 0 0 10px; }
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.items-card {
  border: 1px solid #2c2c36;
  background: #101014;
}
.items-card:hover { border-color: #8a3030; }
.items-card-link {
  display: block;
  padding: 8px;
  color: inherit;
  text-decoration: none;
}
.items-art {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  image-rendering: pixelated;
}
.items-art .item-sprite {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.item-detail-art .item-sprite {
  width: 64px;
  height: 64px;
}
.items-name {
  margin: 0;
  font-size: 9pt;
  color: #e8e8ee;
  font-weight: bold;
  line-height: 1.25;
}
.items-id { margin: 2px 0 4px; }
.items-desc {
  margin: 0 0 4px;
  color: #c8c8d0;
  font-size: 8pt;
  line-height: 1.35;
}
.items-specs {
  margin: 0;
  color: #9a9aa4;
  font-size: 7.5pt;
  line-height: 1.35;
}
.items-pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  gap: 10px;
}
.items-pager a { color: #ffd0d0; }
.item-detail-head {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 10px 0 16px;
  align-items: start;
}
.item-detail-name {
  margin: 0 0 4px;
  font-size: 14pt;
  color: #ffd0d0;
}
.item-detail-desc {
  margin: 8px 0 0;
  color: #c8c8d0;
}
.item-detail-section {
  margin: 16px 0 8px;
  color: #e8e8ee;
  font-size: 10.5pt;
  border-bottom: 1px solid #2c2c36;
  padding-bottom: 4px;
}
.item-spec-list {
  margin: 0;
  padding-left: 18px;
  color: #c8c8d0;
  font-size: 9pt;
  line-height: 1.5;
}
.item-attr-table td:first-child {
  width: 40%;
  color: #9a9aa4;
}
