:root {
  --ink: #17191c;
  --ink-soft: #4d535a;
  --paper: #f1f2f3;
  --surface: #ffffff;
  --line: #e1e4e7;
  --line-strong: #cfd3d7;
  --accent: #c43b32;
  --accent-dark: #9e2c27;
  --jade: #24735b;
  --gold: #c5963e;
  --deep: #101215;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; letter-spacing: 0; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin: 0 auto; }

.site-header { position: relative; z-index: 10; background: var(--deep); color: #fff; border-bottom: 1px solid #2b2f34; }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--accent); color: #fff; border-radius: 6px; font-family: SimSun, serif; font-size: 24px; font-weight: 700;
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.brand strong { font-size: 18px; }
.brand small { color: #90969c; font-size: 11px; margin-top: 4px; }
.main-nav { align-self: stretch; display: flex; align-items: stretch; gap: 28px; }
.main-nav a { position: relative; display: grid; place-items: center; color: #b4b8bc; font-weight: 700; }
.main-nav a.active, .main-nav a:hover { color: #fff; }
.main-nav a.active::after { content: ""; position: absolute; height: 3px; left: 0; right: 0; bottom: 0; background: var(--accent); }
.main-nav .box-nav-link { color: #6cc29f; }

.catalog-head { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); color: #fff; border-bottom: 4px solid var(--accent); }
.catalog-head::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,14,17,.94) 0%, rgba(12,14,17,.78) 48%, rgba(12,14,17,.58) 100%); }
.catalog-backdrop { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 32%; opacity: .9; filter: saturate(1.08) contrast(1.04); }
.catalog-head-inner { min-height: 208px; display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: 34px 0; }
.eyebrow { margin: 0 0 7px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 0; }
.catalog-title h1 { margin: 0; font-family: SimSun, STSong, serif; font-size: 38px; line-height: 1.25; }
.catalog-title > p:last-child { margin: 10px 0 0; color: #b8bdc2; }
.catalog-stats { display: grid; grid-template-columns: repeat(3, minmax(100px, 1fr)); min-width: 390px; margin: 0; border-left: 1px solid #3d4247; }
.catalog-stats div { padding: 5px 24px; border-right: 1px solid #3d4247; }
.catalog-stats dt { font-family: Georgia, serif; font-size: 24px; font-weight: 700; line-height: 1.2; white-space: nowrap; }
.catalog-stats dd { margin: 6px 0 0; color: #989fa6; font-size: 12px; }
.box-download-band { padding: 20px 0 0; background: var(--paper); color: #fff; }
.box-download-inner { min-height: 112px; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; border: 1px solid #30343a; border-radius: 6px; background: #191c20; }
.box-download-inner h2 { margin: 0; font-size: 21px; }
.box-download-inner p:last-child { margin: 3px 0 0; color: #aeb4ba; font-size: 13px; }
.box-download-button { flex: 0 0 auto; background: var(--jade); color: #fff; }
.box-download-button:hover { background: #195c48; }
.box-download-button span { font-size: 20px; }

.catalog-body { padding: 34px 0 72px; }
.search-bar { display: grid; grid-template-columns: 96px 1fr; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px 12px 22px; }
.search-bar > label { font-weight: 800; }
.search-control { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-control input { min-width: 0; height: 44px; border: 1px solid var(--line-strong); border-radius: 4px; padding: 0 14px; color: var(--ink); outline: none; }
.search-control input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,59,50,.12); }
.search-control button, .button { min-height: 44px; border: 0; border-radius: 4px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; cursor: pointer; }
.button, .search-control button { transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.search-control button, .button.primary, .download-button { background: var(--accent); color: #fff; }
.search-control button:hover, .button.primary:hover, .download-button:hover { background: var(--accent-dark); }
.button.secondary { background: #e9ebed; color: var(--ink); }
.popular-searches { margin: 12px 0 0; display: flex; align-items: center; flex-wrap: wrap; gap: 7px; color: #747a80; font-size: 11px; }
.popular-searches strong { margin-right: 4px; color: var(--ink); }
.popular-searches a { padding: 3px 9px; border: 1px solid #d5d9dc; border-radius: 3px; background: #fff; }
.popular-searches a:hover { border-color: var(--gold); color: #7a571b; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 24px 0 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line-strong); }
.category-tabs { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; }
.category-tabs a { min-height: 34px; padding: 5px 12px; border: 1px solid transparent; border-radius: 4px; color: var(--ink-soft); font-weight: 700; }
.category-tabs a:hover { border-color: var(--line-strong); }
.category-tabs a.active { background: var(--ink); color: #fff; }
.category-tabs small { margin-left: 6px; opacity: .62; }
.sort-control { display: flex; align-items: center; gap: 9px; flex: 0 0 auto; color: #666c72; font-size: 13px; }
.sort-control select { height: 36px; border: 1px solid var(--line-strong); border-radius: 4px; background: #fff; color: var(--ink); padding: 0 30px 0 10px; }
.result-line { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 0 0 15px; }
.result-line h2 { margin: 0; font-size: 18px; }
.result-line > span { color: #747a80; font-size: 13px; }

.game-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.game-card { min-width: 0; overflow: hidden; background: var(--surface); border: 1px solid #d9dde0; border-radius: 6px; box-shadow: 0 4px 14px rgba(23,25,28,.06); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.game-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(23,25,28,.14); }
.game-card-main { display: block; min-height: 0; padding: 0; }
.card-scene-wrap { position: relative; display: block; height: 132px; overflow: hidden; background: #171a1e; }
.card-scene-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,12,.06) 35%, rgba(8,10,12,.74) 100%); }
.card-scene { width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease, filter .32s ease; }
.game-card:hover .card-scene { transform: scale(1.045); filter: saturate(1.08); }
.game-card-content { position: relative; min-height: 130px; padding: 13px 14px 15px; display: grid; grid-template-columns: 66px minmax(0, 1fr); gap: 11px; align-items: start; }
.cover-wrap { position: relative; z-index: 2; width: 66px; height: 66px; margin-top: -35px; border-radius: 6px; overflow: hidden; background: #e7e9eb; border: 2px solid #fff; box-shadow: 0 5px 15px rgba(0,0,0,.22); align-self: start; }
.cover-wrap img, .cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.cover-fallback { display: grid; place-items: center; background: var(--ink); color: #fff; font-family: SimSun, serif; font-size: 34px; font-weight: 800; }
.game-card-copy { min-width: 0; display: flex; flex-direction: column; }
.game-card-topline { position: absolute; z-index: 2; left: 10px; right: 10px; top: 9px; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #fff; font-size: 10px; font-weight: 800; }
.game-card-topline > span { padding: 2px 7px; border-radius: 3px; background: var(--accent); }
.game-card-topline time { color: #e0e3e6; font-weight: 500; white-space: nowrap; text-shadow: 0 1px 4px #000; }
.game-title { display: -webkit-box; min-height: 43px; margin: 0 0 2px; overflow: hidden; font-size: 15px; line-height: 1.45; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.game-meta { display: flex; gap: 7px; min-height: 22px; color: var(--jade); font-size: 11px; font-weight: 700; }
.game-meta span + span::before { content: "·"; margin-right: 7px; color: #aab0b5; }
.game-summary { display: -webkit-box; min-height: 36px; margin-top: 2px; overflow: hidden; color: #72787e; font-size: 11px; line-height: 1.6; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.game-card-actions { height: 42px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #edf0f2; color: #8a9096; font-size: 11px; }
.game-card-actions a { color: var(--ink); font-size: 12px; font-weight: 800; }
.game-card-actions a span { color: var(--accent); font-size: 18px; vertical-align: -1px; }

.empty-state { min-height: 320px; padding: 50px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border: 1px dashed #c6cbd0; background: #fafbfb; }
.empty-mark { width: 64px; height: 64px; display: grid; place-items: center; border: 2px solid var(--line-strong); color: #83898f; font-family: SimSun, serif; font-size: 30px; }
.empty-state h2 { margin: 18px 0 5px; font-size: 20px; }
.empty-state p { margin: 0 0 18px; color: #747a80; }
.pagination { margin-top: 30px; display: flex; justify-content: center; gap: 6px; }
.pagination a { width: 38px; height: 38px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 4px; }
.pagination a.active { border-color: var(--ink); background: var(--ink); color: #fff; }

.detail-crumb-band { background: #eef0f2; border-bottom: 1px solid var(--line); }
.breadcrumbs { min-height: 48px; display: flex; align-items: center; gap: 9px; color: #737980; font-size: 12px; overflow: hidden; }
.breadcrumbs strong { color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-hero { padding: 20px 0 0; background: var(--paper); }
.game-hero-stage { position: relative; overflow: hidden; isolation: isolate; border-bottom: 4px solid var(--accent); border-radius: 6px 6px 0 0; background: #16191d; color: #fff; }
.game-hero-stage::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(13,15,18,.97) 0%, rgba(13,15,18,.88) 48%, rgba(13,15,18,.77) 100%); }
.game-hero-backdrop { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; opacity: .66; filter: saturate(.82) contrast(1.08); }
.game-hero-inner { min-height: 310px; padding: 42px 28px; display: grid; grid-template-columns: 174px minmax(0, 1fr) 300px; gap: 34px; align-items: center; }
.detail-cover { width: 174px; height: 174px; border-radius: 8px; overflow: hidden; background: #25292e; border: 1px solid rgba(255,255,255,.28); box-shadow: 0 18px 42px rgba(0,0,0,.42); }
.detail-cover img, .detail-cover .cover-fallback { width: 100%; height: 100%; object-fit: cover; }
.game-heading { min-width: 0; }
.game-heading h1 { margin: 0; overflow-wrap: anywhere; font-family: SimSun, STSong, serif; font-size: 36px; line-height: 1.28; text-shadow: 0 2px 18px rgba(0,0,0,.48); }
.game-lead { max-width: 610px; margin: 12px 0 17px; color: #c7ccd1; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.detail-tags span, .detail-tags a { padding: 3px 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 3px; background: rgba(0,0,0,.25); color: #e0e3e6; font-size: 11px; }
.detail-tags a:hover { border-color: var(--gold); color: #fff; }
.download-panel { padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 6px; background: rgba(10,12,14,.62); box-shadow: 0 16px 34px rgba(0,0,0,.18); backdrop-filter: blur(4px); }
.game-facts { margin: 0 0 17px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 18px; }
.game-facts div { min-width: 0; }
.game-facts dt { color: #92999f; font-size: 10px; }
.game-facts dd { margin: 1px 0 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; font-weight: 800; }
.download-button { width: 100%; min-height: 50px; font-size: 16px; }
.download-button span { font-size: 22px; }
.platform-downloads { display: grid; gap: 8px; }
.platform-downloads.dual { grid-template-columns: 1fr 1fr; }
.platform-downloads.dual .download-button { padding: 0 10px; font-size: 13px; }
.download-platform-icon { width: 18px; height: 18px; flex: 0 0 auto; filter: brightness(0) invert(1); }
.ios-button { background: #b88932; }
.ios-button:hover { background: #996f26; }
.download-panel > p { margin: 8px 0 0; color: #92999f; text-align: center; font-size: 10px; }
.detail-subnav { position: sticky; top: 0; z-index: 9; background: var(--paper); }
.detail-subnav .shell { min-height: 54px; padding: 0 28px; display: flex; align-items: stretch; gap: 28px; overflow-x: auto; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 4px 16px rgba(23,25,28,.06); scrollbar-width: none; }
.detail-subnav .shell::-webkit-scrollbar { display: none; }
.detail-subnav a { position: relative; flex: 0 0 auto; display: grid; place-items: center; color: #62686e; font-size: 13px; font-weight: 800; }
.detail-subnav a:hover { color: var(--accent); }
.detail-subnav a:not(.detail-subnav-download)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .18s ease; }
.detail-subnav a:hover::after { transform: scaleX(1); }
.detail-subnav .detail-subnav-download { margin-left: auto; padding: 0 22px; background: var(--accent); color: #fff; }
.detail-subnav .detail-subnav-download:hover { background: var(--accent-dark); color: #fff; }
#screenshots, #profile, #live-data, #faq { scroll-margin-top: 62px; }
.detail-content { padding: 48px 0 58px; display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 58px; align-items: start; }
.section-heading { margin-bottom: 22px; }
.section-heading h2 { margin: 0; font-family: SimSun, STSong, serif; font-size: 25px; }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; }
.section-heading.split > a { color: var(--accent); font-size: 13px; font-weight: 800; }
.game-overview { min-width: 0; }
.highlight-list { margin: 24px 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.highlight-list > div { min-height: 82px; padding: 13px 15px; display: flex; flex-direction: column; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 4px; background: #fff; }
.highlight-list strong { margin-bottom: 3px; font-size: 12px; }
.highlight-list span { color: #686e74; font-size: 12px; line-height: 1.7; }
.audience-note { margin: 30px 0 0; padding: 18px 20px; background: #eaf2ef; border-left: 3px solid var(--jade); }
.audience-note > strong { color: var(--jade); font-size: 12px; }
.audience-note p { margin: 5px 0 0; color: #46534e; font-size: 13px; line-height: 1.85; }
.source-profile h3 { margin: 28px 0 12px; padding-left: 11px; border-left: 3px solid var(--accent); font-size: 16px; }
.source-profile p { margin: 0 0 15px; color: #565d63; font-size: 14px; line-height: 1.95; }
.detail-sidebar { min-width: 0; }
.source-note { border-top: 3px solid var(--ink); padding-top: 15px; }
.source-note h2 { margin: 0 0 12px; font-size: 16px; }
.source-note dl { margin: 0; }
.source-note dl div { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
.source-note dt { color: #888e94; font-size: 12px; }
.source-note dd { margin: 0; font-size: 12px; font-weight: 700; text-align: right; }
.source-note dd a:hover { color: var(--accent); }
.game-topic-links { margin-top: 30px; padding-top: 16px; border-top: 3px solid var(--gold); }
.game-topic-links h2 { margin: 0 0 10px; font-size: 18px; }
.game-topic-links > div { display: grid; gap: 5px; }
.game-topic-links a { min-height: 36px; padding: 0 9px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-radius: 3px; background: #fff; color: #5d6369; font-size: 11px; font-weight: 700; }
.game-topic-links a span { color: var(--accent); font-size: 17px; }
.game-topic-links a:hover { border-color: var(--gold); color: var(--accent); }
.box-download-panel { margin-top: 34px; padding-top: 17px; border-top: 3px solid var(--jade); }
.box-download-panel h2 { margin: 0; font-size: 18px; }
.box-download-panel > p:not(.eyebrow) { margin: 6px 0 14px; color: #70777d; font-size: 12px; }
.box-download-panel .button { width: 100%; }
.screenshots-section { padding: 44px 0 50px; background: #f6f7f8; color: var(--ink); border-bottom: 1px solid var(--line); }
.screenshot-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.screenshot-heading > span { color: #747a80; font-size: 12px; }
.game-data-section { padding: 48px 0 58px; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.game-data-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.data-panel { min-width: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fafbfb; }
.game-data-grid > .data-panel:nth-child(1) { border-top: 3px solid var(--accent); }
.game-data-grid > .data-panel:nth-child(2) { border-top: 3px solid var(--gold); }
.game-data-grid > .data-panel:nth-child(3) { border-top: 3px solid var(--jade); }
.data-panel-title { min-height: 50px; padding: 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); background: #f1f3f4; }
.data-panel-title h3 { margin: 0; font-size: 15px; }
.data-panel-title span { color: #858b91; font-size: 11px; }
.activity-list details { border-bottom: 1px solid var(--line); background: #fff; }
.activity-list details:last-child { border-bottom: 0; }
.activity-list summary { min-height: 50px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; list-style-position: inside; }
.activity-list summary strong { min-width: 0; font-size: 13px; }
.activity-list summary time { color: #959ba1; font-size: 10px; white-space: nowrap; }
.activity-content { max-height: 330px; padding: 14px 16px 18px; overflow-y: auto; border-top: 1px solid #edf0f2; color: #555b61; font-size: 12px; line-height: 1.85; }
.server-list, .gift-list { padding: 5px 14px; }
.server-list > div, .gift-list > div { min-height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line); }
.server-list > div:last-child, .gift-list > div:last-child { border-bottom: 0; }
.server-list strong, .gift-list strong { font-size: 12px; }
.server-list time { color: #777d83; font-size: 10px; white-space: nowrap; }
.gift-list > div > span { min-width: 0; display: flex; flex-direction: column; }
.gift-list small { overflow: hidden; color: #8a9096; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.gift-list code { padding: 3px 6px; border: 1px solid #e5b6b2; border-radius: 3px; background: #fff5f4; color: var(--accent-dark); font-size: 11px; }
.faq-section { padding: 48px 0 58px; background: #eef0f2; border-bottom: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 58px; align-items: start; }
.faq-layout .section-heading > p:last-child { margin: 10px 0 0; color: #767d83; font-size: 12px; }
.faq-list { border-top: 3px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line-strong); background: #f8f9f9; }
.faq-list summary { min-height: 51px; padding: 12px 14px; cursor: pointer; font-size: 13px; font-weight: 800; }
.faq-list p { margin: 0; padding: 0 14px 16px; color: #60666c; font-size: 12px; line-height: 1.8; }
.screenshot-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 148px; gap: 10px; }
.gallery-item { position: relative; min-width: 0; height: 100%; padding: 0; overflow: hidden; border: 1px solid #d1d5d8; border-radius: 5px; background: #e3e6e8; color: #fff; box-shadow: 0 5px 16px rgba(23,25,28,.08); cursor: zoom-in; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }
.gallery-item-hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease, filter .28s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: brightness(1.08); }
.gallery-index { position: absolute; right: 8px; bottom: 8px; min-width: 28px; height: 24px; padding: 0 6px; display: grid; place-items: center; border-radius: 3px; background: rgba(10,12,14,.78); color: #fff; font: 700 10px/1 Georgia, serif; }
.gallery-more { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(12,14,17,.66); color: #fff; font-size: 22px; font-weight: 800; }
.gallery-dialog { width: min(1180px, calc(100vw - 48px)); height: min(850px, calc(100vh - 48px)); max-width: none; max-height: none; padding: 0; overflow: hidden; border: 1px solid #d8dcdf; border-radius: 6px; background: #fff; color: var(--ink); }
.gallery-dialog::backdrop { background: rgba(4,5,6,.91); }
.gallery-dialog figure { width: 100%; height: 100%; margin: 0; padding: 28px 68px 42px; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 10px; }
.gallery-dialog figure img { width: 100%; height: 100%; min-height: 0; object-fit: contain; background: #eef0f2; }
.gallery-dialog figcaption { color: #6e747a; text-align: center; font-size: 12px; }
.gallery-close, .gallery-arrow { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid #cfd3d7; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 4px 14px rgba(23,25,28,.12); cursor: pointer; }
.gallery-close { top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 4px; font-size: 24px; }
.gallery-arrow { top: 50%; width: 44px; height: 64px; margin-top: -32px; border-radius: 4px; font-size: 34px; }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-close:hover, .gallery-arrow:hover { background: var(--accent); border-color: var(--accent); }
.discovery-band { padding: 48px 0 54px; background: #e7e9eb; border-top: 1px solid var(--line-strong); }
.discovery-grid { display: grid; grid-template-columns: 250px repeat(2, minmax(0, 1fr)); gap: 32px; align-items: start; }
.discovery-grid h2 { margin: 0; font-family: SimSun, STSong, serif; font-size: 26px; line-height: 1.35; }
.discovery-grid article { min-height: 150px; padding-left: 20px; border-left: 3px solid var(--gold); }
.discovery-grid article:last-child { border-left-color: var(--jade); }
.discovery-grid h3 { margin: 0 0 8px; font-size: 16px; }
.discovery-grid p { margin: 0; color: #5d6369; font-size: 13px; line-height: 1.9; }
.topics-hero, .topic-detail-hero { position: relative; overflow: hidden; isolation: isolate; background: #171a1e; color: #fff; border-bottom: 4px solid var(--accent); }
.topics-hero::after, .topic-detail-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,14,17,.95) 0%, rgba(12,14,17,.76) 55%, rgba(12,14,17,.58) 100%); }
.topics-hero-backdrop { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; opacity: .9; filter: saturate(1.08); }
.topics-hero-inner { min-height: 245px; padding: 48px 0; display: flex; flex-direction: column; justify-content: center; }
.topics-hero h1, .topic-detail-hero h1 { margin: 0; font-family: SimSun, STSong, serif; font-size: 39px; line-height: 1.3; }
.topics-hero-inner > p:last-child, .topic-detail-hero-inner > div > p:last-child { max-width: 710px; margin: 12px 0 0; color: #c4c9ce; }
.topics-index { padding: 48px 0 72px; }
.topic-total { color: #747a80; font-size: 12px; }
.topic-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.topic-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 5px 16px rgba(23,25,28,.06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.topic-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 14px 30px rgba(23,25,28,.12); }
.topic-card-media { position: relative; height: 164px; display: block; overflow: hidden; background: #23272b; }
.topic-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,12,.02) 30%, rgba(8,10,12,.78) 100%); }
.topic-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.topic-card:hover .topic-card-media img { transform: scale(1.04); }
.topic-card-media > span { position: absolute; z-index: 2; right: 13px; bottom: 10px; color: #fff; font-size: 11px; }
.topic-card-media strong { margin-right: 2px; font: 700 22px/1 Georgia, serif; }
.topic-card-body { min-height: 235px; padding: 18px 19px 16px; display: flex; flex-direction: column; }
.topic-card h2 { margin: 0; font-size: 20px; }
.topic-card h2 a:hover { color: var(--accent); }
.topic-card p { display: -webkit-box; min-height: 66px; margin: 8px 0 13px; overflow: hidden; color: #62686e; font-size: 13px; line-height: 1.75; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.topic-tags span { padding: 3px 8px; border: 1px solid #d9dde0; border-radius: 3px; background: #f7f8f8; color: #666c72; font-size: 10px; }
.topic-enter { margin-top: auto; padding-top: 13px; border-top: 1px solid #edf0f2; color: var(--ink); font-size: 12px; font-weight: 800; }
.topic-enter span { color: var(--accent); font-size: 18px; vertical-align: -1px; }
.topic-detail-hero-inner { min-height: 275px; padding: 48px 0; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.topic-detail-hero-inner > div { min-width: 0; }
.topic-detail-hero dl { min-width: 300px; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid rgba(255,255,255,.2); }
.topic-detail-hero dl div { padding: 8px 24px; border-right: 1px solid rgba(255,255,255,.2); }
.topic-detail-hero dt { font: 700 28px/1.2 Georgia, serif; }
.topic-detail-hero dd { margin: 6px 0 0; color: #aeb4ba; font-size: 11px; }
.topic-guide { padding: 46px 0 50px; display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 70px; align-items: start; }
.topic-guide h2 { margin: 0 0 14px; font-family: SimSun, STSong, serif; font-size: 27px; }
.topic-guide-copy > p:not(.eyebrow) { margin: 0 0 12px; color: #565d63; font-size: 14px; line-height: 1.95; }
.topic-guide aside { padding: 18px 0 0 20px; border-top: 3px solid var(--jade); border-left: 1px solid var(--line); }
.topic-guide aside > strong { display: block; margin-bottom: 12px; font-size: 16px; }
.topic-guide aside > p { margin: 15px 0 0; color: #777d83; font-size: 11px; line-height: 1.75; }
.topic-ranking-link { margin-top: 15px; min-height: 38px; padding: 0 10px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line-strong); border-radius: 3px; background: #fff; font-size: 11px; font-weight: 800; }
.topic-ranking-link span { color: var(--accent); font-size: 18px; }
.topic-ranking-link:hover { border-color: var(--accent); color: var(--accent); }
.topic-games-section { padding: 44px 0 58px; background: #e9ebed; border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.related-topics { padding: 48px 0 64px; }
.related-topic-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.related-topic-links a { min-height: 46px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 4px; background: #fff; font-size: 12px; font-weight: 800; }
.related-topic-links a::after { content: "›"; color: var(--accent); font-size: 18px; }
.related-topic-links a:hover { border-color: var(--accent); color: var(--accent); }
.ranking-hero { padding: 20px 0 0; background: var(--paper); }
.ranking-hero-stage { position: relative; min-height: 245px; padding: 46px 28px; display: flex; align-items: center; overflow: hidden; isolation: isolate; border-bottom: 4px solid var(--accent); border-radius: 6px 6px 0 0; background: #171a1e; color: #fff; }
.ranking-hero-stage::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,14,17,.95) 0%, rgba(12,14,17,.75) 58%, rgba(12,14,17,.55) 100%); }
.ranking-hero-backdrop { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 34%; opacity: .88; }
.ranking-hero-copy h1 { margin: 0; font-family: SimSun, STSong, serif; font-size: 39px; line-height: 1.3; }
.ranking-hero-copy > p:last-child { max-width: 670px; margin: 11px 0 0; color: #c3c8cd; }
.ranking-tabs { background: #fff; border-bottom: 1px solid var(--line); }
.ranking-tabs .shell { min-height: 58px; display: flex; align-items: stretch; gap: 30px; overflow-x: auto; scrollbar-width: none; }
.ranking-tabs .shell::-webkit-scrollbar { display: none; }
.ranking-tabs a { position: relative; flex: 0 0 auto; display: grid; place-items: center; color: #666c72; font-size: 13px; font-weight: 800; }
.ranking-tabs a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--accent); transform: scaleX(0); }
.ranking-tabs a.active { color: var(--ink); }
.ranking-tabs a.active::after { transform: scaleX(1); }
.ranking-body { padding: 46px 0 66px; }
.ranking-podium { display: grid; grid-template-columns: 1.35fr repeat(2, minmax(0, 1fr)); gap: 15px; }
.ranking-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 6px 18px rgba(23,25,28,.07); }
.ranking-card.rank-1 { border-color: #c9a14d; }
.ranking-card-media { position: relative; height: 180px; display: block; overflow: hidden; background: #22262a; }
.ranking-card.rank-1 .ranking-card-media { height: 210px; }
.ranking-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,12,0) 35%, rgba(8,10,12,.65) 100%); }
.ranking-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ranking-card:hover .ranking-card-media img { transform: scale(1.04); }
.ranking-card-media > strong { position: absolute; z-index: 2; left: 13px; bottom: 9px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 4px; background: var(--accent); color: #fff; font: 700 24px/1 Georgia, serif; }
.rank-1 .ranking-card-media > strong { background: #b88932; }
.ranking-card > div { min-height: 90px; padding: 13px 15px; display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 11px; align-items: center; }
.ranking-cover { width: 56px; height: 56px; overflow: hidden; border: 1px solid var(--line); border-radius: 5px; }
.ranking-cover img { width: 100%; height: 100%; object-fit: cover; }
.ranking-card > div > span { min-width: 0; display: flex; flex-direction: column; }
.ranking-card b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 15px; }
.ranking-card small { margin-top: 5px; color: #858b91; font-size: 10px; }
.ranking-list-heading { margin-top: 44px; }
.ranking-list { overflow: hidden; border-top: 3px solid var(--ink); background: #fff; }
.ranking-row { min-height: 82px; padding: 10px 15px; display: grid; grid-template-columns: 48px 58px minmax(0, 1fr) 210px 140px 22px; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); transition: background-color .16s ease; }
.ranking-row:hover { background: #f8f9f9; }
.ranking-position { color: #9a7a38; font: 700 19px/1 Georgia, serif; text-align: center; }
.ranking-row-cover { width: 58px; height: 58px; overflow: hidden; border-radius: 5px; background: #e7e9eb; }
.ranking-row-cover img { width: 100%; height: 100%; object-fit: cover; }
.ranking-row-copy { min-width: 0; display: flex; flex-direction: column; }
.ranking-row-copy b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.ranking-row-copy small { margin-top: 4px; overflow: hidden; color: #83898f; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.ranking-row-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.ranking-row-tags i { padding: 2px 7px; border: 1px solid #d9dde0; border-radius: 3px; color: #71777d; font-size: 10px; font-style: normal; }
.ranking-row-metric { display: flex; flex-direction: column; text-align: right; }
.ranking-row-metric small { color: #959ba1; font-size: 9px; }
.ranking-row-metric b { margin-top: 3px; font-size: 12px; }
.ranking-arrow { color: var(--accent); font-size: 22px; }
.ranking-topics { padding: 48px 0 60px; border-top: 1px solid var(--line); background: #fff; }
.box-page-hero { padding: 20px 0 0; background: var(--paper); }
.box-page-hero-stage { position: relative; min-height: 330px; padding: 44px 28px; display: grid; grid-template-columns: 112px minmax(0, 1fr) 280px; gap: 30px; align-items: center; overflow: hidden; isolation: isolate; border-bottom: 4px solid var(--jade); border-radius: 6px 6px 0 0; background: #171a1e; color: #fff; }
.box-page-hero-stage::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(12,14,17,.96) 0%, rgba(12,14,17,.84) 54%, rgba(12,14,17,.7) 100%); }
.box-page-backdrop { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; opacity: .82; filter: saturate(.92); }
.box-page-app-icon { width: 112px; height: 112px; overflow: hidden; border: 2px solid rgba(255,255,255,.34); border-radius: 8px; box-shadow: 0 16px 34px rgba(0,0,0,.38); }
.box-page-app-icon img { width: 100%; height: 100%; object-fit: cover; }
.box-page-hero-copy { min-width: 0; }
.box-page-hero-copy h1 { margin: 0; font-family: SimSun, STSong, serif; font-size: 40px; line-height: 1.3; }
.box-page-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 9px 0 15px; color: #c6cbd0; }
.box-page-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.box-page-badges span { padding: 3px 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 3px; background: rgba(0,0,0,.24); color: #d8dcdf; font-size: 10px; }
.box-page-download-panel { padding: 21px; border: 1px solid rgba(255,255,255,.14); border-top: 3px solid var(--gold); border-radius: 5px; background: rgba(10,12,14,.72); }
.box-page-download-panel small { display: block; color: #aeb4ba; font-size: 10px; }
.box-page-download-panel strong { display: block; margin: 3px 0 14px; font-size: 18px; }
.box-page-download-panel p { margin: 8px 0 0; color: #8f969c; text-align: center; font-size: 9px; }
.box-page-download { width: 100%; min-width: 150px; background: var(--jade); color: #fff; }
.box-page-download:hover { background: #195c48; }
.box-trust-band { background: var(--paper); }
.box-trust-strip { min-height: 86px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-top: 0; background: #fff; }
.box-trust-strip > div { padding: 16px 22px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.box-trust-strip > div:last-child { border-right: 0; }
.box-trust-strip strong { color: var(--accent); font: 700 21px/1.2 Georgia, "Microsoft YaHei", sans-serif; }
.box-trust-strip span { margin-top: 5px; color: #7c8288; font-size: 10px; }
.box-page-content { padding: 48px 0 56px; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; align-items: start; }
.box-page-content h2 { margin: 0 0 14px; font-family: SimSun, STSong, serif; font-size: 27px; }
.box-page-copy > p:not(.eyebrow) { margin: 0 0 13px; color: #565d63; font-size: 14px; line-height: 1.95; }
.box-page-content aside { padding: 18px 20px 20px; border-top: 3px solid var(--jade); background: #fff; }
.box-page-content aside > strong { font-size: 17px; }
.box-page-content ul { margin: 12px 0 18px; padding-left: 18px; color: #656b71; font-size: 12px; line-height: 2; }
.box-page-content aside .button { width: 100%; }
.box-feature-band { padding: 42px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.box-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.box-feature-grid article { min-height: 190px; padding: 8px 28px 8px 0; border-right: 1px solid var(--line); }
.box-feature-grid article + article { padding-left: 28px; }
.box-feature-grid article:last-child { border-right: 0; }
.box-feature-grid article > span { color: var(--gold); font: 700 20px/1 Georgia, serif; }
.box-feature-grid h2 { margin: 12px 0 7px; font-size: 18px; }
.box-feature-grid p { min-height: 62px; margin: 0 0 14px; color: #686e74; font-size: 12px; line-height: 1.75; }
.box-feature-grid a { color: var(--ink); font-size: 11px; font-weight: 800; }
.box-feature-grid a b { color: var(--accent); font-size: 17px; }
.box-feature-grid a:hover { color: var(--accent); }
.box-games-section { padding: 48px 0 60px; }
.box-game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.box-audience-band { padding: 38px 0 42px; border-top: 1px solid #cad9d3; border-bottom: 1px solid #cad9d3; background: #e8f0ed; }
.box-audience-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 58px; align-items: start; }
.box-audience-layout h2 { margin: 0; font-family: SimSun, STSong, serif; font-size: 25px; }
.box-audience-layout > p { margin: 0; color: #46534e; font-size: 13px; line-height: 1.95; }
.box-faq-section { padding: 48px 0 58px; }
.box-faq-section .faq-list { max-width: 900px; }
.related-section { padding: 50px 0 70px; }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.not-found { min-height: 570px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.error-code { margin: 0; color: var(--accent); font-family: Georgia, serif; font-size: 70px; font-weight: 800; line-height: 1; }
.not-found h1 { margin: 16px 0 5px; }
.not-found > p:not(.error-code) { margin: 0 0 22px; color: #71777d; }

.site-footer { background: #111315; color: #858b91; border-top: 1px solid #25282b; }
.footer-inner { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 11px; }
.footer-inner p { margin: 0; }
.footer-inner strong { color: #dadddf; }
.footer-box-link { margin-left: 8px; color: #dadddf; text-decoration: underline; text-underline-offset: 3px; }

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

@media (max-width: 980px) {
  .catalog-head-inner { align-items: flex-start; flex-direction: column; gap: 26px; }
  .catalog-stats { width: 100%; min-width: 0; }
  .game-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-hero-inner { grid-template-columns: 150px minmax(0, 1fr); }
  .game-data-grid { grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 1fr)); gap: 12px; }
  .discovery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discovery-grid > div { grid-column: 1 / -1; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-guide { gap: 40px; }
  .related-topic-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ranking-row { grid-template-columns: 42px 54px minmax(0, 1fr) 120px 22px; }
  .ranking-row-tags { display: none; }
  .faq-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 34px; }
  .detail-cover { width: 150px; height: 150px; }
  .download-panel { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 240px; gap: 20px; }
  .download-panel > p { display: none; }
}

@media (max-width: 760px) {
  .game-data-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 66px; }
  .brand small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .main-nav { gap: 14px; font-size: 12px; }
  .main-nav .box-nav-link { display: none; }
  .catalog-head-inner { min-height: 0; padding: 28px 0 24px; }
  .catalog-title h1 { font-size: 30px; }
  .catalog-title > p:last-child { font-size: 13px; }
  .catalog-stats div { padding: 3px 12px; }
  .catalog-stats div:first-child { padding-left: 0; }
  .catalog-stats dt { font-size: 18px; }
  .catalog-stats dd { font-size: 10px; }
  .box-download-band { padding-top: 14px; }
  .box-download-inner { min-height: 0; padding: 18px; align-items: flex-start; gap: 18px; }
  .box-download-inner h2 { font-size: 18px; }
  .box-download-inner p:last-child { display: none; }
  .box-download-inner .button { min-height: 40px; padding: 0 13px; font-size: 12px; }
  .catalog-body { padding: 20px 0 50px; }
  .search-bar { display: block; padding: 12px; }
  .search-bar > label { display: none; }
  .search-control { grid-template-columns: minmax(0, 1fr) auto; }
  .search-control button { width: 48px; padding: 0; font-size: 0; }
  .search-control button span { font-size: 21px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; margin-top: 18px; }
  .category-tabs { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .category-tabs a { flex: 0 0 auto; }
  .sort-control { align-self: flex-end; }
  .game-grid, .related-grid { grid-template-columns: 1fr; }
  .card-scene-wrap { height: 170px; }
  .game-card-content { min-height: 122px; grid-template-columns: 72px minmax(0, 1fr); }
  .cover-wrap { width: 72px; height: 72px; }
  .game-title { min-height: 0; font-size: 17px; }
  .game-card-actions { padding: 0 15px; }
  .breadcrumbs { min-height: 42px; }
  .game-hero { padding-top: 14px; }
  .game-hero-inner { padding: 28px 16px; grid-template-columns: 94px minmax(0, 1fr); gap: 18px; align-items: start; }
  .detail-cover { width: 94px; height: 94px; }
  .game-heading h1 { font-size: 24px; }
  .game-lead { margin: 7px 0 11px; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: 12px; }
  .detail-tags { gap: 4px; }
  .download-panel { padding: 16px; display: block; }
  .detail-subnav .shell { min-height: 48px; padding: 0 16px; gap: 20px; }
  .detail-subnav .detail-subnav-download { margin-left: 0; padding: 0 16px; }
  .platform-downloads.dual { grid-template-columns: 1fr 1fr; }
  .game-facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 5px; }
  .game-facts dd { font-size: 10px; }
  .detail-content { padding: 36px 0 42px; grid-template-columns: 1fr; gap: 35px; }
  .game-data-section { padding: 36px 0 42px; }
  .game-data-grid { grid-template-columns: 1fr; }
  .source-profile p { font-size: 14px; }
  .faq-section { padding: 38px 0 44px; }
  .faq-layout { grid-template-columns: 1fr; gap: 20px; }
  .screenshots-section { padding: 36px 0; }
  .screenshot-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 116px; gap: 7px; }
  .gallery-item.featured { grid-column: span 2; grid-row: span 2; }
  .gallery-dialog { width: 100vw; height: 100vh; border: 0; border-radius: 0; }
  .gallery-dialog figure { padding: 54px 12px 50px; }
  .gallery-arrow { top: auto; bottom: 8px; width: 44px; height: 38px; margin: 0; font-size: 26px; }
  .gallery-prev { left: 12px; }
  .gallery-next { right: 12px; }
  .gallery-close { top: 8px; right: 8px; }
  .discovery-band { padding: 38px 0 42px; }
  .discovery-grid { grid-template-columns: 1fr; gap: 24px; }
  .discovery-grid > div { grid-column: auto; }
  .discovery-grid article { min-height: 0; }
  .topics-hero-inner { min-height: 210px; padding: 36px 0; }
  .topics-hero h1, .topic-detail-hero h1 { font-size: 31px; }
  .topics-hero-inner > p:last-child, .topic-detail-hero-inner > div > p:last-child { font-size: 12px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card-media { height: 180px; }
  .topic-card-body { min-height: 0; }
  .topic-detail-hero-inner { min-height: 250px; padding: 34px 0; align-items: flex-start; flex-direction: column; gap: 24px; }
  .topic-detail-hero dl { width: 100%; min-width: 0; border-left: 0; }
  .topic-detail-hero dl div { padding-left: 0; }
  .topic-guide { padding: 36px 0 40px; grid-template-columns: 1fr; gap: 26px; }
  .topic-guide aside { padding-left: 0; border-left: 0; }
  .topic-games-section { padding: 36px 0 44px; }
  .related-topics { padding: 38px 0 48px; }
  .related-topic-links { grid-template-columns: 1fr; }
  .ranking-hero { padding-top: 14px; }
  .ranking-hero-stage { min-height: 220px; padding: 34px 18px; }
  .ranking-hero-copy h1 { font-size: 31px; }
  .ranking-hero-copy > p:last-child { font-size: 12px; }
  .ranking-tabs .shell { min-height: 50px; gap: 24px; }
  .ranking-body { padding: 36px 0 46px; }
  .ranking-podium { grid-template-columns: 1fr; }
  .ranking-card-media, .ranking-card.rank-1 .ranking-card-media { height: 180px; }
  .ranking-list-heading { margin-top: 36px; }
  .ranking-row { min-height: 72px; padding: 8px 9px; grid-template-columns: 32px 48px minmax(0, 1fr) 70px 14px; gap: 8px; }
  .ranking-row-cover { width: 48px; height: 48px; }
  .ranking-row-copy small { display: none; }
  .ranking-row-metric b { font-size: 10px; }
  .ranking-topics { padding: 38px 0 46px; }
  .box-page-hero { padding-top: 14px; }
  .box-page-hero-stage { min-height: 0; padding: 28px 18px; grid-template-columns: 72px minmax(0, 1fr); gap: 16px; }
  .box-page-app-icon { width: 72px; height: 72px; }
  .box-page-hero-copy h1 { font-size: 28px; }
  .box-page-hero-copy > p:not(.eyebrow) { margin-bottom: 10px; font-size: 11px; }
  .box-page-download-panel { grid-column: 1 / -1; padding: 16px; }
  .box-page-content { padding: 36px 0 42px; grid-template-columns: 1fr; gap: 26px; }
  .box-trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .box-trust-strip > div { min-height: 70px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
  .box-trust-strip > div:nth-child(2) { border-right: 0; }
  .box-trust-strip > div:nth-child(n+3) { border-bottom: 0; }
  .box-feature-band { padding: 34px 0; }
  .box-feature-grid { grid-template-columns: 1fr; }
  .box-feature-grid article, .box-feature-grid article + article { min-height: 0; padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .box-feature-grid article:first-child { padding-top: 0; }
  .box-feature-grid article:last-child { padding-bottom: 0; border-bottom: 0; }
  .box-feature-grid p { min-height: 0; }
  .box-games-section { padding: 38px 0 46px; }
  .box-game-grid { grid-template-columns: 1fr; }
  .box-audience-band { padding: 34px 0 38px; }
  .box-audience-layout { grid-template-columns: 1fr; gap: 16px; }
  .box-faq-section { padding: 38px 0 46px; }
  .related-section { padding: 38px 0 50px; }
  .footer-inner { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 4px; }
}
