:root {
  --bg: #090b10;
  --panel: #10151d;
  --panel-soft: #141b25;
  --ink: #edf2f8;
  --muted: #9eacbf;
  --accent: #9bf00b;
  --accent-2: #6ff3af;
  --line: #263244;
  --radius: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Sora', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 80% -10%, #1d2f49 10%, transparent 60%),
    radial-gradient(1000px 700px at -10% 110%, #1c2a3f 8%, transparent 60%),
    var(--bg);
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(72px);
}
.ambient-a {
  width: 320px;
  height: 320px;
  top: 10vh;
  right: 6vw;
  background: #4dff8e1f;
}
.ambient-b {
  width: 280px;
  height: 280px;
  left: 4vw;
  bottom: 8vh;
  background: #8dd6ff1f;
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid #ffffff1a;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  background: #0c1118cc;
  z-index: 50;
}

.site-header a { color: var(--ink); text-decoration: none; }
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: clamp(96px, 12vw, 150px);
  height: auto;
}

.site-ad-slot {
  width: min(1320px, calc(100% - 2rem));
  margin: .75rem auto 0;
}
.site-ad-slot-bottom {
  margin: 1rem auto .4rem;
}
.site-ad-leaderboard {
  width: 100%;
  max-width: 970px;
  min-height: 90px;
  margin: 0 auto;
  border: 1px solid #3c526f;
  border-radius: 12px;
  background: #121b29;
  color: #9cb2cb;
  display: grid;
  place-items: center;
  text-align: center;
  padding: .55rem;
  font-size: .78rem;
}
.site-ad-leaderboard.is-placeholder {
  background:
    repeating-linear-gradient(
      -45deg,
      #1a283a 0px,
      #1a283a 10px,
      #122033 10px,
      #122033 20px
    );
}

main { padding: clamp(1rem, 3vw, 2rem); max-width: 1320px; margin: 0 auto; }
.site-footer {
  width: min(1320px, calc(100% - 2rem));
  margin: 0 auto 1.2rem;
  padding: .75rem 0 1.2rem;
  border-top: 1px solid #223044;
  text-align: center;
}
.site-footer p {
  margin: .2rem 0;
}
.site-footer-copy {
  font-size: .82rem;
  color: #dbe7f8;
  font-weight: 600;
}
.site-footer-meta a {
  color: var(--accent);
  text-decoration: none;
  font-size: .8rem;
}
.site-footer-meta a:hover {
  text-decoration: underline;
}
.site-footer-disclaimer {
  color: var(--muted);
  font-size: .74rem;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1rem, 2.6vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(140deg, #101824, #121d2b);
}
.legal-page h1,
.legal-page h2,
.legal-page h3 {
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 1.1rem;
  margin-bottom: .45rem;
}
.legal-page h1 {
  margin-top: 0;
  font-size: 1.6rem;
}
.legal-page h2 {
  font-size: 1.08rem;
  color: #e4edf9;
}
.legal-page h3 {
  font-size: .96rem;
  color: #d5e3f4;
}
.legal-page p,
.legal-page li {
  color: #c3d0e2;
  line-height: 1.6;
  font-size: .9rem;
}
.legal-page ul {
  margin: .35rem 0 .85rem 1.1rem;
}
.legal-page a {
  color: var(--accent);
}

#browse-results {
  transition: opacity .12s ease;
}
#browse-results.is-loading {
  opacity: .62;
  pointer-events: none;
}

.hero {
  margin-bottom: 1.3rem;
  padding: clamp(1rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #111924, #151f2d);
}
.kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
}
.hero h1 { margin: 0.5rem 0; font-family: 'Space Grotesk', sans-serif; }
.lede { color: var(--muted); margin: 0; max-width: 65ch; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .8rem;
}
.hero-stats span {
  border: 1px solid #324358;
  border-radius: 999px;
  padding: .28rem .58rem;
  font-size: .74rem;
  color: #d4deea;
}
.hero-stats strong { color: #fff; }

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .85rem;
}
.quick-chip {
  text-decoration: none;
  color: #d2dbe8;
  border: 1px solid #38485f;
  border-radius: 999px;
  padding: .35rem .65rem;
  font-size: .74rem;
  background: #151d29;
}
.quick-chip.is-active {
  color: #10150a;
  border-color: #9bf00b;
  background: linear-gradient(135deg, #9bf00b, #7fd30c);
}
.membership-filters {
  margin-top: -.3rem;
  margin-bottom: 1rem;
}
.membership-chip {
  font-size: .72rem;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  align-items: end;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}
.filters label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
  min-width: 0;
}
select, input, button {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--ink);
  min-height: 44px;
  padding: 0 0.7rem;
  font: inherit;
}
button {
  margin-top: 0;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(130deg, #212d40, #1a2332);
  border-color: #3b4c63;
  color: #eaf2fb;
}
button:hover {
  border-color: #9bf00b;
  box-shadow: 0 0 0 1px #9bf00b22 inset;
}

.result-meta { color: var(--muted); margin: 0.45rem 0 1rem; }
.result-meta strong { color: var(--ink); }
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1rem;
}
.active-filters span {
  border: 1px solid #33455d;
  border-radius: 999px;
  padding: .26rem .5rem;
  font-size: .72rem;
  color: #d5e0ee;
}
.clear-link {
  border: 1px solid #4f5f78;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  padding: .26rem .6rem;
  font-size: .72rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.9rem;
}
.empty-results {
  border: 1px solid #33465f;
  border-radius: 14px;
  background: #111a27;
  padding: .95rem 1rem;
  margin-bottom: 1rem;
}
.empty-results h2 {
  margin: 0 0 .25rem;
  font-size: 1rem;
}
.empty-results p {
  margin: 0;
  color: #b7c7da;
  font-size: .85rem;
}

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #151f2c, #101722);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-2px); border-color: #5b7398; }
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.art {
  position: relative;
  background: #0f1620;
}
.art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.card-banner {
  position: absolute;
  top: .5rem;
  left: .5rem;
  z-index: 2;
  padding: .24rem .55rem;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.card-banner.is-coming {
  color: #10150a;
  background: #9bf00b;
  border-color: #c6ff6b;
}
.card-banner.is-leaving {
  color: #fff3f3;
  background: #b53131;
  border-color: #df6767;
}
.card-banner.is-recent {
  color: #071522;
  background: #6ff3af;
  border-color: #a4ffd3;
}
.art-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--muted);
}
.body { padding: .8rem; }
.body h3 { margin: 0; font-size: 1rem; }
.body p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
  height: 2.3rem;
  overflow: hidden;
  margin: .45rem 0 .65rem;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.chip {
  border: 1px solid #32455f;
  border-radius: 99px;
  padding: 0.25rem 0.5rem;
  font-size: 0.68rem;
  color: #d7e3f1;
  background: #131e2d;
}
.card-meta .stats { gap: .28rem; }
.chip-platform {
  border-color: #3b5f85;
  background: #132235;
}
.chip-score {
  border-color: #5a7840;
  background: #182615;
}
.chip-time {
  border-color: #6a4f7d;
  background: #24192f;
}
.chip-capability {
  border-color: #4d5d73;
  background: #1a212d;
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 1.25rem 0 .5rem;
}
.pager a, .btn {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: .45rem .7rem;
  border-radius: 10px;
  background: #172131;
}
.pager .pager-link {
  min-width: 2.2rem;
  text-align: center;
}
.pager .is-current {
  background: #8ddb15;
  border-color: #b1ff48;
  color: #10150a;
}
.pager .is-disabled {
  color: #7f90a7;
  border-color: #2a3649;
  background: #111924;
  pointer-events: none;
}

.detail-head {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  align-items: start;
}
.detail-art img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.detail-hero {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
.detail-art-stack {
  display: grid;
  gap: .55rem;
}
.detail-copy h1 { margin: .35rem 0 .6rem; }
.detail-description {
  color: #c8d3e1;
  line-height: 1.5;
  margin: 0 0 .8rem;
}
.detail-art-meta {
  border: 1px solid #2f4159;
  border-radius: 12px;
  background: #111a26;
  padding: .55rem;
}
.detail-status {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}
.status-pill {
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .24rem .52rem;
  border: 1px solid transparent;
}
.status-coming {
  color: #10150a;
  background: #9bf00b;
  border-color: #c6ff6b;
}
.status-leaving {
  color: #fff5f5;
  background: #b63131;
  border-color: #e16d6d;
}
.detail-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem;
}
.detail-mini-grid div {
  border: 1px solid #2d4059;
  border-radius: 10px;
  padding: .4rem .48rem;
  background: #0f1723;
}
.detail-mini-grid span {
  display: block;
  font-size: .64rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #9ab0ca;
}
.detail-mini-grid strong {
  display: block;
  margin-top: .14rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chips span,
.chips a {
  border: 1px solid #3c4f69;
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .75rem;
  color: #dce6f3;
  text-decoration: none;
  background: #141d2a;
}
.chips a:hover { border-color: #9bf00b; color: #f4ffd7; }
.detail-strips {
  display: grid;
  gap: .8rem;
}
.detail-strip {
  border-top: 1px solid #2a384d;
  padding-top: .75rem;
}
.detail-strip h2 {
  margin: 0 0 .45rem;
  font-size: 1.02rem;
}
.detail-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .45rem;
}
.detail-facts div {
  padding: .45rem .5rem;
  border: 1px solid #2f425b;
  border-radius: 10px;
  background: #111a27;
}
.detail-facts span {
  display: block;
  font-size: .68rem;
  color: #9cb0c9;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.detail-facts strong {
  display: block;
  margin-top: .2rem;
}
.detail-links {
  margin-top: .6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  align-items: center;
}
.detail-links span {
  color: #9fb0c5;
  font-size: .78rem;
}
.detail-links a {
  color: #c8ff6a;
  text-decoration: none;
}
.detail-links a:hover { text-decoration: underline; }
.metric-rail {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
}
.metric-pill {
  border: 1px solid #2f425b;
  border-radius: 11px;
  background: #121b29;
  padding: .42rem .55rem;
  min-width: 130px;
}
.metric-pill span {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #9fb0c7;
}
.metric-pill strong {
  display: block;
  margin-top: .15rem;
}
.metric-link {
  color: #b7ff4a;
  text-decoration: none;
  font-size: .78rem;
  border: 1px solid #3e5d2a;
  border-radius: 999px;
  padding: .35rem .62rem;
}
.metric-link:hover { text-decoration: underline; }

.detail-v2 {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1rem;
}
.detail-v2-rail {
  display: grid;
  gap: .65rem;
  align-content: start;
}
.detail-v2-art img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.rail-card {
  border: 1px solid #2c3b52;
  border-radius: 12px;
  background: linear-gradient(180deg, #121a26, #101722);
  padding: .6rem;
}
.rail-card h2 {
  margin: 0 0 .5rem;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #a5b6cb;
}
.rail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem;
}
.rail-grid div,
.rail-list div {
  border: 1px solid #2e425c;
  border-radius: 10px;
  background: #0f1722;
  padding: .4rem .48rem;
}
.rail-grid span,
.rail-list span {
  display: block;
  font-size: .64rem;
  color: #9cb0c7;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.rail-grid strong,
.rail-list strong {
  display: block;
  margin-top: .14rem;
}
.rail-list {
  display: grid;
  gap: .36rem;
}
.rail-links {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem .5rem;
  align-items: baseline;
}
.rail-links span {
  color: #9cb0c7;
  font-size: .73rem;
}
.rail-links a {
  color: #bdfd59;
  text-decoration: none;
}
.rail-links a:hover { text-decoration: underline; }

.detail-v2-main {
  display: grid;
  gap: .8rem;
}
.detail-v2-head {
  border-bottom: 1px solid #2a394f;
  padding-bottom: .7rem;
}
.detail-v2-head h1 {
  margin: .3rem 0 .55rem;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}
.detail-v2-section h2 {
  margin: 0 0 .45rem;
  font-size: 1.02rem;
}
.line-items {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.line-item {
  border: 1px solid #2f425b;
  border-radius: 11px;
  background: #121b29;
  padding: .42rem .55rem;
  min-width: 140px;
}
.line-item span {
  display: block;
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #9fb0c7;
}
.line-item strong {
  display: block;
  margin-top: .15rem;
}

.detail-v3 {
  display: grid;
  gap: 1rem;
}
.detail-v3-hero {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 1rem;
  align-items: start;
}
.detail-v3-art img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.detail-v3-copy h1 {
  margin: .35rem 0 .55rem;
  font-size: clamp(1.55rem, 2.9vw, 2.25rem);
}
.detail-v3-status {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin: 0 0 .65rem;
}
.meta-grid {
  margin: .7rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem .7rem;
}
.meta-grid dt {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #9cb0c7;
}
.meta-grid dd {
  margin: 0;
  font-weight: 600;
}
.meta-grid a {
  color: #bdfd59;
  text-decoration: none;
}
.meta-grid a:hover { text-decoration: underline; }
.taxonomy-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}
.taxonomy-group {
  border: 1px solid #2f4158;
  border-radius: 12px;
  background: #111a26;
  padding: .55rem;
}
.taxonomy-group h2 {
  margin: 0 0 .45rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #a5b7cc;
}
.taxonomy-group .chips { gap: .3rem; }
.taxonomy-group .chip { font-size: .67rem; }
.chip-genre {
  border-color: #545d74;
  background: #1b2230;
}
.metrics-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.metrics-block h2 { margin: 0 0 .5rem; }

.detail-v4 {
  display: grid;
  grid-template-columns: minmax(250px, 340px) 1fr;
  gap: 1rem;
}
.detail-v4-rail {
  display: grid;
  gap: .65rem;
  align-content: start;
}
.detail-v4-art img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.detail-v4-status {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.rail-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .36rem;
}
.rail-meta dt {
  font-size: .68rem;
  color: #9db0c6;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.rail-meta dd {
  margin: 0 0 .2rem;
  font-weight: 600;
}
.esrb-badge {
  width: 44px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  border: 1px solid #263548;
  background: #fff;
}
.rail-meta a {
  color: #bdfd59;
  text-decoration: none;
}
.rail-meta a:hover { text-decoration: underline; }

.detail-v4-main {
  display: grid;
  gap: .8rem;
}
.detail-v4-head {
  border-bottom: 1px solid #2a394f;
  padding-bottom: .7rem;
}
.detail-v4-head h1 {
  margin: .3rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}
.detail-v4-section h2 { margin: 0 0 .5rem; }
.title-taxonomy {
  margin-top: .7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.title-tax-block {
  border: 1px solid #2f4158;
  border-radius: 12px;
  padding: .55rem;
}
.title-tax-block h2 {
  margin: 0 0 .42rem;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.title-tax-platforms {
  background: #102033;
  border-color: #375276;
}
.title-tax-genres {
  background: #1a2130;
  border-color: #49516a;
}
.detail-v4-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}
.panel-grid section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .9rem;
  background: var(--panel);
}
.panel-grid h2 { margin-top: 0; font-size: 1rem; }
.row {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  border-top: 1px solid #2e3f57;
  padding-top: .45rem;
  margin-top: .45rem;
  color: var(--muted);
}
.row a {
  color: #b7ff4a;
  text-decoration: none;
}
.row a:hover { text-decoration: underline; }

.admin-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #121a25, #0e141e);
  padding: 1rem;
}
.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}
.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: .55rem 0 .9rem;
}
.admin-nav a {
  text-decoration: none;
  color: #cfdbeb;
  border: 1px solid #3a4b63;
  border-radius: 999px;
  padding: .28rem .6rem;
  font-size: .75rem;
  background: #121a26;
}
.admin-nav a.is-active {
  color: #0f1709;
  border-color: #a4ec3b;
  background: #9be13a;
}
.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .55rem;
  margin-bottom: .8rem;
}
.admin-metrics div {
  border: 1px solid #324559;
  border-radius: 12px;
  background: #101925;
  padding: .5rem .58rem;
}
.admin-metrics strong {
  display: block;
  font-size: 1.04rem;
}
.admin-metrics span {
  font-size: .73rem;
  color: #abc0d8;
}
.admin-form {
  display: grid;
  gap: .7rem;
  max-width: 540px;
}
.admin-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--ink);
  padding: .55rem .7rem;
  font: inherit;
  resize: vertical;
}
.admin-form input[type="text"],
.admin-form input[type="search"] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--ink);
  padding: .55rem .7rem;
  font: inherit;
}
.admin-form select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--ink);
  padding: .55rem .7rem;
  font: inherit;
}
.admin-error { color: #ff8e8e; }
.admin-note { color: var(--accent-2); }
.admin-checkgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .45rem;
  margin-top: .5rem;
}
.admin-check {
  display: flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .45rem .55rem;
  background: #101925;
  color: #cfdbeb;
}
.admin-check input {
  width: 18px;
  height: 18px;
}
.admin-table {
  display: grid;
  gap: .4rem;
}
.admin-row {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) 1fr 1fr auto;
  gap: .5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .55rem .65rem;
  background: #121a25;
}
.admin-row-head {
  font-weight: 700;
  background: #192434;
}

@media (max-width: 980px) {
  .detail-head { grid-template-columns: 1fr; }
  .detail-hero { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .detail-v2 { grid-template-columns: 1fr; }
  .detail-v3-hero { grid-template-columns: 1fr; }
  .taxonomy-wrap { grid-template-columns: 1fr; }
  .metrics-wrap { grid-template-columns: 1fr; }
  .meta-grid { grid-template-columns: 1fr; }
  .detail-v4 { grid-template-columns: 1fr; }
  .detail-v4-grid { grid-template-columns: 1fr; }
  .title-taxonomy { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .filters { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.45rem; }
  .site-ad-slot { width: calc(100% - 1rem); }
  .site-ad-leaderboard {
    min-height: 50px;
    border-radius: 10px;
  }
}
