:root {
  color-scheme: light;
  --ink: #152432;
  --ink-soft: #26465c;
  --muted: #596d7d;
  --line: #d5e3ec;
  --paper: #fff;
  --surface: #f2f8fc;
  --teal: #36a7df;
  --teal-dark: #176b9b;
  --coral: #247fb8;
  --green: #2c806d;
  --gold: #dea124;
  --yellow: #f4cf60;
  --danger: #c44138;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 112px; background: var(--paper); }
body { max-width: 100%; margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-size: 16px; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.35; letter-spacing: 0; overflow-wrap: anywhere; word-break: auto-phrase; }
h1 { margin-bottom: 16px; font-size: 44px; }
h2 { margin-bottom: 0; font-size: 28px; }
h3 { margin-bottom: 8px; font-size: 18px; }

.wrap { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.narrow { max-width: 880px; }
.sr-only, .trap { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.eyebrow { margin-bottom: 7px; color: var(--coral); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.lead { max-width: 720px; margin-bottom: 24px; color: #344451; font-size: 18px; }

.site-header { position: sticky; top: 0; z-index: 90; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 3px 12px rgba(23,33,43,.05); }
.header-inner { position: relative; min-height: 58px; display: flex; align-items: center; gap: 12px; }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { width: 120px; height: auto; }
.header-shortcuts { display: flex; align-items: center; gap: 6px; }
.header-shortcuts > a { position: relative; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #aebbc3; border-radius: 6px; background: #fff; color: var(--teal-dark); }
.header-shortcuts > a:hover, .header-shortcuts > a[aria-current="page"] { border-color: var(--teal); background: #eaf6fc; }
.header-shortcuts .icon { width: 19px; height: 19px; }
.header-shortcuts b { position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; display: grid; place-items: center; padding-inline: 4px; border: 2px solid #fff; border-radius: 10px; background: var(--teal-dark); color: #fff; font-size: 9px; line-height: 1; }
.pr-strip { min-height: 26px; border-bottom: 1px solid var(--line); background: #f7f9fa; color: var(--muted); }
.pr-strip .wrap { min-height: 26px; display: flex; align-items: center; gap: 8px; }
.pr-strip span { display: inline-grid; place-items: center; min-width: 25px; height: 17px; border: 1px solid #9aabb4; border-radius: 3px; background: #fff; font-size: 9px; font-weight: 900; line-height: 1; }
.pr-strip small { font-size: 10px; line-height: 1.2; }
.menu-toggle { position: relative; width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid #aebbc3; border-radius: 6px; background: #fff; cursor: pointer; }
.menu-toggle span { width: 20px; height: 2px; display: block; background: var(--ink); transition: transform .18s ease, opacity .18s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 100; width: min(330px,100%); max-height: calc(100dvh - 76px); display: none; padding: 8px; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; border: 1px solid #c7d1d6; border-radius: 7px; background: #fff; box-shadow: 0 18px 45px rgba(23,33,43,.18); }
.site-menu.is-open { display: grid; }
.site-menu > a, .site-menu > button { position: relative; min-height: 54px; display: grid; grid-template-columns: 32px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 8px 12px; border: 0; border-left: 3px solid transparent; background: transparent; color: var(--muted); text-align: left; cursor: pointer; }
.site-menu > a > .icon, .site-menu > button > .icon { width: 22px; height: 22px; color: var(--teal-dark); }
.site-menu > a > span, .site-menu > button > span { min-width: 0; }
.site-menu > a strong, .site-menu > a small, .site-menu > button strong, .site-menu > button small { display: block; }
.site-menu > a strong, .site-menu > button strong { color: var(--ink); font-size: 14px; white-space: nowrap; }
.site-menu > a small, .site-menu > button small { color: var(--muted); font-size: 11px; font-weight: 500; white-space: nowrap; }
.site-menu > a:hover, .site-menu > a[aria-current="page"], .site-menu > button:hover { border-left-color: var(--teal); background: #eaf6fc; color: var(--teal-dark); }
.menu-search { display: grid; grid-template-columns: minmax(0,1fr) 42px; margin-bottom: 6px; }
.menu-search input { min-width: 0; min-height: 42px; padding: 7px 11px; border: 1px solid #aebbc3; border-right: 0; border-radius: 5px 0 0 5px; }
.menu-search button { display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 0 5px 5px 0; background: var(--ink); color: #fff; cursor: pointer; }
.menu-count { min-width: 22px; min-height: 22px; display: grid; place-items: center; border-radius: 11px; background: var(--teal-dark); color: #fff; font-size: 11px; }
.menu-count[hidden] { display: none; }
.burger-notice { position: absolute; top: -7px; right: -7px; min-width: 21px; height: 21px; display: grid; place-items: center; padding-inline: 5px; border: 2px solid #fff; border-radius: 11px; background: var(--teal-dark); color: #fff; font-size: 10px; font-weight: 900; line-height: 1; box-shadow: 0 3px 9px rgba(23,107,155,.24); }
.burger-notice[hidden] { display: none; }
.menu-new-games { margin: 2px 4px 7px; padding: 9px; border: 1px solid #c9dfec; border-radius: 6px; background: #f2f8fc; }
.menu-new-games[hidden] { display: none; }
.menu-new-games > header { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; }
.menu-new-games > header strong { font-size: 11px; }
.menu-new-games > header a { color: var(--teal-dark); border-bottom: 1px solid var(--teal); font-size: 10px; font-weight: 800; }
.menu-new-game { min-height: 50px; display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 8px; padding: 5px; border-radius: 5px; }
.menu-new-game:hover { background: #e8f6fc; }
.menu-new-game img { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; }
.menu-new-game span { min-width: 0; }
.menu-new-game strong, .menu-new-game small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.menu-new-game strong { font-size: 11px; }
.menu-new-game small { color: var(--muted); font-size: 9px; }
.menu-new-game i { padding: 1px 4px; border-radius: 3px; background: var(--teal-dark); color: #fff; font-size: 8px; font-style: normal; font-weight: 900; }

.home-discovery-hero { padding: 0 0 30px; border-bottom: 1px solid var(--line); background: #eef8fd; }
.home-discovery-art { width: 100%; height: clamp(260px,33.7vw,420px); margin: 0; overflow: hidden; border-bottom: 1px solid #c4ddeb; background: #dceef8; }
.home-discovery-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-discovery-hero > .wrap { padding-top: 34px; }
.home-discovery-top { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.82fr); align-items: end; gap: 48px; }
.home-discovery-top h1 { max-width: 660px; margin-bottom: 10px; font-size: 43px; }
.home-discovery-top .lead { margin-bottom: 0; }
.home-discovery-top .search-form button, .catalog-hub-head .search-form button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; }
.home-quick-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 30px; padding-top: 22px; border-top: 1px solid #bfced3; }
.home-quick-heading strong { font-size: 14px; }
.home-quick-heading a { color: var(--teal-dark); border-bottom: 2px solid var(--teal); font-size: 13px; font-weight: 850; }
.home-quick-picks { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.home-quick-picks a { min-width: 0; display: grid; grid-template-columns: 116px minmax(0,1fr); min-height: 92px; overflow: hidden; border: 1px solid #b9c9cf; border-radius: 7px; background: #fff; }
.home-quick-picks img { width: 116px; height: 100%; object-fit: cover; }
.home-quick-picks span { min-width: 0; display: grid; align-content: center; padding: 11px 13px; }
.home-quick-picks strong, .home-quick-picks small { display: block; }
.home-quick-picks strong { font-size: 16px; }
.home-quick-picks small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.home-quick-picks a:hover { border-color: var(--teal); }

.home-hero { overflow: hidden; border-bottom: 1px solid var(--line); background: #fff; }
.home-hero-visual { height: clamp(270px,34vw,420px); margin: 0; overflow: hidden; background: #dceef8; }
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.home-hero-shade, .game-hero-backdrop, .genre-hero-shade, .lp-shade, .free-hero-shade { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.home-hero-shade, .genre-hero-shade, .lp-shade, .free-hero-shade { background: linear-gradient(90deg, rgba(12,23,29,.18) 0%, rgba(12,23,29,.05) 48%, rgba(12,23,29,0) 78%); }
.home-hero-content { padding-block: 34px 38px; }
.home-discovery-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.85fr); align-items: center; gap: 54px; }
.home-discovery-copy, .home-discovery-tools { min-width: 0; }
.hero-copy-panel { width: min(680px,100%); padding: 28px 30px; border-left: 4px solid var(--coral); border-radius: 0 8px 8px 0; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 18px 45px rgba(5,12,16,.18); backdrop-filter: blur(4px); }
.home-hero h1 { max-width: 650px; color: var(--ink); font-size: 44px; }
.home-hero .lead { margin-bottom: 0; }
.home-hero .lead, .lp-hero .lead, .free-hero .lead { color: #344451; }
.home-hero .eyebrow, .lp-hero .eyebrow, .free-hero .eyebrow { color: var(--coral); }
.search-form { width: min(100%, 650px); display: grid; grid-template-columns: minmax(0,1fr) 96px; }
.search-form input { min-width: 0; min-height: 54px; padding: 0 16px; border: 2px solid var(--ink); border-right: 0; border-radius: 6px 0 0 6px; background: #fff; color: var(--ink); }
.search-form button { min-height: 54px; border: 2px solid var(--ink); border-radius: 0 6px 6px 0; background: var(--coral); color: #fff; cursor: pointer; font-weight: 850; }
.home-hero .search-form input, .home-hero .search-form button, .free-hero .search-form input, .free-hero .search-form button { border-color: var(--ink); }
.hero-links { width: min(100%,650px); display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; }
.hero-links a { color: var(--teal-dark); border-bottom: 1px solid var(--teal); font-size: 14px; font-weight: 800; }

.section { padding-block: 58px; }
.section-alt { background: var(--surface); border-block: 1px solid var(--line); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink .eyebrow { color: #ffd779; }
.section-ink .text-link { color: #fff; border-bottom-color: var(--yellow); }
.section-ink .game-card { background: #fff; color: var(--ink); border-color: #42515b; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-heading > span { color: var(--muted); font-size: 14px; }
.text-link { flex: 0 0 auto; color: var(--teal-dark); border-bottom: 2px solid var(--teal); font-weight: 800; }
.primary-action, .secondary-action { width: fit-content; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border: 2px solid var(--ink); border-radius: 6px; font-weight: 850; cursor: pointer; }
.primary-action { background: var(--coral); color: #fff; }
.secondary-action { background: #fff; color: var(--ink); }

.game-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.game-card { min-width: 0; min-height: 184px; display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 15px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.game-card:hover { border-color: #9db0bb; box-shadow: 0 8px 22px rgba(23,33,43,.08); }
.game-card-media, .game-card-media img, .image-fallback { width: 112px; height: 112px; border-radius: 7px; }
.game-card-media { position: relative; align-self: start; overflow: hidden; background: #e2e8ed; }
.game-card-media img { object-fit: cover; }
.image-fallback { display: grid; place-items: center; background: var(--teal); color: #fff; font-size: 32px; font-weight: 900; }
.game-card-body { min-width: 0; }
.game-card h3 { margin-bottom: 3px; overflow-wrap: anywhere; }
.game-card h3 a:hover { color: var(--teal-dark); }
.game-card p { margin-bottom: 5px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.game-card .publisher { color: var(--teal-dark); font-size: 12px; }
.publisher a { display: inline-flex; align-items: center; gap: 4px; border-bottom: 1px solid transparent; }
.publisher a:hover { border-bottom-color: currentColor; }
.publisher .icon { width: 13px; height: 13px; }
.card-metrics { min-height: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 10px; margin-bottom: 6px; color: var(--muted); font-size: 11px; }
.card-metrics span { display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.card-metrics .icon { width: 14px; height: 14px; }
.card-metrics .rating small { color: var(--muted); font-size: 9px; font-weight: 700; }
.rating { color: #9a6500; font-weight: 900; }
.card-pr { width: fit-content; display: inline-grid; place-items: center; min-width: 25px; height: 18px; margin-bottom: 4px; padding-inline: 5px; border: 1px solid #8ea6b4; border-radius: 3px; background: #f5f8fa; color: var(--muted); font-size: 9px; font-weight: 900; line-height: 1; }
.card-release-meta { display: flex; flex-wrap: wrap; gap: 4px 9px; color: var(--ink-soft) !important; font-size: 10px !important; }
.card-release-meta span { padding-left: 9px; border-left: 1px solid var(--line); }
.card-actions { display: grid; grid-template-columns: 46px minmax(92px,1fr) 32px 32px; align-items: center; gap: 6px; margin-top: 8px; }
.card-actions.no-store { grid-template-columns: 46px 32px 32px; }
.card-more, .card-play { min-height: 32px; display: inline-flex; align-items: center; justify-content: center; padding: 5px 10px; border-radius: 5px; font-size: 12px; font-weight: 800; }
.card-more { border: 1px solid #9aabb4; color: var(--teal-dark); }
.card-play { border: 1px solid var(--green); background: var(--green); color: #fff; }
.card-play .icon { margin-left: 4px; }
.card-save { width: 32px; height: 32px; display: grid; place-items: center; padding: 0; border: 1px solid #9aabb4; border-radius: 5px; background: #fff; color: #8a4c54; cursor: pointer; }
.card-save .icon, .card-compare .icon { width: 16px; height: 16px; }
.card-save.is-active { border-color: var(--teal-dark); background: #e8f6fc; color: var(--teal-dark); }
.card-save.is-active .icon { fill: currentColor; }
.card-compare { width: 32px; height: 32px; display: grid; place-items: center; padding: 0; border: 1px solid #90a6ae; border-radius: 5px; background: #fff; color: var(--teal-dark); cursor: pointer; }
.card-compare span { display: none; }
.card-compare.is-active { border-color: var(--teal-dark); background: #e7f5fc; }
.card-mark-read { min-height: 30px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; margin-top: 7px; padding: 4px 9px; border: 1px solid #9cb2bd; border-radius: 5px; background: #fff; color: var(--teal-dark); cursor: pointer; font-size: 11px; font-weight: 800; }
.rank-number { position: absolute; top: 6px; left: 6px; z-index: 2; min-width: 36px; height: 27px; display: inline-flex; align-items: center; justify-content: center; gap: 1px; padding: 0 7px; border: 2px solid #fff; border-radius: 14px; background: var(--ink); color: #fff; box-shadow: 0 4px 10px rgba(23,33,43,.24); font-weight: 900; line-height: 1; }
.rank-number strong { display: block; font-size: 13px; line-height: 1; }
.rank-number small { display: block; font-size: 8px; line-height: 1; }
.game-grid-ranked .game-card.rank-top { border-top: 4px solid var(--gold); }
.ranking-sponsored { margin-bottom: 22px; padding: 13px; border: 1px solid #c5d6df; border-radius: 7px; background: #f7fbfd; }
.ranking-sponsored-heading { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.ranking-sponsored-heading span { min-width: 27px; padding: 2px 5px; border: 1px solid #90a5af; border-radius: 3px; background: #fff; color: var(--muted); font-size: 9px; font-weight: 900; text-align: center; }
.ranking-sponsored-heading strong { font-size: 13px; }
.ranking-sponsored-heading small { margin-left: auto; color: var(--muted); font-size: 10px; }
.game-grid-sponsored { grid-template-columns: minmax(0,560px); }
.game-grid-sponsored .game-card { min-height: 0; }

.guide-band { background: #eaf6fc; border-block: 1px solid #c6dfed; overflow: hidden; }
.guide-layout { position: relative; min-height: 360px; display: grid; grid-template-columns: 300px minmax(0,1fr); align-items: center; gap: 38px; }
.lp-trust-layout > img { width: 280px; max-height: 330px; object-fit: contain; object-position: bottom; align-self: end; }
.guide-art-scene { width: 300px; height: 230px; border-radius: 8px; object-fit: cover; box-shadow: 0 18px 40px rgba(23,33,43,.16); }
.guide-character { position: absolute; right: 0; bottom: -22px; z-index: 0; width: 250px; max-height: 350px; object-fit: contain; object-position: bottom; opacity: .18; pointer-events: none; filter: saturate(.8); }
.guide-copy { position: relative; z-index: 1; min-width: 0; padding-right: 120px; }
.guide-layout p:not(.eyebrow) { max-width: 680px; color: #42515b; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.genre-visual-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.genre-visual { min-height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.genre-visual img { width: 100%; height: 168px; object-fit: cover; opacity: 1; transition: transform .25s ease; }
.genre-visual:hover img { transform: scale(1.025); }
.genre-visual span { min-height: 74px; display: grid; align-content: center; padding: 11px 14px; background: #fff; color: var(--ink); }
.genre-visual strong, .genre-visual small { display: block; }
.genre-visual strong { font-size: 18px; }
.genre-visual small { color: var(--muted); }

.page-head { padding-block: 52px; border-bottom: 1px solid var(--line); background: #eef8fd; }
.page-head h1 { font-size: 40px; }
.page-head .search-form { margin-top: 22px; }
.result-count { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.sort-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.sort-tabs-section { margin: -8px 0 24px; }
.sort-tabs a { min-height: 42px; display: grid; place-items: center; padding: 8px 16px; border: 1px solid #aebbc3; border-radius: 6px; background: #fff; font-weight: 800; }
.sort-tabs a[aria-current="page"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.catalog-controls { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(280px,1fr); gap: 26px; margin-bottom: 28px; padding-block: 22px; border-block: 1px solid var(--line); }
.filter-block, .sort-block { min-width: 0; }
.catalog-controls h3 { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; font-size: 14px; }
.catalog-controls h3 .icon { color: var(--teal); }
.selected-filters { margin-bottom: 18px; padding: 12px; border: 1px solid #9fc1c4; border-radius: 6px; background: #f2f8f8; }
.selected-filters-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.selected-filters-heading strong { font-size: 13px; }
.selected-filters-heading button { border: 0; background: transparent; color: var(--teal-dark); cursor: pointer; font-size: 12px; font-weight: 800; }
.selected-filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.selected-filter-chips button { min-height: 34px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px 5px 11px; border: 1px solid var(--teal-dark); border-radius: 17px; background: var(--teal-dark); color: #fff; cursor: pointer; font-size: 12px; font-weight: 800; }
.selected-filter-chips .icon { width: 15px; height: 15px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-chips a { min-height: 36px; display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border: 1px solid #aebbc3; border-radius: 18px; background: #fff; color: #344451; font-size: 12px; font-weight: 750; }
.filter-chips a small { min-width: 20px; display: inline-grid; place-items: center; padding: 1px 5px; border-radius: 10px; background: #e6f2f8; color: var(--muted); font-size: 10px; }
.filter-chips a[aria-pressed="true"] { border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; }
.filter-chips a[aria-pressed="true"] small { background: rgba(255,255,255,.18); color: #fff; }
.sort-block .sort-tabs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); margin: 0; }
.sort-block .sort-tabs a { min-height: 36px; padding: 5px 8px; font-size: 12px; }
.catalog-result-summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.catalog-result-summary p { margin: 0; }
.catalog-result-summary span { color: var(--muted); font-size: 12px; }
.active-catalog-filter { width: fit-content; display: flex; align-items: center; gap: 8px; margin: -12px 0 20px; padding: 7px 9px 7px 12px; border: 1px solid #a8ccdf; border-radius: 6px; background: #eff8fd; color: var(--teal-dark); font-size: 12px; }
.active-catalog-filter span { color: var(--muted); }
.active-catalog-filter a { width: 28px; height: 28px; display: grid; place-items: center; margin-left: 2px; border-radius: 4px; background: #fff; }
.unread-catalog-note { padding: 22px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); text-align: center; }
.catalog-results { min-height: 220px; transition: opacity .15s ease; }
.catalog-results[aria-busy="true"] { opacity: .38; pointer-events: none; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.pagination a, .pagination span { min-width: 76px; min-height: 42px; display: inline-grid; place-items: center; padding: 7px 13px; border: 1px solid #aab7c1; border-radius: 6px; background: #fff; font-weight: 750; }
.link-band { padding-block: 28px; background: #eaf3ef; border-block: 1px solid #cadbd4; }
.link-band-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; }
.link-band-inner p { margin: 0; color: var(--muted); }
.link-band-inner a { color: var(--teal-dark); font-weight: 850; border-bottom: 2px solid var(--teal); }

.catalog-hub-head { padding-block: 46px 38px; background: #eef8fd; border-bottom: 1px solid #c8dfec; }
.catalog-hub-layout { display: grid; grid-template-columns: minmax(0,1fr) 390px; align-items: end; gap: 46px; }
.catalog-hub-copy h1 { margin-bottom: 9px; font-size: 42px; }
.catalog-hub-copy .lead { margin-bottom: 22px; font-size: 16px; }
.catalog-hub-head.is-compact { padding-block: 30px 26px; }
.catalog-hub-head.is-compact .catalog-hub-copy .lead { margin-bottom: 14px; }
.catalog-hub-head.is-compact .compare-guide { min-height: 88px; }
.compare-guide { min-height: 104px; display: grid; grid-template-columns: 46px minmax(0,1fr); align-items: center; gap: 13px; padding: 16px; border: 1px solid #a9bdc3; border-radius: 7px; background: #fff; }
.compare-guide > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 6px; background: var(--ink); color: #fff; }
.compare-guide > span .icon { width: 24px; height: 24px; }
.compare-guide strong, .compare-guide small { display: block; }
.compare-guide strong { font-size: 14px; }
.compare-guide small { color: var(--muted); font-size: 11px; }
.compare-guide > a { grid-column: 2; width: fit-content; color: var(--teal-dark); border-bottom: 2px solid var(--teal); font-size: 12px; font-weight: 850; }
.catalog-discovery-bar { padding-block: 22px; border-bottom: 1px solid var(--line); background: #fff; }
.catalog-discovery-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 11px; }
.catalog-discovery-heading strong { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; }
.catalog-discovery-heading strong .icon { color: var(--teal); }
.catalog-discovery-heading a { color: var(--teal-dark); border-bottom: 1px solid var(--teal); font-size: 12px; font-weight: 800; }
.discovery-chips { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 3px; }
.discovery-chips a { flex: 0 0 auto; min-height: 38px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border: 1px solid #adbec5; border-radius: 6px; background: #f8fafb; font-size: 12px; font-weight: 800; }
.discovery-chips small { min-width: 24px; padding: 1px 5px; border-radius: 10px; background: #e6f2f8; color: var(--muted); font-size: 10px; text-align: center; }
.discovery-chips a[aria-current="page"] { border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; }
.discovery-chips a[aria-current="page"] small { background: rgba(255,255,255,.2); color: #fff; }
.catalog-title-row { margin-bottom: 14px; }
.catalog-sort-tabs { margin: 0 0 24px; padding-bottom: 5px; overflow-x: auto; flex-wrap: nowrap; }
.catalog-sort-tabs a { flex: 0 0 auto; min-height: 38px; padding-inline: 13px; font-size: 12px; }

.review-discovery-cta { border-bottom: 1px solid #c9dad6; background: #e8f3f0; }
.review-discovery-cta > .wrap { min-height: 94px; display: grid; grid-template-columns: 46px minmax(0,1fr) auto; align-items: center; gap: 17px; }
.review-discovery-cta > .wrap > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-dark); color: #fff; }
.review-discovery-cta strong { display: block; }
.review-discovery-cta p { margin: 2px 0 0; color: var(--muted); font-size: 12px; }
.review-discovery-cta a { min-height: 40px; display: inline-grid; place-items: center; padding: 7px 13px; border: 1px solid var(--ink); border-radius: 5px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 850; }

.compare-tray[hidden] { display: none; }
.compare-tray { position: fixed; left: 50%; bottom: 16px; z-index: 80; width: min(680px,calc(100vw - 28px)); min-height: 62px; display: grid; grid-template-columns: 34px auto minmax(0,1fr) 38px auto; align-items: center; gap: 12px; padding: 9px 10px; border: 1px solid #52636e; border-radius: 8px; background: var(--ink); color: #fff; box-shadow: 0 15px 38px rgba(13,24,30,.3); transform: translateX(-50%); transition: width .18s ease, transform .18s ease; }
.compare-tray-games { display: flex; }
.compare-tray-games span { width: 38px; height: 38px; margin-left: -7px; border: 2px solid var(--ink); border-radius: 7px; overflow: hidden; background: #fff; }
.compare-tray-games span:first-child { margin-left: 0; }
.compare-tray-games img { width: 100%; height: 100%; object-fit: cover; }
.compare-tray-copy strong, .compare-tray-copy small { display: block; }
.compare-tray-copy strong { font-size: 13px; }
.compare-tray-copy small { color: #c6d1d6; font-size: 10px; }
.compare-tray > button { width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 1px solid #6c7e88; border-radius: 5px; background: transparent; color: #fff; cursor: pointer; }
.compare-tray > .compare-tray-toggle { width: 32px; height: 32px; }
.compare-tray-toggle .icon { transition: transform .18s ease; }
.compare-tray > a { min-height: 40px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 5px; background: var(--coral); color: #fff; font-size: 13px; font-weight: 900; }
.compare-page-head-inner { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 24px; }
.page-share-action { min-height: 40px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 7px 12px; border: 1px solid #8fa4ad; border-radius: 6px; background: #fff; color: var(--teal-dark); cursor: pointer; font-size: 12px; font-weight: 850; white-space: nowrap; }
.page-share-action:hover { border-color: var(--teal); background: #eaf7fc; }
.compare-page [data-compare-results][aria-busy="true"] { opacity: .4; pointer-events: none; }
.compare-empty { min-height: 340px; display: grid; place-items: center; align-content: center; text-align: center; }
.compare-empty > .icon { width: 56px; height: 56px; margin-bottom: 16px; color: #9db0b8; }
.compare-empty strong { font-size: 20px; }
.compare-empty p { margin: 5px 0 18px; color: var(--muted); }
.compare-notice { margin-bottom: 14px; padding: 10px 13px; border-left: 4px solid var(--teal); background: #ebf7fd; color: #344451; font-size: 13px; }
.compare-notice a { color: var(--teal-dark); border-bottom: 1px solid var(--teal); font-weight: 800; }
.compare-swipe-cue { display: none; }
.compare-scroll-shell { max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-color: var(--teal) #e4eaed; }
.compare-table { min-width: 100%; display: grid; grid-template-columns: repeat(var(--compare-count),minmax(210px,1fr)); gap: 10px; padding-bottom: 8px; }
.compare-column { position: relative; min-width: 220px; display: flex; flex-direction: column; padding: 15px; border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: 8px; background: #fff; }
.compare-remove { position: absolute; top: 9px; right: 9px; z-index: 2; width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 1px solid #aebbc3; border-radius: 50%; background: #fff; color: var(--ink); cursor: pointer; }
.compare-game-image, .compare-game-image img, .compare-game-image .image-fallback { width: 104px; height: 104px; border-radius: 8px; }
.compare-game-image img { object-fit: cover; }
.compare-column h2 { margin: 13px 0 3px; font-size: 17px; }
.compare-column .publisher { min-height: 22px; margin-bottom: 10px; color: var(--green); font-size: 11px; }
.compare-column dl { margin: 0 0 12px; border-block: 1px solid var(--line); }
.compare-column dl div { min-height: 39px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.compare-column dl div:last-child { border-bottom: 0; }
.compare-column dt { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); font-size: 11px; }
.compare-column dd { margin: 0; font-weight: 900; }
.compare-tags { min-height: 44px; color: var(--teal-dark); font-size: 11px; font-weight: 750; }
.compare-summary { flex: 1; color: var(--muted); font-size: 12px; }
.compare-column .primary-action, .compare-column .secondary-action { width: 100%; min-height: 40px; margin-top: 7px; padding: 6px 8px; font-size: 12px; }
.compare-footer-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }
.compare-footer-actions a, .compare-footer-actions button { border: 0; background: transparent; color: var(--teal-dark); border-bottom: 1px solid var(--teal); cursor: pointer; font-size: 12px; font-weight: 800; }

.genre-hero { --hero-accent: #258fc8; position: relative; min-height: 460px; isolation: isolate; overflow: hidden; border-bottom: 1px solid #b9dbea; background: #dff3fd; }
.genre-hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.genre-hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(236,249,255,.98) 0%, rgba(236,249,255,.88) 38%, rgba(236,249,255,.2) 70%, rgba(236,249,255,.04) 100%), linear-gradient(0deg, rgba(28,125,174,.16), transparent 48%); }
.genre-hero-layout { min-height: 460px; display: flex; align-items: center; }
.genre-hero-copy { width: min(660px,66%); padding: 32px 34px; border: 1px solid rgba(65,148,190,.42); border-left: 5px solid var(--hero-accent); border-radius: 5px 18px 18px 5px; background: rgba(255,255,255,.91); color: var(--ink); box-shadow: 0 22px 60px rgba(24,96,132,.2); backdrop-filter: blur(10px); }
.genre-hero .eyebrow { display: flex; align-items: center; gap: 10px; color: #477083; letter-spacing: .08em; }
.genre-hero .eyebrow span { padding: 4px 8px; border-radius: 999px; background: var(--hero-accent); color: #fff; font-size: 10px; letter-spacing: .1em; }
.genre-hero h1 { max-width: 760px; margin-bottom: 14px; color: #102b3b; font-size: 46px; line-height: 1.22; text-shadow: none; }
.genre-hero .lead { max-width: 580px; margin-bottom: 22px; color: #355a6c; }
.genre-hero[data-theme="sexy"], .lp-hero[data-theme="sexy"] { --hero-accent: #ff4e8f; }
.genre-hero[data-theme="bishoujo"], .genre-hero[data-theme="romance"], .lp-hero[data-theme="bishoujo"], .lp-hero[data-theme="romance"] { --hero-accent: #ff76cb; }
.genre-hero[data-theme="casino"], .lp-hero[data-theme="casino"] { --hero-accent: #f3c04e; }
.genre-hero[data-theme="dark"], .lp-hero[data-theme="dark"] { --hero-accent: #ef4b55; }
.genre-hero[data-theme="cozy"], .lp-hero[data-theme="cozy"] { --hero-accent: #71dda0; }
.genre-hero[data-theme="japan"], .lp-hero[data-theme="japan"] { --hero-accent: #ff635f; }
.genre-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.genre-count { display: inline-flex; align-items: baseline; gap: 4px; padding: 7px 11px; border: 1px solid #abd4e8; border-radius: 7px; background: #effaff; color: #315d72; font-size: 12px; }
.genre-count b { color: #176b9b; font-size: 18px; }
.genre-hero .page-share-action { border-color: #9bc9df; background: #fff; color: #176b9b; }
.related-genre-bar { background: var(--ink); color: #fff; }
.related-genre-bar .wrap { min-height: 58px; display: flex; align-items: center; gap: 18px; overflow-x: auto; }
.related-genre-bar strong { display: inline-flex; align-items: center; gap: 6px; color: var(--yellow); white-space: nowrap; }
.related-genre-bar a { white-space: nowrap; border-bottom: 1px solid #82929d; font-size: 14px; }
.genre-directory-head { background: #f2f6f5; }
.genre-theme-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.genre-theme { min-height: 0; padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); cursor: pointer; text-align: left; }
.genre-theme img { width: 100%; height: 174px; object-fit: cover; opacity: 1; }
.genre-theme span { min-height: 72px; display: grid; align-content: center; padding: 10px 15px; background: #fff; }
.genre-theme strong, .genre-theme small { display: block; }
.genre-theme strong { font-size: 19px; }
.genre-theme small { margin-top: 2px; color: var(--muted); }
.category-list { display: flex; flex-wrap: wrap; gap: 9px; }
.category-list a { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 8px 12px; border: 1px solid #bac6cc; border-radius: 6px; background: #fff; font-weight: 750; }
.category-list small { color: var(--muted); font-weight: 500; }
.genre-group { padding-block: 50px; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.genre-group:nth-of-type(even) { background: #f8fafb; }
.genre-group-title { display: grid; grid-template-columns: 220px minmax(0,1fr); align-items: center; gap: 26px; margin-bottom: 26px; }
.genre-group-title img { width: 220px; height: 124px; border-radius: 7px; object-fit: cover; }
.genre-group-title p { margin: 6px 0 0; color: var(--muted); }
.category-directory { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category-directory a { min-height: 82px; display: flex; flex-direction: column; justify-content: center; padding: 13px 15px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.category-directory a:hover { background: #eaf7fc; }
.category-directory span { color: var(--muted); font-size: 12px; }

.game-hero { background: #eef8fd; border-bottom: 1px solid var(--line); }
.game-hero-layout { min-height: 440px; display: grid; grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr); align-items: stretch; gap: 34px; padding-block: 32px; }
.game-hero-media { min-height: 376px; overflow: hidden; border: 1px solid #c8d2d7; border-radius: 8px; background: #dceef8; }
.game-hero-media img, .game-hero-media .image-fallback { width: 100%; height: 100%; min-height: 376px; object-fit: cover; }
.game-hero-grid { min-width: 0; display: grid; align-content: center; gap: 18px; }
.game-identity { display: grid; grid-template-columns: 112px minmax(0,1fr); align-items: center; gap: 18px; }
.game-icon, .game-icon img, .game-icon .image-fallback { width: 112px; height: 112px; border-radius: 12px; }
.game-icon { display: block; overflow: hidden; border: 1px solid #b7c6cd; background: #dce5e8; box-shadow: 0 10px 22px rgba(23,33,43,.16); }
.game-icon img { object-fit: cover; }
.game-status-heading { display: flex; align-items: center; gap: 10px; }
.game-status-heading .eyebrow { margin-bottom: 0; }
.service-ended-badge { display: inline-flex; align-items: center; min-height: 25px; padding: 3px 9px; border: 1px solid #849199; border-radius: 4px; background: #edf0f2; color: #45545c; font-size: 12px; font-weight: 900; }
.service-ended-notice { display: grid; gap: 3px; margin: 0 0 16px; padding: 13px 15px; border-left: 4px solid #687780; background: #eef1f2; color: #46535a; }
.service-ended-notice strong { font-size: 15px; }
.service-ended-notice span { font-size: 12px; line-height: 1.6; }
.game-title-block { min-width: 0; }
.game-title-block h1 { margin-bottom: 8px; font-size: 38px; overflow-wrap: anywhere; }
.game-hero-details { min-width: 0; padding-top: 17px; border-top: 1px solid #c8d8d4; }
.game-hero-details .lead { margin-bottom: 12px; }
.game-sticky-cta { position: fixed; inset: 58px 0 auto; z-index: 78; border-bottom: 1px solid #b9c7cd; background: rgba(255,255,255,.98); box-shadow: 0 8px 22px rgba(23,33,43,.12); opacity: 0; pointer-events: none; transform: translateY(-110%); transition: opacity .18s ease, transform .18s ease; }
.game-sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.game-sticky-cta-inner { min-height: 60px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 14px; padding-block: 7px; }
.game-sticky-identity { min-width: 0; display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 10px; }
.game-sticky-identity img, .game-sticky-identity .image-fallback { width: 44px; height: 44px; border-radius: 7px; object-fit: cover; }
.game-sticky-identity span { min-width: 0; }
.game-sticky-identity strong, .game-sticky-identity small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.game-sticky-identity strong { font-size: 14px; }
.game-sticky-identity small { color: var(--green); font-size: 10px; }
.game-sticky-action { min-width: 154px; min-height: 44px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 5px 11px 5px 13px; border: 1px solid var(--ink); border-radius: 6px; background: var(--coral); color: #fff; }
.game-sticky-action.store-android { background: var(--green); }
.game-sticky-action small, .game-sticky-action strong { display: block; line-height: 1.3; }
.game-sticky-action small { font-size: 9px; }
.game-sticky-action strong { font-size: 13px; }
.game-sticky-action.is-disabled, .store-action.is-disabled { border-color: #8b969c; background: #a4adb2; color: #f3f5f6; cursor: not-allowed; filter: grayscale(1); box-shadow: none; }
.game-sticky-action.is-disabled:active, .store-action.is-disabled:active { transform: none; }
.publisher { color: var(--teal-dark); }
.publisher-large { font-weight: 750; }
.hero-score-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; color: #42515b; font-size: 13px; }
.hero-score-row > span { display: inline-flex; align-items: center; gap: 4px; }
.score-large { display: inline-flex; align-items: baseline; gap: 5px; color: var(--ink); font-size: 26px; }
.score-large span { color: var(--gold); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-block: 18px; }
.tag-list a { padding: 5px 9px; border: 1px solid #aab9c1; border-radius: 5px; background: rgba(255,255,255,.85); font-size: 12px; }
.game-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.store-action { position: relative; min-width: 170px; min-height: 58px; display: flex; flex-direction: column; justify-content: center; padding: 7px 42px 7px 16px; border: 2px solid var(--ink); border-radius: 6px; background: var(--coral); color: #fff; }
.store-action > .icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); }
.store-action small { font-size: 11px; }
.store-action strong { font-size: 16px; }
.store-android { background: var(--green); }
.favorite-action { min-height: 58px; display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid #9aabb4; border-radius: 6px; background: #fff; cursor: pointer; font-weight: 750; }
.favorite-action b { color: var(--coral); font-size: 23px; }
.favorite-action.is-active { border-color: var(--teal-dark); color: var(--teal-dark); }
.detail-nav { width: 100%; display: flex; justify-content: flex-start; gap: 0; overflow-x: auto; padding-inline: max(16px, calc((100vw - 1160px) / 2)); border-bottom: 1px solid var(--line); background: #fff; scroll-padding-left: 16px; scrollbar-width: thin; }
.engagement-actions { width: min(100%,272px); display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.engagement-actions button { position: relative; width: 100%; aspect-ratio: 1; display: grid; place-items: center; padding: 0; border: 1px solid #9aabb4; border-radius: 7px; background: #fff; color: #344451; cursor: pointer; }
.engagement-actions button .icon { width: 22px; height: 22px; color: var(--teal-dark); }
.engagement-actions button b { position: absolute; right: -5px; bottom: -5px; min-width: 20px; height: 20px; display: grid; place-items: center; padding-inline: 4px; border: 2px solid #eef8fd; border-radius: 10px; background: var(--ink); color: #fff; font-size: 9px; line-height: 1; }
.engagement-actions button.is-active { border-color: var(--teal-dark); background: #e8f6fc; color: var(--teal-dark); }
.engagement-actions button.is-active .icon { color: var(--coral); fill: rgba(217,82,69,.16); }
.detail-nav a { flex: 0 0 auto; min-width: 120px; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 12px; border-right: 1px solid var(--line); white-space: nowrap; font-size: 13px; font-weight: 800; }
.detail-nav .icon { color: var(--teal); }
.detail-nav a:first-child { border-left: 1px solid var(--line); }
.banner-section { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.banner-section img { width: 100%; aspect-ratio: 16/9; border-radius: 7px; object-fit: cover; }
.screenshot-lead { background: #eef4f5; border-bottom: 1px solid var(--line); }
.section-intro { margin: 7px 0 0; color: var(--muted); font-size: 14px; }
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 310px; align-items: start; gap: 54px; }
.article-stack { min-width: 0; }
.article-column { position: relative; max-width: 760px; transition: max-height .3s ease; }
.article-column.is-collapsed { max-height: 360px; overflow: hidden; }
.article-column.is-collapsed::after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(transparent, var(--paper)); pointer-events: none; }
.article-column p:not(.eyebrow) { color: #344451; font-size: 16px; line-height: 1.95; }
.article-prose { padding-left: 18px; border-left: 3px solid #c9dedb; }
.article-prose p { margin-bottom: 17px; }
.article-prose p:last-child { margin-bottom: 0; }
.article-toggle { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; border: 1px solid #9eafb7; border-radius: 6px; background: #fff; color: var(--ink); cursor: pointer; font-weight: 850; }
.article-toggle .icon { transition: transform .2s ease; transform: rotate(180deg); }
.article-toggle[aria-expanded="true"] .icon { transform: rotate(0); }
.overview-heading { margin-bottom: 20px; }
.quick-facts { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin-bottom: 34px; border-block: 1px solid var(--line); }
.quick-facts article { min-height: 104px; display: grid; grid-template-columns: 34px minmax(0,1fr); grid-template-rows: auto auto; align-content: center; padding: 15px 20px; border-right: 1px solid var(--line); }
.quick-facts article:first-child { border-left: 1px solid var(--line); }
.quick-facts .icon { grid-row: 1/3; width: 25px; height: 25px; align-self: center; color: var(--coral); }
.quick-facts span { color: var(--muted); font-size: 11px; }
.quick-facts strong { min-width: 0; overflow-wrap: anywhere; font-size: 20px; }
.quick-facts small { margin-left: 3px; color: var(--muted); font-size: 11px; }
.fact-panel { border-top: 4px solid var(--teal); background: var(--surface); }
.fact-panel h2 { display: flex; align-items: center; gap: 7px; padding: 16px 18px 12px; font-size: 19px; }
.fact-panel dl { margin: 0; }
.fact-panel dl div { display: grid; grid-template-columns: 100px 1fr; gap: 10px; padding: 10px 18px; border-top: 1px solid var(--line); }
.fact-panel dt { display: flex; align-items: center; gap: 5px; color: var(--muted); font-size: 12px; }
.fact-panel dt .icon { color: var(--teal); }
.fact-panel dd { margin: 0; text-align: right; font-size: 13px; font-weight: 750; }
.media-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px,30%); align-items: start; gap: 12px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x proximity; }
.media-strip figure { min-width: 0; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; scroll-snap-align: start; }
.media-strip figure.is-landscape { grid-column: span 2; }
.media-strip img { width: 100%; height: auto; aspect-ratio: var(--media-ratio, 9 / 16); border: 0; border-radius: 0; background: #e4e9ec; object-fit: contain; }
.media-strip figure.is-landscape img { aspect-ratio: var(--media-ratio, 16 / 9); }
.media-strip figcaption { min-height: 38px; padding: 7px 9px; border-top: 1px solid var(--line); background: #fff; color: var(--muted); font-size: 11px; line-height: 1.45; }
.swipe-hint { display: none; align-items: center; gap: 5px; margin: 6px 0 0; color: var(--muted); font-size: 11px; }
.rating-layout { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 48px; align-items: center; }
.score-summary { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); border-top: 5px solid var(--gold); }
.score-summary strong { color: var(--ink); font-size: 68px; line-height: 1; }
.score-summary span { color: var(--muted); font-size: 13px; }
.score-summary p { margin: 18px 16px 0; color: var(--muted); font-size: 12px; text-align: center; }
.rating-bars { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px 24px; }
.rating-bars > div { display: grid; grid-template-columns: 110px minmax(0,1fr) 28px; align-items: center; gap: 10px; font-size: 12px; }
.rating-bars meter { width: 100%; height: 12px; accent-color: var(--teal); }
.rating-bars b { text-align: right; }
.review-band { background: #f3f6f7; border-block: 1px solid var(--line); }
.home-review-band { background: #eef8fd; border-block: 1px solid #c9dfec; }
.review-feed { display: grid; gap: 16px; }
.review-feed-compact { grid-template-columns: repeat(3,minmax(0,1fr)); }
.review-feed-item { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.review-feed-game { min-height: 76px; display: grid; grid-template-columns: 54px minmax(0,1fr) 20px; align-items: center; gap: 11px; padding: 10px 13px; border-bottom: 1px solid var(--line); background: #f8fafb; }
.review-feed-game img, .review-feed-fallback { width: 54px; height: 54px; border-radius: 7px; object-fit: cover; }
.review-feed-fallback { display: grid; place-items: center; background: var(--teal); color: #fff; font-weight: 900; }
.review-feed-game > span { min-width: 0; }
.review-feed-game small, .review-feed-game strong { display: block; }
.review-feed-game small { color: var(--coral); font-size: 9px; font-weight: 850; }
.review-feed-game strong { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.review-feed-game > .icon { width: 16px; height: 16px; color: var(--teal-dark); transform: rotate(90deg); }
.review-feed-body { padding: 15px; }
.review-feed-body header { display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.review-feed-body h3 { margin: 0; font-size: 16px; }
.review-feed-body header .rating { display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.review-feed-body p { margin: 10px 0 0; color: #344451; font-size: 13px; line-height: 1.7; }
.review-feed-body .review-note { color: var(--muted); }
.review-feed-body footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 13px; color: var(--muted); font-size: 11px; }
.review-feed-body footer span, .review-feed-body footer time { display: block; }
.review-feed-body footer a { flex: 0 0 auto; color: var(--teal-dark); border-bottom: 1px solid var(--teal); font-weight: 800; }
.review-feed-body .review-reactions { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.review-directory { max-width: 900px; }
.review-directory .review-feed-item { display: grid; grid-template-columns: 240px minmax(0,1fr); }
.review-directory .review-feed-game { min-height: 100%; border-right: 1px solid var(--line); border-bottom: 0; }
.review-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.review-item { min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.review-item header { display: flex; align-items: start; justify-content: space-between; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.review-item p { margin: 12px 0 0; font-size: 14px; }
.review-item .review-note { color: #5d6267; font-size: 13px; }
.review-item footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; color: var(--muted); font-size: 11px; }
.review-reactions { display: flex; justify-content: flex-end; gap: 7px; margin-top: 12px; }
.review-reactions button { min-width: 42px; min-height: 36px; display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 5px 9px; border: 1px solid #aab7bf; border-radius: 6px; background: #fff; color: #465761; cursor: pointer; }
.review-reactions button .icon { width: 17px; height: 17px; color: var(--teal-dark); }
.review-reactions button[aria-pressed="true"] { border-color: var(--teal); background: #eaf6f4; color: var(--teal-dark); }
.review-reactions button:disabled { cursor: default; opacity: .72; }
.my-review-panel { display: none; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 12px; margin-bottom: 18px; padding: 13px 15px; border: 1px solid #a8c9c3; border-left: 4px solid var(--teal); border-radius: 7px; background: #fff; }
.my-review-panel.is-visible { display: grid; }
.my-review-panel > .icon { width: 24px; height: 24px; color: var(--teal); }
.my-review-panel strong, .my-review-panel small { display: block; }
.my-review-panel small { margin-top: 2px; color: var(--muted); }
.my-review-panel button { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #9aabb4; border-radius: 6px; background: #fff; color: var(--teal-dark); cursor: pointer; }
.review-status { width: fit-content; margin-top: 4px; padding: 1px 6px; border-radius: 10px; background: #fff0d8; color: #79571b; font-size: 10px; font-weight: 800; }
.review-form-wrap { margin-top: 20px; border: 1px solid #b8c5cb; border-radius: 7px; background: #fff; }
.review-form-wrap summary { padding: 14px 17px; cursor: pointer; font-weight: 850; }
.review-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; padding: 0 17px 18px; }
.review-form label { display: grid; gap: 5px; font-size: 13px; font-weight: 750; }
.review-form label:nth-of-type(4), .review-form label:nth-of-type(5) { grid-column: 1/-1; }
.review-form input, .review-form select, .review-form textarea { width: 100%; padding: 9px 10px; border: 1px solid #9eacb5; border-radius: 5px; background: #fff; }
.review-form button { width: fit-content; min-height: 44px; padding: 8px 16px; border: 0; border-radius: 5px; background: var(--ink); color: #fff; cursor: pointer; font-weight: 850; }
.form-notice { padding: 10px 13px; border-left: 4px solid var(--green); background: #e6f3ec; }
.form-notice.error { border-color: var(--danger); background: #fff4f2; }
.empty-state { padding: 34px 0; color: var(--muted); }

.conversion-lp { background: #f4f9fd; }
.conversion-lp main { max-width: 100%; overflow-x: hidden; }
.lp-minimal-header { position: relative; z-index: 30; border-bottom: 1px solid #c6e0ee; background: #fff; }
.lp-minimal-header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-minimal-header img { width: 142px; height: auto; }
.lp-minimal-header span { display: flex; align-items: center; gap: 8px; color: var(--teal-dark); font-size: 13px; }
.lp-minimal-header b { min-width: 42px; padding: 4px 10px; border: 1px solid #84bedd; border-radius: 999px; background: #eaf7fd; color: #176b9b; font-size: 11px; text-align: center; }
.lp-hero { --hero-accent: #258fc8; position: relative; min-height: 500px; display: flex; align-items: center; isolation: isolate; overflow: hidden; background: #cceafb var(--lp-image) center/cover no-repeat; }
.lp-shade { z-index: -1; background: linear-gradient(90deg, rgba(232,248,255,.98) 0%, rgba(232,248,255,.91) 39%, rgba(232,248,255,.25) 70%, rgba(232,248,255,.08) 100%), linear-gradient(0deg, rgba(18,111,157,.24), transparent 42%); }
.lp-hero-copy { min-height: 500px; display: flex; align-items: center; padding-block: 44px; color: var(--ink); }
.lp-hero-panel { width: min(620px,61%); padding: 30px 32px; border: 1px solid rgba(81,158,199,.42); border-left: 5px solid var(--hero-accent); border-radius: 5px 18px 18px 5px; background: rgba(255,255,255,.9); box-shadow: 0 22px 60px rgba(24,96,132,.2); backdrop-filter: blur(10px); }
.lp-hero-kicker { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; color: #477083; font-size: 12px; font-weight: 850; letter-spacing: .04em; }
.lp-hero-kicker span { display: inline-grid; place-items: center; min-width: 42px; height: 24px; border-radius: 999px; background: #176b9b; color: #fff; font-size: 10px; font-weight: 950; letter-spacing: .1em; }
.lp-hero h1 { max-width: 760px; margin-bottom: 14px; color: #102b3b; font-size: 50px; line-height: 1.13; letter-spacing: -.025em; }
.lp-hero h1 em { color: #1478ad; font-style: normal; }
.lp-hero .lead { max-width: 570px; margin-bottom: 15px; color: #355a6c; font-size: 16px; line-height: 1.8; }
.lp-hero-meta { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-hero-meta span { padding: 5px 9px; border: 1px solid #acd4e8; border-radius: 999px; background: #effaff; color: #315d72; font-size: 11px; font-weight: 750; }
.lp-section-heading { margin-bottom: 20px; }
.lp-section-heading .section-intro { max-width: 720px; margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.lp-compare { padding-block: 28px 34px; }
.lp-compare-scroll { max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; border: 1px solid #c6dfe9; border-radius: 10px; background: #fff; box-shadow: 0 10px 28px rgba(24,96,132,.08); }
.lp-compare-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 13px; }
.lp-compare-table th { padding: 11px 12px; background: #eaf6fc; color: #315d72; font-size: 11px; text-align: left; white-space: nowrap; }
.lp-compare-table td { padding: 12px; border-top: 1px solid #dce9ef; color: #405660; vertical-align: middle; }
.lp-compare-table td:first-child { color: #176b9b; white-space: nowrap; }
.lp-compare-table td:nth-child(2) { min-width: 190px; }
.lp-compare-table td:nth-child(3) { min-width: 130px; white-space: nowrap; }
.lp-compare-table td:nth-child(4) { min-width: 210px; }
.lp-compare-game { display: grid; grid-template-columns: 44px minmax(0,1fr); align-items: center; gap: 9px; }
.lp-compare-game a { display: block; width: 44px; height: 44px; border-radius: 9px; }
.lp-compare-game img { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; }
.lp-compare-table td:last-child a { display: inline-grid; place-items: center; min-width: 92px; min-height: 38px; padding: 6px 10px; border-radius: 7px; background: #f0642f; color: #fff; font-weight: 900; white-space: nowrap; box-shadow: 0 5px 14px rgba(221,82,36,.22); }
.lp-game-anchor-nav { display: grid; gap: 9px; margin-top: 14px; padding: 13px 14px; border: 1px solid #c6dfe9; border-radius: 10px; background: #fff; }
.lp-game-anchor-nav > strong { color: #315d72; font-size: 12px; }
.lp-game-anchor-list { display: flex; flex-wrap: wrap; gap: 7px; }
.lp-game-anchor-list a { min-height: 34px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border: 1px solid #add3e6; border-radius: 999px; background: #eff9fe; color: #245f7d; font-size: 12px; font-weight: 800; }
.lp-game-anchor-list b { color: #1381b9; }
.lp-ranking-list { display: grid; gap: 28px; }
.lp-game-card { position: relative; min-width: 0; display: grid; grid-template-columns: minmax(310px,42%) minmax(0,1fr); overflow: hidden; scroll-margin-top: 18px; border: 1px solid #c6d5dc; border-radius: 14px; background: #fff; box-shadow: 0 14px 36px rgba(22,45,56,.09); }
.lp-game-card.no-eyecatch { grid-template-columns: 1fr; }
.lp-game-rank { position: absolute; top: 14px; left: 14px; z-index: 2; width: 62px; height: 62px; display: flex; align-items: baseline; justify-content: center; gap: 2px; padding-top: 11px; border: 3px solid #fff; border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 0 5px 16px rgba(16,32,40,.28); }
.lp-game-rank span { font-size: 28px; font-weight: 950; line-height: 1; }
.lp-game-rank small { font-size: 11px; font-weight: 850; }
.lp-game-visuals { min-width: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; background: #dfe8ec; }
.lp-game-eyecatch { min-height: 100%; overflow: hidden; background: #dfe8ec; }
.lp-game-eyecatch img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.lp-game-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 2px; padding-top: 2px; background: #fff; }
.lp-game-gallery img { width: 100%; height: 112px; object-fit: cover; }
.lp-game-body { min-width: 0; display: flex; flex-direction: column; padding: 26px 28px 24px; }
.lp-game-heading { display: grid; grid-template-columns: 76px minmax(0,1fr); align-items: center; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid #e0e7ea; }
.lp-game-icon-link { display: block; width: 76px; height: 76px; border-radius: 16px; }
.lp-game-icon { width: 76px; height: 76px; border-radius: 16px; object-fit: cover; box-shadow: 0 5px 15px rgba(17,38,48,.16); }
.lp-game-catch { margin: 0 0 3px; color: var(--coral); font-size: 12px; font-weight: 850; }
.lp-game-heading h3 { margin: 0; font-size: 25px; line-height: 1.35; }
.lp-game-metrics { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 8px; }
.lp-game-metrics > span { padding: 4px 8px; border-radius: 4px; background: #edf4f7; color: #3c5663; font-size: 12px; font-weight: 750; }
.lp-game-metrics .rating { background: #fff5d8; color: #8a5b00; }
.lp-game-overview { padding-block: 18px 14px; }
.lp-game-overview h4, .lp-featured-review h4 { margin: 0 0 7px; font-size: 15px; }
.lp-game-overview > p { margin: 0; color: #40535d; font-size: 15px; line-height: 1.8; }
.lp-editorial-note { margin-top: 12px !important; padding: 11px 13px; border-left: 4px solid var(--teal); background: #f0f8fb; }
.lp-editorial-note b { display: block; margin-bottom: 3px; color: var(--teal-dark); font-size: 12px; }
.lp-featured-review { margin: 0 0 18px; padding: 14px 16px; border: 1px solid #eadcae; border-radius: 8px; background: #fffaf0; }
.lp-featured-review > div { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 7px; color: #75520d; font-size: 12px; }
.lp-featured-review p { margin: 0; color: #4c5154; font-size: 14px; line-height: 1.75; }
.lp-featured-review cite { display: block; margin-top: 5px; color: #78868d; font-size: 11px; font-style: normal; text-align: right; }
.lp-game-footer { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-top: auto; padding-top: 16px; border-top: 1px solid #e0e7ea; }
.lp-game-footer > small { color: #78868d; font-size: 11px; }
.lp-game-cta { min-width: 225px; min-height: 56px; display: grid; gap: 0; border-color: #d94d27; background: linear-gradient(135deg,#ff7b36,#e9532d); color: #fff; text-align: center; box-shadow: 0 9px 22px rgba(221,82,36,.24); }
.lp-game-cta strong { font-size: 16px; }
.lp-game-cta small { font-size: 10px; font-weight: 650; opacity: .82; }
.lp-trust-band { background: #eaf6fb; border-block: 1px solid #c5dde8; overflow: hidden; }
.lp-trust-layout { min-height: 330px; display: grid; grid-template-columns: 300px minmax(0,1fr); align-items: center; gap: 58px; }
.lp-trust-layout img { width: 280px; max-height: 320px; align-self: end; object-fit: contain; }
.lp-trust-layout p:not(.eyebrow) { max-width: 710px; color: #425b67; font-size: 16px; line-height: 1.9; }
.lp-guide-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.lp-guide-grid article { min-height: 220px; padding: 24px; border: 1px solid #ccd9df; border-radius: 10px; background: #fff; }
.lp-guide-grid span { color: var(--teal); font-size: 13px; font-weight: 950; letter-spacing: .08em; }
.lp-guide-grid h3 { margin: 10px 0 8px; font-size: 19px; }
.lp-guide-grid p { margin: 0; color: #566a75; font-size: 14px; line-height: 1.8; }
.lp-faq-list { display: grid; gap: 10px; }
.lp-faq-list details { border: 1px solid #c6dbe5; border-radius: 9px; background: #fff; }
.lp-faq-list summary { position: relative; padding: 16px 48px 16px 18px; color: #244e63; cursor: pointer; font-weight: 850; list-style: none; }
.lp-faq-list summary::-webkit-details-marker { display: none; }
.lp-faq-list summary::after { content: '+'; position: absolute; top: 50%; right: 18px; color: #2085b8; font-size: 22px; transform: translateY(-50%); }
.lp-faq-list details[open] summary::after { content: '−'; }
.lp-faq-list p { margin: 0; padding: 0 18px 17px; color: #536b77; font-size: 14px; line-height: 1.85; }
.lp-final { text-align: center; }
.lp-final p { color: var(--muted); }
.lp-final .primary-action { margin-inline: auto; }
.lp-final-action { border-color: #d94d27; background: linear-gradient(135deg,#ff7b36,#e9532d); color: #fff; box-shadow: 0 9px 22px rgba(221,82,36,.24); }
.lp-minimal-footer { padding-block: 28px; border-top: 1px solid #0f5278; background: #176b9b; color: #fff; }
.lp-minimal-footer .wrap { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 28px; }
.lp-minimal-footer strong { font-size: 20px; letter-spacing: .05em; }
.lp-minimal-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; }
.lp-minimal-footer nav a { color: #eefaff; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }
.lp-minimal-footer nav a:hover { color: #fff; }
.lp-minimal-footer small { color: #d8f1fc; font-size: 11px; line-height: 1.7; text-align: right; }

.free-hero { position: relative; min-height: 600px; display: flex; align-items: center; isolation: isolate; overflow: hidden; background: var(--ink); }
.free-hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.free-hero-shade { background: linear-gradient(90deg, rgba(12,22,28,.16), rgba(12,22,28,.03) 58%, transparent 82%); }
.free-hero-copy { padding-block: 74px; color: var(--ink); }
.free-hero h1 { font-size: 58px; }
.free-hero .lead { color: #344451; }
.free-jump-nav { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.free-jump-nav .wrap { min-height: 58px; display: grid; grid-template-columns: repeat(4,1fr); }
.free-jump-nav button, .free-jump-nav a { display: grid; place-items: center; border: 0; border-right: 1px solid var(--line); background: transparent; cursor: pointer; font-weight: 800; }
.free-jump-nav button:first-child { border-left: 1px solid var(--line); }
.free-category-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.free-category-grid a { min-height: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: #fff; }
.free-category-grid img { width: 100%; height: 128px; object-fit: cover; opacity: 1; transition: transform .22s ease; }
.free-category-grid a:hover img { transform: scale(1.035); }
.free-category-grid span { min-height: 64px; display: grid; align-content: center; padding: 8px 12px; background: #fff; color: var(--ink); }
.free-category-grid strong, .free-category-grid small { display: block; }
.free-category-grid small { color: var(--muted); }

.pickup-band { padding-block: 16px; background: #f6f8f9; border-block: 1px solid var(--line); }
.portal-pickup-wrap { display: block; }
.portal-pickup { min-height: 90px; display: grid; grid-template-columns: 150px minmax(0,1fr) 44px; align-items: center; overflow: hidden; border: 1px solid #bdcbd1; border-radius: 7px; background: #fff; color: var(--ink); transition: border-color .18s ease, background .18s ease; }
.portal-pickup:hover { border-color: var(--teal); background: #fbfdfd; }
.portal-pickup-media { height: 90px; overflow: hidden; background: #e8f2f1; }
.portal-pickup-scene { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.portal-pickup-copy { min-width: 0; display: grid; gap: 2px; padding: 11px 18px; }
.portal-pickup-copy small { color: var(--coral); font-size: 10px; font-weight: 900; }
.portal-pickup-copy strong { font-size: 17px; line-height: 1.45; }
.portal-pickup-icon { display: grid; place-items: center; color: var(--teal-dark); }
.portal-pickup-icon .icon { width: 20px; height: 20px; }

.ranking-switcher, .lp-genre-tabs { display: flex; gap: 7px; margin-bottom: 18px; padding-bottom: 5px; overflow-x: auto; }
.ranking-switcher button, .lp-genre-tabs button { flex: 0 0 auto; min-width: 82px; min-height: 40px; padding: 7px 12px; border: 1px solid #aebbc3; border-radius: 5px; background: #fff; color: #344451; cursor: pointer; font-size: 13px; font-weight: 850; }
.ranking-switcher button[aria-selected="true"], .lp-genre-tabs button[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.home-ranking-results, .free-ranking-results { min-height: 260px; transition: opacity .15s ease; }
.home-ranking-results[aria-busy="true"], .free-ranking-results[aria-busy="true"] { opacity: .38; pointer-events: none; }
.ranking-result-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.ranking-result-summary { color: var(--muted); font-size: 12px; font-weight: 750; }
.ranking-more-link { color: var(--teal-dark); border-bottom: 2px solid var(--teal); font-size: 13px; font-weight: 850; }
.free-ranking-section .lp-rank-item > .primary-action { gap: 6px; }

.library-head { background: #eef8fd; }
.privacy-note { width: fit-content; display: flex; align-items: center; gap: 7px; margin: 4px 0 0; padding: 8px 11px; border-left: 3px solid var(--teal); background: #fff; color: var(--muted); font-size: 12px; }
.privacy-note .icon { color: var(--teal); }
.library-toolbar { display: grid; grid-template-columns: repeat(3,minmax(0,220px)); gap: 8px; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.library-toolbar button { min-height: 50px; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 8px 14px; border: 0; border-bottom: 3px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font-weight: 800; }
.library-toolbar button[aria-selected="true"] { border-bottom-color: var(--teal); color: var(--teal-dark); }
.library-toolbar button b { min-width: 23px; min-height: 23px; display: grid; place-items: center; border-radius: 12px; background: #e6ecef; color: var(--ink); font-size: 11px; }
.library-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.library-card { min-width: 0; display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.library-card-image, .library-card-image img { width: 92px; height: 92px; border-radius: 7px; }
.library-card-image { overflow: hidden; background: #e5ecef; }
.library-card-image img { object-fit: cover; }
.library-card-body { min-width: 0; }
.library-card h2 { margin-bottom: 5px; font-size: 17px; overflow-wrap: anywhere; }
.library-card p { display: -webkit-box; margin-bottom: 10px; overflow: hidden; color: var(--muted); font-size: 12px; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.library-card-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.library-card-actions a, .library-card-actions button { min-height: 31px; display: inline-flex; align-items: center; padding: 4px 8px; border: 1px solid #9aabb4; border-radius: 4px; background: #fff; color: var(--teal-dark); cursor: pointer; font-size: 11px; font-weight: 750; }
.library-card-actions button { color: #8f4b49; }
.library-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 16px; }
.library-panel-heading p { margin: 0; color: var(--muted); font-size: 13px; }
.text-button { display: inline-flex; align-items: center; gap: 5px; border: 0; background: transparent; color: #8f4b49; cursor: pointer; font-size: 12px; font-weight: 750; }
.library-empty { min-height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; text-align: center; }
.library-empty[hidden] { display: none; }
.library-empty > .icon { width: 46px; height: 46px; margin-bottom: 12px; color: #aab8bf; }
.library-empty strong, .library-empty span { display: block; }
.library-empty span { margin-top: 4px; color: var(--muted); font-size: 13px; }
.library-empty a { margin-top: 15px; color: var(--teal-dark); border-bottom: 2px solid var(--teal); font-weight: 800; }

.related-category-links { display: flex; flex-wrap: wrap; gap: 7px; margin: -8px 0 20px; }
.related-category-links a { min-height: 34px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border: 1px solid #b6c5cb; border-radius: 17px; background: #fff; color: #344451; font-size: 12px; font-weight: 750; }
.related-category-links a:hover { border-color: var(--teal); background: #ebf7fd; }
.related-category-links .icon { color: var(--teal); }
.next-discovery { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.next-discovery a { min-height: 72px; display: grid; grid-template-columns: 30px minmax(0,1fr); align-items: center; gap: 10px; padding: 11px 13px; border: 1px solid var(--line); border-radius: 7px; background: #f8fafb; }
.next-discovery .icon { width: 23px; height: 23px; color: var(--teal); }
.next-discovery strong, .next-discovery small { display: block; }
.next-discovery strong { font-size: 13px; }
.next-discovery small { color: var(--muted); font-size: 10px; }

body.dialog-open { overflow: hidden; }
.share-dialog[hidden] { display: none; }
.share-dialog { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 18px; }
.share-dialog-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(13,24,30,.58); cursor: default; }
.share-dialog-panel { position: relative; z-index: 1; width: min(600px,100%); padding: 0 22px 22px; border-radius: 8px; background: #fff; box-shadow: 0 28px 80px rgba(8,18,24,.34); }
.share-dialog-panel > header { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); }
.share-dialog-panel h2 { font-size: 20px; }
.share-dialog-panel > header button { width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #f0f4f5; cursor: pointer; }
.share-game-title { margin: 16px 0 12px; color: #344451; font-size: 13px; font-weight: 750; }
.share-services { display: flex; gap: 14px; padding: 8px 0 18px; overflow-x: auto; }
.share-service { flex: 0 0 70px; display: grid; justify-items: center; gap: 6px; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: center; }
.share-service b { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: #e7eef0; font-size: 13px; }
.share-service b .icon { width: 22px; height: 22px; }
.share-service span { font-size: 10px; }
.share-line b { background: #06c755; color: #fff; font-size: 10px; }
.share-x b { background: #111; color: #fff; font-size: 20px; }
.share-facebook b { background: #1877f2; color: #fff; font-family: Arial,sans-serif; font-size: 25px; }
.share-mail b { background: #e6f2f8; color: var(--teal-dark); }
.share-copy-row { display: grid; grid-template-columns: minmax(0,1fr) auto; border: 1px solid #aebbc3; border-radius: 6px; overflow: hidden; }
.share-copy-row input { min-width: 0; height: 46px; padding: 8px 11px; border: 0; background: #f8fafb; color: #42515b; font-size: 12px; }
.share-copy-row button { min-width: 106px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: 0; border-left: 1px solid #aebbc3; background: #fff; color: var(--teal-dark); cursor: pointer; font-size: 12px; font-weight: 850; }

.new-game-dialog[hidden] { display: none; }
.new-game-dialog { position: fixed; inset: 0; z-index: 120; display: grid; place-items: center; padding: 18px; }
.new-game-dialog-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(13,24,30,.68); }
.new-game-dialog-panel { position: relative; z-index: 1; width: min(420px,100%); padding: 26px; border-top: 6px solid var(--teal); border-radius: 8px; background: #fff; box-shadow: 0 28px 80px rgba(8,18,24,.38); }
.new-game-dialog-close { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: #eef2f4; color: var(--ink); cursor: pointer; }
.new-game-dialog-panel > header { display: grid; grid-template-columns: 52px minmax(0,1fr); align-items: center; gap: 12px; padding-right: 34px; }
.new-game-dialog-panel > header > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff; }
.new-game-dialog-panel > header > span .icon { width: 25px; height: 25px; }
.new-game-dialog-panel .eyebrow { margin-bottom: 1px; }
.new-game-dialog-panel h2 { font-size: 24px; }
.new-game-dialog-panel > p { margin: 14px 0; color: var(--muted); font-size: 13px; }
.new-game-dialog-list { border-block: 1px solid var(--line); }
.new-game-dialog-list a { min-height: 64px; display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 8px 2px; border-bottom: 1px solid var(--line); }
.new-game-dialog-list a:last-child { border-bottom: 0; }
.new-game-dialog-list img { width: 48px; height: 48px; border-radius: 7px; object-fit: cover; }
.new-game-dialog-list span { min-width: 0; }
.new-game-dialog-list strong, .new-game-dialog-list small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.new-game-dialog-list strong { font-size: 13px; }
.new-game-dialog-list small { color: var(--green); font-size: 10px; }
.new-game-dialog-list b { padding: 2px 5px; border-radius: 3px; background: #e9f6fd; color: var(--teal-dark); font-size: 9px; }
.new-game-dialog-action { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; border: 2px solid var(--ink); border-radius: 6px; background: var(--teal); color: #fff; font-weight: 900; }
.app-settings-context { margin: 14px 14px 0; padding: 10px 12px; border-left: 4px solid var(--teal); background: #eaf6fc; color: var(--muted); font-size: 12px; }
.app-settings-context strong, .app-settings-context span { display: block; }
.app-settings-context strong { color: var(--ink); }

.site-footer { padding-block: 42px; border-top: 4px solid var(--teal); background: #173247; color: #fff; }
.footer-grid { display: grid; grid-template-columns: minmax(180px,.8fr) minmax(220px,1fr) minmax(320px,1.5fr); align-items: start; gap: 34px; }
.footer-brand { display: block; color: #fff; font-size: 20px; letter-spacing: 0; }
.footer-grid p, .footer-grid small { margin: 4px 0 0; color: #cbdce7; font-size: 12px; }
.footer-grid nav { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px 18px; font-size: 12px; }
.footer-grid nav a { display: inline-flex; align-items: center; gap: 5px; }
.footer-grid nav a:hover { color: var(--yellow); }
.footer-legal { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.footer-meta { grid-column: 1/-1; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.18); }

.app-settings-dialog[hidden] { display: none; }
.app-settings-dialog { position: fixed; inset: 0; z-index: 125; display: grid; place-items: center; padding: 18px; }
.app-settings-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(15,35,50,.68); }
.app-settings-panel { position: relative; z-index: 1; width: min(680px,100%); max-height: calc(100vh - 36px); overflow-y: auto; border-top: 6px solid var(--teal); border-radius: 8px; background: #fff; box-shadow: 0 28px 80px rgba(8,33,49,.32); }
.app-settings-panel > header { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.app-settings-panel > header h2 { font-size: 22px; }
.app-settings-panel > header .eyebrow { margin-bottom: 0; }
.app-settings-panel > header button { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: var(--surface); cursor: pointer; }
.app-install-row { display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; gap: 12px; margin: 18px; padding: 14px; border: 1px solid #abd4e9; border-radius: 7px; background: #edf8fe; }
.app-install-row > .icon { width: 30px; height: 30px; color: var(--teal-dark); }
.app-install-row strong, .app-install-row small { display: block; }
.app-install-row small { color: var(--muted); font-size: 11px; }
.app-install-row button, .app-settings-save { min-height: 42px; padding: 7px 15px; border: 1px solid var(--teal-dark); border-radius: 5px; background: var(--teal-dark); color: #fff; cursor: pointer; font-weight: 850; }
.app-install-row button:disabled { border-color: #9db0bd; background: #9db0bd; cursor: default; }
.app-settings-panel form { display: grid; gap: 14px; padding: 0 18px 20px; }
.app-settings-panel fieldset { display: grid; gap: 10px; margin: 0; padding: 13px; border: 1px solid var(--line); border-radius: 7px; }
.app-settings-panel legend { padding-inline: 5px; font-size: 13px; font-weight: 850; }
.setting-toggle { display: grid; grid-template-columns: 22px minmax(0,1fr); align-items: start; gap: 9px; cursor: pointer; }
.setting-toggle input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--teal-dark); }
.setting-toggle strong, .setting-toggle small { display: block; }
.setting-toggle small { color: var(--muted); font-size: 11px; }
.interest-options { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.interest-options label { min-width: 0; cursor: pointer; }
.interest-options input { position: absolute; opacity: 0; pointer-events: none; }
.interest-options span { min-height: 38px; display: grid; place-items: center; padding: 6px 8px; border: 1px solid #adc0cb; border-radius: 5px; background: #fff; font-size: 12px; font-weight: 750; }
.interest-options input:checked + span { border-color: var(--teal-dark); background: #e7f5fc; color: var(--teal-dark); }
.wifi-settings { background: #f3faf8; border-color: #b8ddcf !important; }
.wifi-settings legend { display: inline-flex; align-items: center; gap: 6px; color: #246c59; }
.reminder-time { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 9px; border-top: 1px solid #cce5dc; font-size: 12px; font-weight: 750; }
.reminder-time select { min-width: 92px; height: 40px; padding-inline: 9px; border: 1px solid #9cb8ad; border-radius: 5px; background: #fff; }
.app-settings-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.app-settings-disable { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 7px 15px; border: 1px solid #9aabb4; border-radius: 5px; background: #fff; color: var(--ink); cursor: pointer; font-weight: 800; }
.app-settings-disable .icon { width: 17px; height: 17px; }
.app-settings-save { min-width: 180px; }
.unread-page-head { border-bottom: 1px solid #c6dfed; background: #eef8fd; }
.unread-page-head .secondary-action { gap: 7px; }
.unread-heading-actions { display: flex; align-items: flex-end; gap: 12px; }
.unread-heading-actions > span { color: var(--muted); font-size: 13px; }
.unread-heading-actions button { min-height: 34px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border: 1px solid #9bb1bd; border-radius: 5px; background: #fff; color: var(--teal-dark); cursor: pointer; font-size: 11px; font-weight: 800; }
.unread-page-actions { display: flex; justify-content: center; margin-top: 28px; }
.unread-page-actions .primary-action { gap: 7px; }
.page-message { min-height: 55vh; padding-block: 90px; }
.back-to-top { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(23,33,43,.26); cursor: pointer; font-size: 22px; font-weight: 900; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.site-toast { position: fixed; left: 50%; bottom: 22px; z-index: 90; max-width: calc(100vw - 32px); padding: 9px 14px; border-radius: 5px; background: var(--ink); color: #fff; box-shadow: 0 8px 24px rgba(23,33,43,.28); font-size: 13px; font-weight: 750; opacity: 0; pointer-events: none; transform: translate(-50%, 10px); transition: opacity .18s ease, transform .18s ease; }
.site-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
button, a { -webkit-tap-highlight-color: transparent; }
button:active, .primary-action:active, .secondary-action:active, .card-play:active, .card-more:active { transform: scale(.97); }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(54,167,223,.35); outline-offset: 2px; }

@media (max-width: 960px) {
  .home-discovery-top, .catalog-hub-layout { grid-template-columns: 1fr; gap: 24px; }
  .home-quick-picks { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .home-quick-picks a { grid-template-columns: 90px minmax(0,1fr); }
  .home-quick-picks img { width: 90px; }
  .game-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .genre-visual-grid, .genre-theme-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-directory { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .free-category-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .rating-layout { grid-template-columns: 180px minmax(0,1fr); gap: 30px; }
  .catalog-controls { grid-template-columns: 1fr; gap: 20px; }
  .library-list { grid-template-columns: 1fr; }
  .lp-rank-item { grid-template-columns: 50px 112px minmax(0,1fr); }
  .lp-rank-item > .primary-action { grid-column: 3; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 24px,1160px); }
  .header-inner { min-height: 54px; gap: 9px; }
  .brand img { width: 108px; }
  .header-shortcuts > a { width: 36px; height: 36px; }
  .menu-toggle { width: 40px; height: 40px; }
  .site-menu { top: calc(100% + 6px); max-height: calc(100dvh - 66px); }
  h1 { font-size: 32px; }
  h2 { font-size: 23px; }
  .lead { font-size: 15px; }
  .home-discovery-hero { padding: 0 0 22px; }
  .home-discovery-art { height: 190px; }
  .home-discovery-art img { object-position: 69% center; }
  .home-discovery-hero > .wrap { padding-top: 24px; }
  .home-discovery-top { gap: 18px; }
  .home-discovery-top h1 { margin-bottom: 8px; font-size: 30px; }
  .home-discovery-top .lead { font-size: 14px; }
  .home-quick-heading { margin-top: 22px; padding-top: 16px; }
  .home-quick-heading a { font-size: 11px; }
  .home-quick-picks { display: flex; margin-inline: -12px; padding: 0 12px 4px; overflow-x: auto; }
  .home-quick-picks a { flex: 0 0 79%; grid-template-columns: 96px minmax(0,1fr); min-height: 84px; }
  .home-quick-picks img { width: 96px; }
  .home-quick-picks strong { font-size: 14px; }
  .home-quick-picks small { font-size: 10px; }
  .home-hero-visual { height: 190px; }
  .home-hero-content { padding-block: 25px 30px; }
  .home-discovery-layout { grid-template-columns: 1fr; gap: 20px; }
  .home-hero .lead { font-size: 14px; }
  .home-hero h1, .lp-hero h1, .free-hero h1 { font-size: 36px; }
  .home-hero h1 { font-size: 32px; }
  .hero-copy-panel { width: 100%; padding: 21px 18px; border-left-width: 3px; background: rgba(255,255,255,.94); backdrop-filter: blur(3px); }
  .search-form { grid-template-columns: minmax(0,1fr) 80px; }
  .search-form input, .search-form button { min-height: 50px; font-size: 14px; }
  .section { padding-block: 42px; }
  .section-heading { align-items: start; gap: 10px; }
  .section-heading .text-link { font-size: 12px; }
  .game-grid { grid-template-columns: 1fr; }
  .game-card { min-height: 154px; grid-template-columns: 92px minmax(0,1fr); gap: 13px; padding: 12px; }
  .game-card-media, .game-card-media img, .game-card .image-fallback { width: 92px; height: 92px; }
  .game-card h3 { font-size: 16px; }
  .game-card p:not(.publisher) { display: none; }
  .game-card .card-release-meta { display: flex; }
  .card-actions { grid-template-columns: 42px minmax(86px,1fr) 30px 30px; gap: 5px; margin-top: 5px; }
  .card-actions.no-store { grid-template-columns: 42px 30px 30px; }
  .card-more, .card-play { min-height: 30px; padding: 4px 9px; font-size: 11px; }
  .card-save, .card-compare { width: 30px; height: 30px; }
  .guide-layout { min-height: 0; grid-template-columns: 116px minmax(0,1fr); gap: 14px; padding-top: 28px; }
  .lp-trust-layout { min-height: 0; grid-template-columns: 132px minmax(0,1fr); gap: 14px; padding-top: 30px; }
  .lp-trust-layout img { width: 108px; max-height: 220px; }
  .guide-art-scene { width: 116px; height: 160px; }
  .guide-character { right: -34px; bottom: -10px; width: 150px; max-height: 210px; opacity: .15; }
  .guide-copy { grid-column: 2; grid-row: 1; padding: 0 0 28px; }
  .guide-layout h2, .lp-trust-layout h2 { font-size: 20px; }
  .guide-layout p:not(.eyebrow), .lp-trust-layout p:not(.eyebrow) { font-size: 13px; }
  .guide-actions { grid-column: 1/-1; margin-bottom: 26px; }
  .guide-actions .primary-action, .guide-actions .secondary-action { flex: 1; }
  .genre-visual-grid, .genre-theme-grid { grid-template-columns: 1fr; }
  .genre-visual img, .genre-theme img { height: 148px; }
  .page-head { padding-block: 38px; }
  .page-head h1 { font-size: 29px; }
  .sort-tabs { display: grid; grid-template-columns: repeat(2,1fr); }
  .catalog-hub-head { padding-block: 31px 26px; }
  .catalog-hub-head.is-compact { padding-block: 22px 18px; }
  .catalog-hub-head.is-compact .catalog-hub-layout { gap: 12px; }
  .catalog-hub-head.is-compact .catalog-hub-copy .lead { margin-bottom: 11px; }
  .catalog-hub-head.is-compact .compare-guide { display: none; }
  .catalog-hub-copy h1 { font-size: 30px; }
  .catalog-hub-copy .lead { font-size: 14px; }
  .compare-guide { min-height: 84px; grid-template-columns: 40px minmax(0,1fr) auto; gap: 10px; padding: 12px; }
  .compare-guide > span { width: 40px; height: 40px; }
  .compare-guide > a { grid-column: 3; }
  .catalog-discovery-bar { padding-block: 17px; }
  .discovery-chips { margin-inline: -12px; padding-inline: 12px; }
  .catalog-sort-tabs { display: flex; margin-inline: -12px; padding-inline: 12px; }
  .catalog-title-row { align-items: end; }
  .catalog-title-row h2 { font-size: 21px; }
  .catalog-controls { margin-bottom: 22px; padding-block: 18px; }
  .filter-chips { flex-wrap: nowrap; margin-inline: -12px; padding: 0 12px 5px; overflow-x: auto; }
  .filter-chips a { flex: 0 0 auto; }
  .catalog-result-summary { align-items: flex-start; }
  .link-band-inner { grid-template-columns: 1fr auto; }
  .link-band-inner p { grid-column: 1/-1; grid-row: 2; font-size: 13px; }
  .genre-hero { min-height: 400px; }
  .genre-hero-image { object-position: 60% 28%; }
  .genre-hero-shade { background: linear-gradient(0deg, rgba(231,247,255,.99) 0%, rgba(231,247,255,.96) 48%, rgba(231,247,255,.08) 78%), linear-gradient(90deg, rgba(231,247,255,.2), transparent 65%); }
  .genre-hero-layout { width: 100%; min-height: 400px; align-items: end; padding-bottom: 12px; }
  .genre-hero-copy { width: 100%; margin: 0; padding: 18px 17px; border: 1px solid #9fd0e7; border-top: 4px solid var(--hero-accent); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 12px 32px rgba(24,96,132,.16); backdrop-filter: blur(7px); }
  .genre-hero .eyebrow { margin-bottom: 7px; font-size: 9px; }
  .genre-hero h1 { margin-bottom: 8px; font-size: 29px; line-height: 1.2; }
  .genre-hero .lead { display: -webkit-box; margin-bottom: 12px; overflow: hidden; font-size: 13px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .genre-hero-actions { justify-content: space-between; }
  .related-genre-bar .wrap { justify-content: flex-start; }
  .genre-group { padding-block: 36px; }
  .genre-group-title { grid-template-columns: 110px minmax(0,1fr); gap: 14px; }
  .genre-group-title img { width: 110px; height: 90px; }
  .genre-group-title h2 { font-size: 20px; }
  .genre-group-title p { font-size: 12px; }
  .category-directory { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .category-directory a { min-height: 72px; padding: 10px; font-size: 13px; }
  .game-hero-layout { width: 100%; min-height: 0; display: block; padding: 0 0 20px; }
  .game-hero-media { width: 100%; min-height: 0; border: 0; border-radius: 0; }
  .game-hero-media img, .game-hero-media .image-fallback { width: 100%; height: 190px; min-height: 190px; object-fit: cover; }
  .game-hero-grid { display: block; width: min(100% - 24px,1160px); margin: 0 auto; padding-top: 14px; }
  .game-identity { display: grid; grid-template-columns: 78px minmax(0,1fr); align-items: start; gap: 13px; }
  .game-icon, .game-icon img, .game-icon .image-fallback { width: 78px; height: 78px; border-radius: 13px; }
  .game-icon { position: relative; z-index: 2; border: 3px solid #fff; box-shadow: 0 7px 20px rgba(23,33,43,.22); }
  .game-title-block { min-height: 112px; padding: 12px 13px; border: 1px solid #c7d5d9; border-radius: 8px; background: #fff; box-shadow: 0 7px 20px rgba(23,33,43,.1); }
  .game-title-block h1 { margin-bottom: 5px; font-size: 24px; line-height: 1.28; }
  .game-title-block .eyebrow { margin-bottom: 4px; font-size: 10px; }
  .game-hero-details { margin-top: 10px; padding: 13px; border: 1px solid #c7d5d9; border-top: 4px solid var(--teal); border-radius: 8px; background: #fff; }
  .game-hero-details .lead { display: -webkit-box; margin-bottom: 10px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; line-height: 1.65; }
  .publisher-large { font-size: 12px; }
  .hero-score-row { font-size: 11px; }
  .score-large { font-size: 21px; }
  .tag-list { flex-wrap: nowrap; gap: 6px; margin-block: 10px; overflow-x: auto; padding-bottom: 3px; }
  .tag-list a { flex: 0 0 auto; }
  .game-actions { display: grid; grid-template-columns: 1fr; margin-top: 4px; }
  .store-action { min-width: 0; }
  .game-sticky-cta-inner { width: 100%; min-height: 56px; gap: 8px; padding: 6px 10px; }
  .game-sticky-identity { grid-template-columns: 38px minmax(0,1fr); gap: 8px; }
  .game-sticky-identity img, .game-sticky-identity .image-fallback { width: 38px; height: 38px; }
  .game-sticky-identity strong { font-size: 12px; }
  .game-sticky-identity small { display: none; }
  .game-sticky-action { min-width: 116px; min-height: 40px; gap: 6px; padding-inline: 10px; }
  .game-sticky-action small { display: none; }
  .game-sticky-action strong { font-size: 12px; }
  .engagement-actions { width: min(100%,260px); gap: 7px; }
  .engagement-actions button { min-width: 0; padding: 0; }
  .detail-nav { width: 100%; justify-content: flex-start; padding-inline: 12px; }
  .detail-nav a { min-width: 104px; }
  .screenshot-lead { padding-top: 36px; }
  .screenshot-lead .section-heading { margin-bottom: 18px; }
  .screenshot-lead .section-intro { font-size: 12px; }
  .detail-layout { grid-template-columns: 1fr; gap: 26px; }
  .article-column p:not(.eyebrow) { font-size: 15px; }
  .article-column.is-collapsed { max-height: 315px; }
  .media-strip { grid-auto-columns: 76%; }
  .media-strip figure.is-landscape { grid-column: span 1; }
  .media-strip figcaption { font-size: 10px; }
  .swipe-hint { display: flex; }
  .quick-facts { grid-template-columns: 1fr; }
  .quick-facts article { min-height: 76px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .quick-facts article:last-child { border-bottom: 0; }
  .quick-facts strong { font-size: 17px; }
  .article-prose { padding-left: 13px; }
  .rating-layout { grid-template-columns: 1fr; gap: 22px; }
  .score-summary { min-height: 150px; }
  .score-summary strong { font-size: 54px; }
  .rating-bars { grid-template-columns: 1fr; }
  .review-list { grid-template-columns: 1fr; }
  .review-feed-compact { grid-template-columns: 1fr; }
  .review-directory .review-feed-item { display: block; }
  .review-directory .review-feed-game { min-height: 76px; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-discovery-cta > .wrap { min-height: 0; grid-template-columns: 38px minmax(0,1fr); gap: 12px; padding-block: 16px; }
  .review-discovery-cta > .wrap > span { width: 38px; height: 38px; }
  .review-discovery-cta p { display: none; }
  .review-discovery-cta a { grid-column: 2; width: fit-content; min-height: 34px; }
  .my-review-panel { grid-template-columns: auto minmax(0,1fr) auto; }
  .review-form { grid-template-columns: 1fr; }
  .review-form label { grid-column: 1 !important; }
  .lp-minimal-header-inner { min-height: 54px; }
  .lp-minimal-header img { width: 112px; }
  .lp-minimal-header span { justify-content: flex-end; font-size: 10px; line-height: 1.35; text-align: right; }
  .lp-minimal-header b { display: inline-grid; min-width: 38px; padding: 3px 9px; }
  .lp-hero { min-height: 410px; background-position: 58% top; background-size: auto 220px; background-repeat: no-repeat; background-color: #e8f7ff; }
  .free-hero { min-height: 500px; }
  .lp-shade { background: linear-gradient(0deg, rgba(232,248,255,1) 0%, rgba(232,248,255,.98) 55%, rgba(232,248,255,.08) 78%); }
  .lp-hero-copy { width: min(100% - 24px,1160px); min-height: 410px; align-items: end; padding-block: 170px 14px; }
  .lp-hero-panel { width: 100%; padding: 17px 16px; border: 1px solid #9fd0e7; border-top: 4px solid var(--hero-accent); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 12px 32px rgba(24,96,132,.16); backdrop-filter: blur(7px); }
  .lp-hero-kicker { margin-bottom: 7px; font-size: 9px; }
  .lp-hero-kicker span { min-width: 37px; height: 21px; font-size: 9px; }
  .lp-hero h1 { margin-bottom: 8px; font-size: 29px; line-height: 1.18; }
  .lp-hero .lead { display: -webkit-box; margin-bottom: 9px; overflow: hidden; font-size: 12px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .lp-hero-meta { gap: 5px; }
  .lp-hero-meta span { padding: 3px 7px; font-size: 9px; }
  .lp-section-heading { margin-bottom: 14px; }
  .lp-section-heading .section-intro { font-size: 12px; line-height: 1.7; }
  .lp-compare { padding-block: 16px 24px; }
  .lp-compare-scroll { width: 100%; max-width: 100%; }
  .lp-compare-table { min-width: 620px; font-size: 12px; }
  .lp-compare-table th, .lp-compare-table td { padding: 9px; }
  .lp-game-anchor-nav { margin-top: 10px; padding: 11px 10px; overflow: hidden; }
  .lp-game-anchor-list { flex-wrap: nowrap; overflow-x: auto; overscroll-behavior-inline: contain; padding-bottom: 3px; }
  .lp-game-anchor-list a { flex: 0 0 auto; min-height: 32px; font-size: 11px; }
  .lp-ranking-list { gap: 18px; }
  .lp-game-card { width: 100%; min-width: 0; grid-template-columns: minmax(0,1fr); border-radius: 10px; }
  .lp-game-rank { top: 9px; left: 9px; width: 46px; height: 46px; padding-top: 8px; }
  .lp-game-rank span { font-size: 21px; }
  .lp-game-visuals { width: 100%; min-width: 0; }
  .lp-game-eyecatch { min-height: 0; }
  .lp-game-eyecatch img { width: 100%; height: auto; min-height: 0; aspect-ratio: 16/9; object-fit: cover; object-position: center; }
  .lp-game-gallery { width: 100%; min-width: 0; }
  .lp-game-gallery img { height: auto; aspect-ratio: 16/9; }
  .lp-game-body { padding: 18px 16px 16px; }
  .lp-game-heading { grid-template-columns: 66px minmax(0,1fr); gap: 12px; padding-bottom: 14px; }
  .lp-game-icon-link { width: 66px; height: 66px; border-radius: 13px; }
  .lp-game-icon { width: 66px; height: 66px; border-radius: 13px; }
  .lp-game-heading h3 { font-size: 20px; }
  .lp-game-catch { font-size: 11px; }
  .lp-game-metrics { gap: 5px; }
  .lp-game-metrics > span { padding: 3px 6px; font-size: 10px; }
  .lp-game-overview { padding-block: 15px 12px; }
  .lp-game-overview > p { font-size: 14px; }
  .lp-featured-review { padding: 12px 13px; }
  .lp-featured-review p { font-size: 13px; }
  .lp-game-footer { display: grid; grid-template-columns: 1fr; align-items: stretch; gap: 10px; }
  .lp-game-footer > small { text-align: center; }
  .lp-game-cta { width: 100%; min-width: 0; }
  .lp-guide-grid { grid-template-columns: 1fr; gap: 10px; }
  .lp-guide-grid article { min-height: 0; padding: 18px; }
  .lp-minimal-footer .wrap { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .lp-minimal-footer nav { gap: 10px 15px; }
  .lp-minimal-footer small { text-align: center; }
  .free-jump-nav { top: 0; }
  .free-jump-nav .wrap { width: 100%; grid-template-columns: repeat(2,1fr); }
  .free-jump-nav button, .free-jump-nav a { min-height: 44px; border-bottom: 1px solid var(--line); font-size: 12px; }
  .free-category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .free-category-grid img { height: 110px; }
  .pickup-band { padding-block: 10px; }
  .portal-pickup { min-height: 78px; grid-template-columns: 92px minmax(0,1fr) 32px; }
  .portal-pickup-media { height: 78px; }
  .portal-pickup-copy { padding: 9px 10px; }
  .portal-pickup-copy small { font-size: 9px; }
  .portal-pickup-copy strong { font-size: 13px; line-height: 1.45; }
  .portal-pickup-icon .icon { width: 17px; height: 17px; }
  .ranking-sort-tabs { display: flex; flex-wrap: nowrap; padding-bottom: 5px; overflow-x: auto; }
  .ranking-sort-tabs a { flex: 0 0 auto; }
  .related-heading { display: grid; grid-template-columns: 1fr; }
  .related-heading .text-link { width: fit-content; }
  .ranking-switcher, .lp-genre-tabs { margin-inline: -12px; padding-inline: 12px; }
  .ranking-switcher button, .lp-genre-tabs button { min-width: 76px; min-height: 38px; padding-inline: 10px; font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid nav { grid-template-columns: repeat(2,1fr); }
  .footer-legal { padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .footer-meta { grid-column: 1; }
  .back-to-top { right: 12px; bottom: 12px; width: 44px; height: 44px; }
  .library-head .lead { margin-bottom: 14px; }
  .library-toolbar { grid-template-columns: repeat(3,1fr); }
  .library-toolbar button { min-width: 0; padding-inline: 5px; font-size: 11px; }
  .library-toolbar button .icon { display: none; }
  .library-card { grid-template-columns: 78px minmax(0,1fr); gap: 11px; padding: 11px; }
  .library-card-image, .library-card-image img { width: 78px; height: 78px; }
  .library-card h2 { font-size: 15px; }
  .library-card p { display: none; }
  .library-card-actions { gap: 5px; }
  .library-card-actions a, .library-card-actions button { min-height: 29px; padding-inline: 6px; font-size: 10px; }
  .site-toast { bottom: 68px; }
  .compare-tray { bottom: 10px; width: calc(100vw - 20px); min-height: 58px; grid-template-columns: 30px auto minmax(0,1fr) 34px auto; gap: 7px; padding: 8px; }
  .compare-tray > .compare-tray-toggle { width: 30px; height: 34px; }
  .compare-tray-games span { width: 32px; height: 32px; }
  .compare-tray-copy strong { white-space: nowrap; font-size: 11px; }
  .compare-tray-copy small { display: none; }
  .compare-tray > button { width: 34px; height: 34px; display: grid; }
  .compare-tray > a { min-height: 38px; padding-inline: 10px; font-size: 11px; }
  .compare-tray.is-collapsed { left: auto; right: 10px; width: auto; max-width: calc(100vw - 20px); min-height: 46px; grid-template-columns: 30px auto; padding: 5px 7px; transform: none; }
  .compare-tray.is-collapsed .compare-tray-toggle .icon { transform: rotate(180deg); }
  .compare-tray.is-collapsed .compare-tray-copy, .compare-tray.is-collapsed > button:not(.compare-tray-toggle), .compare-tray.is-collapsed > a { display: none; }
  .compare-tray.is-collapsed .compare-tray-games span { width: 30px; height: 30px; }
  .compare-tray.is-collapsed .compare-tray-games span:nth-child(n+4) { display: none; }
  body:has(.compare-tray:not([hidden])) .back-to-top { bottom: 78px; }
  .compare-page-head-inner { grid-template-columns: 1fr; align-items: start; gap: 15px; }
  .compare-page-head .lead { margin-bottom: 0; }
  .compare-page-head .page-share-action { width: fit-content; }
  .compare-page { width: 100%; padding-inline: 12px; overflow: hidden; }
  .compare-swipe-cue { display: flex; align-items: center; gap: 6px; margin: 0 0 8px; color: var(--teal-dark); font-size: 11px; font-weight: 850; }
  .compare-swipe-cue .icon { animation: compare-cue 1.1s ease-in-out 2; }
  .compare-scroll-shell { margin-inline: -12px; padding-inline: 12px; }
  .compare-table { width: max-content; min-width: 100%; grid-template-columns: repeat(var(--compare-count),244px); padding-right: 36px; scroll-snap-type: x proximity; }
  .compare-column { min-width: 244px; padding: 11px; scroll-snap-align: start; }
  .compare-game-image, .compare-game-image img, .compare-game-image .image-fallback { width: 82px; height: 82px; }
  .compare-column h2 { font-size: 14px; }
  .compare-column .compare-summary { display: none; }
  .compare-tags { min-height: 52px; font-size: 10px; }
  .compare-empty { min-height: 280px; padding-inline: 18px; }
  .next-discovery { grid-template-columns: 1fr; }
  .share-dialog { place-items: end center; padding: 0; }
  .share-dialog-panel { width: 100%; padding: 0 14px 18px; border-radius: 8px 8px 0 0; }
  .share-dialog-panel > header { min-height: 56px; }
  .share-services { gap: 9px; }
  .share-copy-row button { min-width: 86px; }
  .new-game-dialog { place-items: end center; padding: 0; }
  .new-game-dialog-panel { width: 100%; padding: 22px 16px 16px; border-radius: 8px 8px 0 0; }
  .new-game-dialog-panel > header { grid-template-columns: 46px minmax(0,1fr); }
  .new-game-dialog-panel > header > span { width: 46px; height: 46px; }
  .new-game-dialog-panel h2 { font-size: 20px; }
  .app-settings-dialog { place-items: end center; padding: 0; }
  .app-settings-panel { width: 100%; max-height: 92vh; border-radius: 8px 8px 0 0; }
  .app-install-row { grid-template-columns: 34px minmax(0,1fr) auto; margin: 14px; padding: 12px; }
  .app-install-row > .icon { width: 26px; height: 26px; }
  .app-install-row div strong { font-size: 13px; }
  .interest-options { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .app-settings-actions { display: grid; grid-template-columns: 1fr; }
  .app-settings-disable, .app-settings-save { width: 100%; min-width: 0; }
  .unread-heading-actions { width: 100%; align-items: center; justify-content: space-between; }
  .unread-heading-actions button { flex: 0 0 auto; }
}

@media (max-width: 360px) {
  .brand img { width: 96px; }
  .header-shortcuts { gap: 4px; }
  .header-shortcuts > a { width: 34px; height: 34px; }
  .header-inner { gap: 7px; }
  .game-card { grid-template-columns: 78px minmax(0,1fr); gap: 11px; }
  .game-card-media, .game-card-media img, .game-card .image-fallback { width: 78px; height: 78px; }
  .card-actions { grid-template-columns: 36px minmax(76px,1fr) 28px 28px; gap: 4px; }
  .card-actions.no-store { grid-template-columns: 36px 28px 28px; }
  .card-more, .card-play { min-height: 28px; padding-inline: 5px; font-size: 10px; }
  .card-save, .card-compare { width: 28px; height: 28px; }
}

@keyframes compare-cue {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
