:root {
  --background: #f6f4ef;
  --surface: #ffffff;
  --surface-muted: #efece5;
  --text: #211f1b;
  --text-muted: #6d675f;
  --line: #ded9d0;
  --brand: #e72f3b;
  --brand-dark: #b71927;
  --android: #176f4a;
  --ios: #151515;
  --brand-soft: #fff0f0;
  --radius-small: 3px;
  --radius: 5px;
  --radius-large: 7px;
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

img {
  max-width: 100%;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.site-header {
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 35%);
  background: #fff;
}

.site-header__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.brand {
  display: block;
  align-items: center;
}

.brand img {
  display: block;
  width: min(48vw, 180px);
  height: auto;
}

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
}

.header-search span:first-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

.header-search span:last-child {
  display: none;
}

.global-navigation {
  border-top: 1px solid var(--line);
  background: #fff;
}

.global-navigation > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  background: var(--line);
}

.global-navigation a {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.global-navigation a:hover,
.global-navigation a:focus-visible {
  color: var(--brand);
  background: #fff5f5;
}

.site-frame {
  min-width: 0;
}

.site-main {
  min-width: 0;
}

.primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 3px;
  color: #fff;
  background: var(--brand);
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.page-shell,
.article-shell {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.page-shell {
  padding: 18px 0 40px;
}

.content-section + .content-section,
.content-section + .genre-section,
.genre-section + .home-about {
  margin-top: 32px;
}

.home-feature {
  position: relative;
  display: grid;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.home-feature__image {
  position: relative;
  z-index: 2;
  display: block;
  aspect-ratio: 8 / 5;
  min-height: 0;
  background: var(--surface-muted);
}

.home-feature__image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 5;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.home-feature__body {
  padding: 16px;
}

.home-topic-label {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #fff;
  background: var(--brand);
  font-size: 11px;
  font-weight: 900;
}

.home-feature h2 {
  margin: 0;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.home-feature h2 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.home-feature h2 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.home-feature__catch {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0;
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-feature__body > p:not(.home-topic-label, .home-feature__catch) {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-feature .primary-link {
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.home-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 32px;
}

.home-topics article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.home-topics article > span {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 2px;
  color: #fff;
  background: var(--brand);
  font-size: 9px;
  font-weight: 900;
}

.home-topics a {
  display: block;
  height: 100%;
}

.home-topics img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-topics h2 {
  margin: 0;
  padding: 10px 11px 13px;
  font-size: 12px;
  line-height: 1.55;
}

.home-genres .genre-directory-grid__visual {
  aspect-ratio: 16 / 10;
}

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

.section-heading h2,
.page-heading h1 {
  margin: 5px 0 0;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.section-heading > a {
  flex: 0 0 auto;
  border-bottom: 1px solid;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.review-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.article-card {
  position: relative;
  display: grid;
  grid-template-columns: min(42vw, 156px) minmax(0, 1fr);
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-card__image {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd8cf, #f5f2ec);
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__image picture,
.review-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.article-card--devpost .article-card__image {
  background: #fff;
}

.article-card--devpost .article-card__image img {
  padding: 10px;
  object-fit: contain;
}

.article-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #a7a096;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.article-card__body {
  min-width: 0;
  padding: 12px;
}

.article-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.article-card__terms a,
.article-card__terms span {
  padding: 3px 7px;
  border-radius: 2px;
  color: var(--brand-dark);
  background: #fff0f0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.article-card__terms a {
  position: relative;
  z-index: 2;
}

.article-card__developer {
  display: block;
  overflow: hidden;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-card h2,
.article-card h4 {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-card h2 a::after,
.article-card h4 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.article-card h2 a:focus-visible::after,
.article-card h4 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.article-card__body > p {
  display: none;
}

.article-card time {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 10px;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: min(42vw, 156px) minmax(0, 1fr);
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.review-card__image {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, #ddd8cf, #f5f2ec);
}

.review-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #a7a096;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.review-card__body {
  min-width: 0;
  padding: 12px;
}

.review-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.review-card__terms a,
.review-article__terms a {
  border-radius: 2px;
  color: var(--brand-dark);
  background: #fff0f0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.review-card__terms a {
  position: relative;
  z-index: 2;
  padding: 3px 7px;
}

.review-card h2 {
  display: -webkit-box;
  overflow: hidden;
  margin: 8px 0 6px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-card h2 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.review-card h2 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.review-card__body > p {
  display: none;
}

.review-card__metadata {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 9px;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 10px;
}

.review-card__metadata > span:not(.rating-score) {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rating-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9b6100;
  line-height: 1;
}

.rating-score__stars {
  display: inline-block;
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #f0a600 0 var(--rating-fill),
      #d7d1c6 var(--rating-fill) 100%
    );
  background-clip: text;
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
  -webkit-background-clip: text;
}

.rating-score strong {
  font-size: 15px;
}

.rating-score--compact {
  gap: 5px;
}

.rating-score--compact .rating-score__stars {
  font-size: 12px;
  letter-spacing: 0;
}

.rating-score--compact strong {
  font-size: 11px;
}

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

.home-latest-information {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-latest-information li + li {
  border-top: 1px solid var(--line);
}

.home-latest-information article {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
}

.home-latest-information img {
  width: 64px;
  height: 64px;
  border-radius: 0;
  object-fit: cover;
}

.home-latest-information div > span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 2px 6px;
  border-radius: 2px;
  color: #fff;
  background: var(--brand);
  font-size: 9px;
  font-weight: 800;
}

.home-latest-information h2 {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.5;
}

.home-latest-information h2 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.home-latest-information h2 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.home-latest-information time {
  color: var(--text-muted);
  font-size: 10px;
}

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

.home-preregistration-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.home-preregistration-grid article > a {
  display: block;
}

.home-preregistration-grid article > a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.home-preregistration-grid article > a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.home-preregistration-grid img,
.home-preregistration-grid article > a > span {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  place-items: center;
  background: var(--surface-muted);
  object-fit: cover;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
}

.home-preregistration-grid h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 54px;
  margin: 0;
  padding: 9px 10px 4px;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-preregistration-grid p {
  margin: 0;
  padding: 0 10px 10px;
  color: var(--text-muted);
  font-size: 10px;
}

.home-ranking-groups {
  display: grid;
  gap: 30px;
}

.home-ranking-group {
  min-width: 0;
}

.home-ranking-group > h2 {
  margin: 0 0 10px;
  font-size: 17px;
}

.home-ranking-cards {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: clamp(148px, 42vw, 168px);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--brand) var(--surface-muted);
  scrollbar-width: thin;
  scroll-snap-type: inline mandatory;
}

.home-ranking-cards:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.home-ranking-cards > article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  padding: 0 0 10px;
  border: 0;
  border-top: 3px solid var(--text);
  border-radius: 0;
  background: transparent;
  scroll-snap-align: start;
}

.home-ranking-card__rank {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 7px;
  display: flex;
  align-items: stretch;
  gap: 0;
}

.home-ranking-card__rank strong {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 0;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.home-ranking-card__rank span {
  display: grid;
  min-width: 28px;
  padding: 0 5px;
  place-items: center;
  color: var(--text);
  background: rgb(255 255 255 / 92%);
  font-size: 10px;
  font-weight: 800;
}

.home-ranking-card__image,
.home-ranking-card__image img,
.home-ranking-card__image > span {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0;
  background: var(--surface-muted);
  object-fit: cover;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 900;
}

.home-ranking-card__image,
.home-ranking-card__genre {
  position: relative;
  z-index: 2;
}

.home-ranking-card__body {
  min-width: 0;
  padding: 8px 2px 0;
}

.home-ranking-card__genre {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 4px;
  border-radius: 2px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 9px;
  font-weight: 800;
}

.home-ranking-card__body h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 40px;
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-ranking-card__body h3 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.home-ranking-card__body h3 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.home-ranking-card__body p {
  overflow: hidden;
  margin: 0 0 5px;
  color: var(--text-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-ranking-group__more {
  display: block;
  margin-top: 10px;
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 719px) {
  .home-ranking-section > .section-heading {
    display: block;
  }

  .home-ranking-section > .section-heading h2 {
    font-size: clamp(18px, 5.65vw, 22px);
    white-space: nowrap;
  }

  .home-ranking-section > .section-heading > a {
    display: block;
    width: max-content;
    margin-top: 6px;
    margin-left: auto;
  }
}

.static-ranking-note {
  margin: 12px 2px 0;
  color: var(--text-muted);
  font-size: 10px;
}

.home-about {
  margin-top: 32px;
  padding: 18px;
  border-radius: 0;
  background: var(--surface-muted);
}

.home-about h2 {
  margin: 0;
  font-size: 20px;
}

.home-about p {
  color: var(--text-muted);
  font-size: 13px;
}

.home-about div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.home-about a {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}

.genre-grid a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  font-size: 13px;
  font-weight: 800;
}

.genre-grid a span:last-child {
  color: var(--brand);
}

.page-heading {
  margin-bottom: 16px;
  padding: 8px 0 16px;
  border-bottom: 1px solid var(--line);
}

.page-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.65;
}

.archive-navigation {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.archive-navigation a {
  display: flex;
  min-width: 0;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  border-right: 1px solid var(--line);
  border-radius: 0;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.archive-navigation a:last-child {
  border-right: 0;
}

.newreview-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.newreview-tabs a {
  display: grid;
  min-height: 42px;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.newreview-tabs a[aria-current="page"] {
  color: #fff;
  background: var(--brand);
}

.newreview-filters {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.newreview-filters summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  list-style: none;
}

.newreview-filters summary::-webkit-details-marker {
  display: none;
}

.newreview-filters summary::after {
  color: var(--brand);
  content: "＋";
  font-size: 16px;
  line-height: 1;
}

.newreview-filters[open] summary::after {
  content: "－";
}

.newreview-filters .review-archive-controls {
  margin: 0;
  padding: 14px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.review-archive-controls {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 14px 0 16px;
  border: 0;
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.review-archive-controls section {
  min-width: 0;
}

.review-archive-controls h2 {
  margin: 0 0 10px;
  font-size: 14px;
}

.review-filter-links,
.review-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.review-filter-links a,
.review-filter-tabs > * {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  font-size: 10px;
  font-weight: 800;
}

.review-filter-tabs > [aria-current="page"] {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.review-archive-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
}

.review-archive-summary strong {
  color: var(--brand-dark);
}

.archive-list-heading {
  margin: 0 0 14px;
  font-size: clamp(22px, 5vw, 30px);
  line-height: 1.4;
}

.supplemental-archive {
  padding-top: 0;
}

.pagination {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 11px;
  text-align: center;
}

.pagination a {
  min-width: 0;
  padding: 11px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--brand-dark);
  background: var(--surface);
  font-weight: 800;
}

.pagination a:last-child {
  justify-self: end;
}

.pagination span {
  color: var(--text-muted);
  white-space: nowrap;
}

.article-shell {
  padding: 18px 0 52px;
}

.breadcrumbs {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 10px;
  white-space: nowrap;
}

.breadcrumbs > span:last-child {
  display: grid;
  min-width: 0;
  flex: 1 1 auto;
  grid-template-columns: max-content minmax(0, 1fr);
}

.breadcrumbs > span:last-child > [aria-current="page"] {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.review-article__header {
  padding: 20px;
}

.review-article__overview,
.review-article__overview-body {
  min-width: 0;
}

.review-article__gameplay {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -20px -20px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
}

.review-article__gameplay img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-article__identity {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.review-article__identity > div:only-child {
  grid-column: 1 / -1;
}

.review-article__icon {
  width: 76px;
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface-muted);
  object-fit: cover;
}

.review-article__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.article-type-label {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.review-article__terms a {
  padding: 4px 9px;
}

.review-article h1 {
  margin: 0;
  font-size: clamp(27px, 7vw, 42px);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.review-article__lead {
  margin: 16px 0 0;
  color: #4c4740;
  font-size: 14px;
  font-weight: 600;
}

.review-article__catch {
  margin: 10px 0 0;
  color: var(--brand-dark);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.55;
}

.review-article__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 11px;
}

.review-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 10px;
}

.review-article__meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.review-article__meta a:hover {
  color: var(--brand-dark);
}

.review-quick-answer {
  margin: 0 20px 12px;
  padding: 12px 0 14px;
  border-top: 3px solid var(--brand);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.review-quick-answer h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.review-quick-answer__summary {
  margin: 6px 0 10px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.review-quick-answer dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.review-quick-answer dl > div {
  padding: 7px 10px;
  background: var(--surface);
}

.review-quick-answer dt {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
}

.review-quick-answer dd {
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.review-quick-answer > p:last-child {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
}

.devpost-header--with-icon {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  column-gap: 18px;
}

.devpost-header--with-icon > :not(.devpost-header__icon) {
  grid-column: 2;
}

.devpost-header__icon {
  grid-row: 1 / span 8;
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 0;
  object-fit: contain;
}

.devpost-header__developer,
.devpost-header__price,
.devpost-header__release {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.devpost-official-link {
  padding: 0 20px 8px;
}

.review-article__hero {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(200px, 56.25vw, 520px);
  object-fit: cover;
}

.recommendation-hero {
  display: grid;
  overflow: hidden;
  width: 100%;
  height: clamp(200px, 56.25vw, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-radius: 0;
  background: var(--line);
}

.recommendation-hero__item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  color: #fff;
  background: #1c1916;
}

.recommendation-hero__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommendation-hero__item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  padding: clamp(4px, 1vw, 8px) clamp(7px, 1.2vw, 11px);
  color: #fff;
  background: rgb(20 18 16 / 84%);
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommendation-hero__item:focus-visible {
  z-index: 1;
  outline: 3px solid #fff;
  outline-offset: -3px;
}

.article-primary-actions {
  display: grid;
  gap: 6px;
  padding: 9px 20px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
}

.article-primary-actions > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
}

.article-primary-actions__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.article-primary-actions__links a {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border-radius: 0;
  color: var(--brand-dark);
  background: var(--surface);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.article-primary-actions__links a[href*="play.google.com"] {
  color: #fff;
  background: var(--android);
}

.article-primary-actions__links a[href*="apps.apple.com"] {
  color: #fff;
  background: var(--ios);
}

.store-links {
  margin: 12px 20px;
  padding: 10px 0 12px;
  border-top: 2px solid var(--text);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.review-alternative-navigation {
  display: grid;
  gap: 8px;
  margin: 4px 20px 16px;
  padding: 10px 0;
  border-top: 2px solid var(--brand);
  border-bottom: 1px solid var(--line);
}

.review-alternative-navigation__status {
  display: grid;
  gap: 3px;
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.review-alternative-navigation__status strong {
  color: var(--text);
  font-size: 13px;
}

.review-alternative-navigation__status span {
  color: var(--text-muted);
}

.review-alternative-navigation__links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
}

.review-alternative-navigation__links a {
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.review-alternative-navigation__links a::after {
  content: " ›";
  text-decoration: none;
}

.affiliate-policy {
  margin: 0 20px;
  padding: 10px 12px;
  border-left: 3px solid var(--brand);
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.7;
}

.affiliate-policy strong {
  display: block;
  color: var(--text);
}

.affiliate-policy p {
  margin: 4px 0 0;
}

.affiliate-disclosure {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.7;
}

.affiliate-disclosure strong {
  display: block;
  color: var(--text);
}

.store-links__heading {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
}

.store-links__buttons {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.store-link {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 0;
  color: #fff;
  line-height: 1.25;
}

.store-link--android {
  background: var(--android);
}

.store-link--ios {
  background: var(--ios);
}

.store-link span {
  font-size: 9px;
  opacity: 0.72;
  pointer-events: none;
}

.store-link strong {
  font-size: 14px;
  pointer-events: none;
}

.store-links small {
  display: block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.6;
}

@media (max-width: 719px) {
  .store-links--sticky {
    position: fixed;
    z-index: 20;
    right: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 10px;
    margin: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 8px 28px rgb(28 25 22 / 20%);
    backdrop-filter: blur(8px);
  }

  html[data-appget-advertisement-visibility="visible"]
    .store-links--sticky {
    bottom: calc(120px + env(safe-area-inset-bottom));
  }

  .store-links--sticky .store-links__heading,
  .store-links--sticky small {
    display: none;
  }

  .store-links--sticky .store-links__buttons {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 6px;
    background: transparent;
  }

  .store-links--sticky .store-link {
    min-height: 48px;
    padding: 7px 10px;
  }

  .store-links--sticky .store-link strong {
    font-size: 12px;
  }

  .review-article {
    padding-bottom: 76px;
  }

  html[data-appget-advertisement-visibility="visible"]
    .review-article {
    padding-bottom: calc(188px + env(safe-area-inset-bottom));
  }
}

.article-content {
  padding: 12px 20px 28px;
  overflow-wrap: anywhere;
}

.article-content > :first-child {
  margin-top: 0;
}

.devpost-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.devpost-gallery img {
  width: 100%;
  height: 220px;
  border-radius: 0;
  background: var(--surface-muted);
  object-fit: contain;
}

.article-content h2 {
  margin: 2.5em 0 0.8em;
  padding: 0 0 10px;
  border-bottom: 3px solid var(--brand);
  font-size: 23px;
  line-height: 1.45;
}

.article-content h3 {
  margin: 2em 0 0.7em;
  padding-left: 12px;
  border-left: 4px solid var(--brand);
  font-size: 19px;
  line-height: 1.5;
}

.article-content p,
.article-content li {
  font-size: 15px;
}

.article-content a {
  color: #b81827;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* GTMのクリック対象を成果属性のあるリンク自身へ統一する。 */
.article-content a.reviewDL * {
  pointer-events: none;
}

/* 旧記事の画像リンクは、画像全体を親リンクのクリック領域に含める。 */
.article-content a.reviewDL--image {
  display: inline-block;
  max-width: 100%;
}

.article-content img {
  height: auto;
  border-radius: 0;
}

.article-content iframe,
.article-content video {
  width: 100%;
  max-width: 100%;
  border: 0;
}

.article-content iframe {
  aspect-ratio: 16 / 9;
}

.article-content video {
  height: auto;
  background: #000;
}

.article-content blockquote {
  margin: 1.5em 0;
  padding: 16px 18px;
  border-left: 4px solid var(--line);
  color: var(--text-muted);
  background: var(--background);
}

.article-content .table-scroll {
  max-width: 100%;
  margin: 1em 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}

.article-content table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 10px 12px;
  border: 1px solid var(--line);
  font-size: 13px;
  text-align: left;
  vertical-align: top;
}

.article-content th {
  background: var(--surface-muted);
  font-weight: 800;
}

.review-information {
  margin: 8px 20px 28px;
  padding-top: 4px;
}

.review-information h2 {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand);
  font-size: 23px;
  line-height: 1.45;
}

.review-information h3 {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--brand);
  font-size: 18px;
}

.review-information li {
  margin: 7px 0;
  font-size: 14px;
}

.review-videos__grid {
  display: grid;
  gap: 14px;
}

.review-videos iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 0;
  background: #000;
}

.review-data-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0;
}

.review-data-table table {
  width: 100%;
  border-collapse: collapse;
}

.review-data-table th,
.review-data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  text-align: left;
  vertical-align: top;
}

.review-data-table tr:last-child th,
.review-data-table tr:last-child td {
  border-bottom: 0;
}

.review-data-table th {
  width: 112px;
  background: var(--surface-muted);
  font-weight: 800;
}

.review-data-table a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 20px 28px;
}

.article-tags a {
  padding: 5px 10px;
  border-radius: 2px;
  color: var(--brand-dark);
  background: #fff0f0;
  font-size: 10px;
  font-weight: 800;
}

.related-content {
  max-width: 920px;
  margin: 48px auto 0;
}

.related-content .section-heading h2 {
  margin: 0;
  font-size: 26px;
}

.legacy-table {
  margin: 2em 0;
}

.legacy-table figcaption {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.static-content-notice,
.static-form-notice {
  margin: 1.5em 0;
  padding: 16px;
  border: 1px solid #d8c9a7;
  border-radius: 0;
  color: #5f4d26;
  background: #fff9e8;
}

.static-content-notice p,
.static-form-notice p {
  margin: 5px 0 0;
  font-size: 13px;
}

.static-business-contact {
  margin: 0;
  padding: 20px;
  border-top: 2px solid var(--text);
  border-bottom: 1px solid var(--line);
}

.static-business-contact h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.4;
}

.static-business-contact p {
  margin: 10px 0 0;
}

.static-business-contact__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid var(--brand-dark);
  border-radius: 0;
  color: #fff !important;
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none !important;
}

.static-business-contact__action:hover,
.static-business-contact__action:focus-visible {
  background: var(--brand-dark);
}

.static-business-contact .static-business-contact__note {
  color: var(--text-muted);
  font-size: 12px;
}

.legacy-review-card,
.legacy-article-links,
.legacy-pre-information {
  margin: 1.75em 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.legacy-review-card__main {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
}

.legacy-review-card__main img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  object-fit: cover;
}

.legacy-review-card__main span,
.legacy-review-card__main strong,
.legacy-review-card__main small {
  display: block;
}

.legacy-review-card__main span {
  min-width: 0;
}

.legacy-review-card__main strong {
  color: var(--text);
  font-size: 15px;
}

.legacy-review-card__main small {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 11px;
}

.legacy-review-card ul {
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.legacy-review-card__stores,
.legacy-pre-links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.legacy-review-card__stores a,
.legacy-pre-links a,
.legacy-review-link a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 3px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.legacy-article-links h3,
.legacy-pre-information h3 {
  margin-top: 0;
}

.legacy-article-links ul {
  margin-bottom: 0;
  padding-left: 1.3em;
}

.legacy-review-grid,
.legacy-video-list {
  display: grid;
  gap: 14px;
}

.legacy-review-grid .legacy-review-card {
  margin: 0;
}

.legacy-video-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.legacy-video-list h3,
.legacy-video-list p {
  margin-right: 14px;
  margin-left: 14px;
}

.legacy-video-list p {
  color: var(--text-muted);
  font-size: 13px;
}

.legacy-interview {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.legacy-interview img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.legacy-interview p {
  margin: 0;
}

.special-page-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.special-page-card__header {
  padding: 20px 20px 18px;
  border-top: 4px solid var(--brand);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.special-page-card__header h1 {
  margin: 7px 0 0;
  font-size: clamp(26px, 7vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.special-page-card__header > p:last-child {
  max-width: 760px;
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.65;
}

.public-archive-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
}

.public-archive-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.public-archive-navigation a {
  display: grid;
  min-height: 42px;
  place-items: center;
  padding: 7px 10px 5px;
  border-right: 1px solid var(--line);
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.public-archive-navigation a:last-child {
  border-right: 0;
}

.public-archive-navigation a:hover,
.public-archive-navigation a:focus-visible {
  color: var(--brand-dark);
}

.public-archive-navigation a[aria-current="page"] {
  border-bottom-color: var(--brand);
  color: var(--text);
}

.public-archive-list > article {
  position: relative;
  display: block;
  min-width: 0;
  padding: 14px 10px 16px 20px;
  border-bottom: 1px solid var(--line);
}

.public-archive-list > article:nth-child(even) {
  border-right: 1px solid var(--line);
}

.public-archive-list > article:nth-child(odd):not(
    .public-archive-list__feature
  ) {
  padding-right: 20px;
  padding-left: 10px;
}

.public-archive-list__image,
.public-archive-list__image img,
.public-archive-list__image > span {
  display: grid;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  place-items: center;
  border-radius: 0;
  background: var(--surface-muted);
  object-fit: cover;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 900;
}

.public-archive-list__image {
  position: relative;
  z-index: 2;
}

.public-archive-list__feature {
  grid-template-columns: minmax(0, 1fr) !important;
  grid-column: 1 / -1;
  gap: 0 !important;
  padding: 0 0 16px !important;
}

.public-archive-list__feature .public-archive-list__image,
.public-archive-list__feature .public-archive-list__image img,
.public-archive-list__feature .public-archive-list__image > span {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.public-archive-list__feature > div {
  padding: 12px 20px 0;
}

.public-archive-list > article:not(.public-archive-list__feature) > div {
  margin-top: 10px;
}

.public-archive-list__feature h2 {
  font-size: 18px;
  line-height: 1.45;
}

.public-archive-list article > div > span {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 7px;
  border-radius: 2px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 9px;
  font-weight: 800;
}

.public-archive-list h2 {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.5;
}

.public-archive-list h2 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.public-archive-list h2 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.public-archive-list time {
  color: var(--text-muted);
  font-size: 10px;
}

.public-archive .pagination,
.author-archive .pagination,
.year-review-archive .pagination {
  margin: 22px 20px 28px;
}

.public-archive .special-page-card__header h1 {
  margin-top: 0;
}

.authors-directory > section,
.date-directory > section {
  padding: 24px 20px 0;
}

.authors-directory > section:last-child,
.date-directory > section:last-child {
  padding-bottom: 32px;
}

.authors-directory > section > h2,
.author-archive > h2,
.date-directory > section > h2 {
  margin: 0 0 16px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--brand);
  font-size: 20px;
}

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

.authors-directory__grid > *,
.author-archive__profile > div {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface-muted);
  text-align: center;
}

.authors-directory__grid img,
.authors-directory__grid a > span,
.author-archive__profile img,
.author-archive__profile div > span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface);
  object-fit: cover;
  color: var(--text-muted);
  font-weight: 900;
}

.authors-directory__grid strong {
  font-size: 13px;
}

.author-archive {
  padding-bottom: 28px;
}

.author-archive__profile {
  display: grid;
  justify-items: center;
  padding: 30px 20px 24px;
  text-align: center;
}

.author-archive__profile > div {
  border: 0;
  background: transparent;
}

.author-archive__profile > div > strong {
  display: none;
}

.author-archive__profile h1 {
  margin: 8px 0;
  font-size: 30px;
}

.author-archive__profile p {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.8;
}

.author-archive > h2 {
  margin-right: 20px;
  margin-left: 20px;
}

.date-directory {
  padding-bottom: 28px;
}

.date-directory__years {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 24px 20px 0;
}

.date-directory__years a,
.date-directory__ranking-links a {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--brand-dark);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.date-directory__ranking-links {
  display: grid;
  gap: 10px;
}

.year-review-archive {
  padding-bottom: 1px;
}

.year-review-archive .review-list {
  padding: 24px 20px 0;
}

.ranking-backnumber {
  padding-bottom: 30px;
}

.ranking-backnumber > section {
  padding: 26px 20px 0;
}

.ranking-backnumber > section > h2 {
  margin: 0 0 16px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--brand);
  font-size: 20px;
}

.ranking-backnumber__grid,
.ranking-backnumber__years,
.ranking-backnumber__links {
  display: grid;
  gap: 10px;
}

.ranking-backnumber__grid > a,
.ranking-backnumber__years > a,
.ranking-backnumber__links > a {
  display: grid;
  gap: 5px;
  min-height: 48px;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--brand-dark);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.ranking-backnumber__grid span {
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 500;
}

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

.special-page-card__content {
  padding: 26px 20px 34px;
}

.special-page-card__content > h2,
.ranking-links h2,
.ranking-genre-links h2 {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand);
  font-size: 23px;
  line-height: 1.45;
}

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

.genre-directory-grid > a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}

.genre-directory-grid__visual {
  display: grid;
  overflow: hidden;
  aspect-ratio: 1;
  place-items: center;
  color: #a59e93;
  background: linear-gradient(135deg, #e5e0d7, #f7f5f0);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.genre-directory-grid__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.genre-directory-grid > a:hover img,
.genre-directory-grid > a:focus-visible img {
  transform: scale(1.035);
}

.genre-directory-grid strong {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.45;
}

.pre-calendar__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 24px 20px 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
}

.pre-calendar__tabs > * {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 900;
}

.pre-calendar__tabs > :last-child {
  border-right: 0;
}

.pre-calendar__tabs [aria-current="page"] {
  color: #fff;
  background: var(--brand);
}

.pre-calendar__tabs > :first-child {
  border-radius: 2px 0 0 2px;
}

.pre-calendar__latest,
.pre-calendar__period {
  padding: 28px 20px;
  border-bottom: 1px solid var(--line);
}

.pre-calendar__latest-scroller {
  overflow-x: auto;
  padding-bottom: 10px;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--brand) var(--surface-muted);
  scrollbar-width: thin;
  scroll-padding-inline: 1px;
  scroll-snap-type: inline mandatory;
}

.pre-calendar__latest-scroller:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.pre-calendar__latest-scroller ul {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: clamp(250px, 74vw, 300px);
  grid-auto-flow: column;
  width: max-content;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pre-calendar__latest-scroller li {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand);
  border-radius: 0;
  background: var(--surface);
  scroll-snap-align: start;
}

.pre-calendar__latest-scroller article,
.pre-calendar__latest-scroller a {
  height: 100%;
}

.pre-calendar__latest-scroller a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  min-height: 132px;
}

.pre-calendar__latest-image,
.pre-calendar__latest-image img,
.pre-calendar__latest-image > span {
  display: grid;
  width: 112px;
  height: 100%;
  min-height: 129px;
  place-items: center;
  background: var(--surface-muted);
  object-fit: cover;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 900;
}

.pre-calendar__latest-body {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 7px;
  padding: 10px;
}

.pre-calendar__latest-body strong,
.pre-calendar__latest-body > span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.pre-calendar__latest-body strong {
  font-size: 12px;
  line-height: 1.5;
  -webkit-line-clamp: 2;
}

.pre-calendar__latest-body > span {
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.55;
  -webkit-line-clamp: 3;
}

.pre-calendar__period > h2 {
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand);
  font-size: clamp(20px, 5vw, 27px);
}

.pre-calendar__grid {
  display: grid;
  gap: 12px;
}

.pre-calendar-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.pre-calendar-card__image {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 120px;
  place-items: center;
  color: var(--text-muted);
  background: var(--surface-muted);
  font-size: 9px;
  font-weight: 900;
}

.pre-calendar-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pre-calendar-card__body {
  min-width: 0;
  padding: 12px;
}

.pre-calendar-card__status {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 3px 7px;
  border-radius: 2px;
  color: #fff;
  background: var(--brand);
  font-size: 8px;
  font-weight: 900;
}

.pre-calendar-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.pre-calendar-card h3 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.pre-calendar-card h3 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.pre-calendar-card__publisher,
.pre-calendar-card__catch,
.pre-calendar-card__schedule {
  margin: 5px 0 0;
  font-size: 9px;
  line-height: 1.5;
}

.pre-calendar-card__publisher,
.pre-calendar-card__catch {
  color: var(--text-muted);
}

.pre-calendar-card__catch {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pre-calendar-card__schedule {
  color: var(--brand-dark);
  font-weight: 900;
}

.pre-calendar-more {
  margin-top: 12px;
}

.pre-calendar-more > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  color: #fff;
  background: #403c36;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  list-style: none;
}

.pre-calendar-more > summary::-webkit-details-marker {
  display: none;
}

.pre-calendar-more > summary::after {
  content: "＋";
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.pre-calendar-more[open] > summary::after {
  content: "−";
}

.pre-calendar-more > .pre-calendar__grid {
  margin-top: 12px;
}

.pre-calendar__empty {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.ranking-portal__controls {
  padding: 10px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-muted);
}

.ranking-filters {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
}

.ranking-filters summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 2px 12px;
  min-height: 48px;
  padding: 8px 12px;
  cursor: pointer;
  list-style: none;
}

.ranking-filters summary::-webkit-details-marker {
  display: none;
}

.ranking-filters summary span {
  grid-column: 1;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.ranking-filters summary strong {
  grid-column: 1;
  color: var(--brand-dark);
  font-size: 10px;
  line-height: 1.4;
}

.ranking-filters summary::after {
  display: grid;
  grid-row: 1 / span 2;
  grid-column: 2;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  content: "+";
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.ranking-filters[open] summary::after {
  content: "−";
}

.ranking-filters__fields {
  display: grid;
  gap: 12px;
  padding: 14px 12px;
  border-top: 1px solid var(--line);
}

.ranking-filters fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.ranking-filters legend {
  width: 100%;
  margin-bottom: 4px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
}

.ranking-filters button {
  min-height: 40px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  background: var(--surface);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.ranking-filters button[aria-pressed="true"] {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.ranking-filters button:disabled {
  color: var(--text-muted);
  background: #e7e3dc;
  cursor: not-allowed;
  opacity: 0.7;
}

.ranking-periods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 0;
}

.ranking-periods strong {
  width: 100%;
  color: var(--text-muted);
  font-size: 11px;
}

.ranking-periods span {
  padding: 6px 10px;
  border-radius: 3px;
  color: var(--text-muted);
  background: #ded9d0;
  font-size: 10px;
  font-weight: 800;
}

.ranking-periods span[aria-current="true"] {
  color: #fff;
  background: #403c36;
}

.ranking-portal__groups {
  display: grid;
}

.ranking-group {
  padding: 20px 20px 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 140px;
}

.ranking-group[hidden] {
  display: none;
}

.ranking-group__header {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.ranking-group__header h2 {
  margin: 5px 0 0;
  font-size: clamp(21px, 5.5vw, 29px);
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.ranking-group__header > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 10px;
}

.ranking-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-entry {
  position: relative;
  display: grid;
  grid-template-columns: 42px 110px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  padding: 12px 0;
  border: 0;
  border-top: 3px solid var(--text);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ranking-entry__position {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.ranking-entry__position > strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 0;
  color: #fff;
  background: var(--brand);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.ranking-entry__movement {
  color: var(--text-muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.ranking-entry__movement--up,
.ranking-entry__movement--new {
  color: #147347;
}

.ranking-entry__movement--down {
  color: var(--brand-dark);
}

.ranking-entry__image {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  width: 110px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 0;
  color: #aaa297;
  background: var(--surface-muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.ranking-entry__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking-entry__body {
  min-width: 0;
}

.ranking-entry__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ranking-entry__labels > * {
  padding: 3px 7px;
  border-radius: 2px;
  color: var(--brand-dark);
  background: #fff0f0;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
}

.ranking-entry__labels > a {
  position: relative;
  z-index: 2;
}

.ranking-entry h3 {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.ranking-entry h3 a::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.ranking-entry h3 a:focus-visible::after {
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

.ranking-entry__developer {
  overflow: hidden;
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-entry__excerpt {
  display: none;
}

.ranking-entry .rating-score {
  margin-top: 8px;
}

.ranking-more {
  margin-top: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ranking-more summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 900;
}

.ranking-more summary::-webkit-details-marker {
  display: none;
}

.ranking-more summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-left: 1px solid var(--line);
  content: "+";
  color: var(--brand);
  font-size: 19px;
}

.ranking-more[open] summary {
  border-bottom: 1px solid var(--line);
}

.ranking-more[open] summary::after {
  content: "−";
}

.ranking-more .ranking-list {
  padding: 14px 0;
}

.ranking-group__source {
  margin: 14px 2px 0;
  color: var(--text-muted);
  font-size: 10px;
}

.ranking-empty {
  margin: 0;
  padding: 34px 20px;
  color: var(--text-muted);
}

.ranking-links,
.ranking-genre-links {
  padding: 30px 20px 36px;
}

.ranking-links {
  border-bottom: 1px solid var(--line);
}

.ranking-links > div {
  display: grid;
  gap: 9px;
}

.ranking-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--brand-dark);
  background: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.ranking-genre-links > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ranking-genre-links a {
  padding: 7px 11px;
  border-radius: 2px;
  color: var(--brand-dark);
  background: #fff0f0;
  font-size: 10px;
  font-weight: 800;
}

.empty-state {
  width: min(100% - 32px, 620px);
  margin: 0 auto;
  padding: 96px 0 120px;
  text-align: center;
}

.empty-state h1 {
  margin: 10px 0;
  font-size: clamp(27px, 8vw, 42px);
}

.empty-state > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--text-muted);
}

.empty-state .primary-link {
  color: #fff;
  background: var(--brand);
}

.search-form {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.search-form label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 800;
}

.search-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.search-form input,
.search-form button {
  min-height: 48px;
  border-radius: 3px;
  font: inherit;
}

.search-form input {
  min-width: 0;
  padding: 0 13px;
  border: 1px solid var(--line);
  background: var(--background);
  font-size: 16px;
}

.search-form button {
  padding: 0 18px;
  border: 0;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.search-status {
  min-height: 52px;
  padding: 11px 2px;
  color: var(--text-muted);
  font-size: 12px;
}

.search-status p {
  margin: 0;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-results article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.search-results article > p:first-child {
  margin: 0;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}

.search-results h2 {
  margin: 5px 0 7px;
  font-size: 18px;
  line-height: 1.5;
}

.search-results article > p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

.site-sidebar {
  width: min(100% - 32px, 720px);
  margin: 0 auto;
  padding: 0 0 72px;
}

.site-discovery-menu {
  margin-bottom: 24px;
}

.site-discovery-menu__sections {
  display: grid;
  gap: 10px;
}

.site-discovery-menu--sidebar section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.site-discovery-menu--sidebar h2 {
  margin: 0;
  padding: 8px 12px;
  color: #fff;
  background: #403c36;
  font-size: 14px;
  line-height: 1.4;
}

.site-discovery-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-discovery-menu--sidebar li + li {
  border-top: 1px solid var(--line);
}

.site-discovery-menu--sidebar a {
  display: block;
  padding: 6px 12px;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.site-discovery-menu--sidebar a:hover {
  color: var(--brand-dark);
  background: var(--surface-muted);
}

.sidebar-section {
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
}

.sidebar-section h2 {
  margin: 0;
  padding: 12px 14px;
  color: #fff;
  background: #403c36;
  font-size: 14px;
  line-height: 1.4;
}

.sidebar-rankings__scroller,
.sidebar-recommendations {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--brand) var(--surface-muted);
  scrollbar-width: thin;
  scroll-padding-inline: 1px;
  scroll-snap-type: inline mandatory;
}

.sidebar-rankings__scroller:focus-visible,
.sidebar-recommendations:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}

.sidebar-ranking-rail {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: clamp(132px, 38vw, 160px);
  grid-auto-flow: column;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-ranking-rail li {
  min-width: 0;
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
}

.sidebar-ranking-rail li:last-child {
  border-right: 0;
}

.sidebar-ranking-rail a {
  position: relative;
  display: block;
  height: 100%;
}

.sidebar-ranking-card__position {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  padding: 4px 6px;
  border-radius: 0;
  color: #fff;
  background: var(--brand);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
}

.sidebar-ranking-card__image,
.sidebar-ranking-card__image img {
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  background: var(--surface-muted);
  object-fit: cover;
}

.sidebar-ranking-card__body {
  display: block;
  min-width: 0;
  padding: 8px 9px 10px;
}

.sidebar-ranking-card__body > strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sidebar-ranking-card__body > small {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar-rankings__more {
  display: flex;
  border-top: 1px solid var(--line);
}

.sidebar-rankings__more a {
  min-width: 0;
  flex: 1 1 0;
  padding: 10px 12px;
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.sidebar-rankings__more a + a {
  border-left: 1px solid var(--line);
}

.sidebar-recommendations {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: clamp(118px, 34vw, 142px);
  grid-auto-flow: column;
  width: 100%;
}

.sidebar-recommendations a {
  display: block;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  scroll-snap-align: start;
}

.sidebar-recommendations a:last-child {
  border-right: 0;
}

.sidebar-recommendations img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  object-fit: cover;
}

.sidebar-recommendations a > span {
  display: block;
  padding: 8px 9px 10px;
}

.sidebar-recommendations strong {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 5px;
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recently-viewed__list {
  display: grid;
}

.recently-viewed__list > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.recently-viewed__list > a:last-child {
  border-bottom: 0;
}

.recently-viewed__list img,
.recently-viewed__list > a > span:first-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-muted);
  object-fit: cover;
  color: var(--text-muted);
  font-size: 9px;
  font-weight: 900;
}

.recently-viewed__list strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.recently-viewed__empty {
  margin: 0;
  padding: 14px;
  color: var(--text-muted);
  font-size: 10px;
}

.sidebar-note {
  margin: 14px 4px 0;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.65;
}

.advertisement-overlay {
  position: fixed;
  z-index: 19;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 112px;
  padding: 12px 10px 0;
  color: #fff;
  background: rgb(0 0 0 / 76%);
  text-align: center;
  transform: translate3d(0, 0, 0);
}

.advertisement-overlay[hidden] {
  display: none;
}

.advertisement-overlay__label {
  position: absolute;
  top: 1px;
  left: 50%;
  color: rgb(255 255 255 / 72%);
  font-size: 8px;
  line-height: 1;
  transform: translateX(-50%);
}

.advertisement-slot {
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  color: #ddd;
  background: rgb(255 255 255 / 8%);
  font-size: 10px;
}

.advertisement-slot--mobile {
  display: flex;
  width: 320px;
  height: 100px;
}

.advertisement-slot--desktop {
  display: none;
}

.advertisement-placeholder {
  display: none;
}

html[data-appget-third-party-delivery="preview-blocked"]
  .advertisement-placeholder {
  display: inline;
}

.site-footer {
  padding: 38px 0;
  color: rgb(255 255 255 / 74%);
  background: #211f1b;
}

.site-footer__inner {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-footer a {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.site-discovery-menu--footer {
  padding-bottom: 28px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.site-discovery-menu--footer > h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
}

.site-discovery-menu--footer .site-discovery-menu__sections {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.site-discovery-menu--footer section > h2 {
  margin: 0 0 8px;
  color: rgb(255 255 255 / 66%);
  font-size: 11px;
}

.site-discovery-menu--footer li + li {
  margin-top: 6px;
}

.site-discovery-menu--footer a {
  display: inline-block;
  line-height: 1.45;
}

.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}

.site-footer p,
.site-footer small {
  display: block;
  margin: 8px 0 0;
  font-size: 10px;
}

@media (min-width: 720px) {
  .site-header {
    position: sticky;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand img {
    width: 205px;
  }

  .header-search span:last-child {
    display: inline;
  }

  .global-navigation > div {
    display: flex;
    gap: 0;
    background: transparent;
  }

  .global-navigation a {
    min-height: 40px;
    flex: 1 1 0;
    padding: 8px 10px;
    border-right: 1px solid var(--line);
    font-size: 11px;
  }

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

  .home-ranking-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .public-archive-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    padding: 20px clamp(28px, 5vw, 58px) 0;
  }

  .public-archive-navigation {
    margin-right: clamp(28px, 5vw, 58px);
    margin-left: clamp(28px, 5vw, 58px);
  }

  .public-archive-list > article {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0;
  }

  .public-archive-list > article:nth-child(odd):not(
      .public-archive-list__feature
    ) {
    padding-right: 0;
    padding-left: 0;
  }

  .public-archive-list > article:not(.public-archive-list__feature) > div {
    margin-top: 0;
  }

  .public-archive-list__image,
  .public-archive-list__image img,
  .public-archive-list__image > span {
    width: 128px;
    height: 104px;
    aspect-ratio: auto;
  }

  .public-archive-list__feature {
    grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr) !important;
    grid-column: 1 / -1;
    padding-bottom: 20px !important;
  }

  .public-archive-list__feature .public-archive-list__image,
  .public-archive-list__feature .public-archive-list__image img,
  .public-archive-list__feature .public-archive-list__image > span {
    min-height: 236px;
    aspect-ratio: 16 / 9;
  }

  .public-archive-list__feature > div {
    display: grid;
    align-content: center;
    padding: 20px 0 20px 24px;
  }

  .public-archive-list__feature h2 {
    font-size: 21px;
  }

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

  .date-directory__ranking-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-backnumber__grid,
  .ranking-backnumber__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-backnumber__years {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .site-footer {
    padding: 16px 0;
  }

  .site-discovery-menu--footer {
    margin-bottom: 8px;
    padding-bottom: 12px;
  }

  .site-discovery-menu--footer > h2 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .site-discovery-menu--footer .site-discovery-menu__sections {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .site-discovery-menu--footer section > h2 {
    margin-bottom: 6px;
  }

  .site-discovery-menu--footer li + li {
    margin-top: 3px;
  }

  .footer-navigation {
    gap: 6px 12px;
    margin-top: 14px;
  }

  .site-footer p,
  .site-footer small {
    margin-top: 6px;
  }

  .global-navigation a:first-child {
    border-left: 1px solid var(--line);
  }

  .page-shell {
    padding-top: 24px;
  }

  .home-feature {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }

  .home-feature__image {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .home-feature__image img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .home-feature__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px;
  }

  .home-feature__catch {
    -webkit-line-clamp: 2;
  }

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

  .home-topics h2 {
    padding: 12px 14px 15px;
    font-size: 13px;
  }

  .review-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 0;
  }

  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 18px;
    row-gap: 0;
  }

  .review-card {
    grid-template-columns: 168px minmax(0, 1fr);
  }

.article-card {
    grid-template-columns: 168px minmax(0, 1fr);
  }

  .article-card__image {
    min-height: 220px;
  }

  .article-card__body {
    padding: 16px;
  }

  .article-card h2,
  .article-card h4 {
    font-size: 18px;
  }

  .article-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .review-card__image {
    min-height: 220px;
  }

  .review-card__body {
    padding: 16px;
  }

  .review-card h2 {
    font-size: 18px;
  }

  .review-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

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

  .special-page-card__header {
    padding: 26px clamp(38px, 7vw, 70px) 22px;
  }

  .special-page-card__content,
  .ranking-group,
  .ranking-links,
  .ranking-genre-links {
    padding-right: clamp(38px, 7vw, 70px);
    padding-left: clamp(38px, 7vw, 70px);
  }

  .pre-calendar__tabs {
    margin-right: clamp(38px, 7vw, 70px);
    margin-left: clamp(38px, 7vw, 70px);
  }

  .pre-calendar__latest,
  .pre-calendar__period {
    padding-right: clamp(38px, 7vw, 70px);
    padding-left: clamp(38px, 7vw, 70px);
  }

  .pre-calendar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .pre-calendar-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .pre-calendar-card__image {
    min-height: 132px;
  }

  .ranking-portal__controls {
    padding-right: clamp(38px, 7vw, 70px);
    padding-left: clamp(38px, 7vw, 70px);
  }

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

  .genre-directory-grid strong {
    min-height: 66px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .ranking-filters summary {
    grid-template-columns: max-content minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .ranking-filters summary span {
    grid-row: 1;
    grid-column: 1;
  }

  .ranking-filters summary strong {
    grid-row: 1;
    grid-column: 2;
    font-size: 11px;
  }

  .ranking-filters summary::after {
    grid-row: 1;
    grid-column: 3;
  }

  .ranking-filters__fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .ranking-periods strong {
    width: auto;
    margin-right: 4px;
  }

  .ranking-group__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .ranking-entry {
    grid-template-columns: 48px 132px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 0;
  }

  .ranking-entry__position > strong {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .ranking-entry__image {
    width: 132px;
    border-radius: 0;
  }

  .ranking-entry h3 {
    font-size: 19px;
  }

  .ranking-entry__excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .ranking-links > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-ranking-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-shell {
    padding-top: 24px;
  }

  .review-article__header,
  .article-content,
  .static-business-contact {
    padding-right: clamp(28px, 5vw, 58px);
    padding-left: clamp(28px, 5vw, 58px);
  }

  .review-information {
    margin-right: clamp(28px, 5vw, 58px);
    margin-left: clamp(28px, 5vw, 58px);
  }

  .article-tags {
    margin-right: clamp(28px, 5vw, 58px);
    margin-left: clamp(28px, 5vw, 58px);
  }

  .review-article__header {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .review-article__overview--with-gameplay {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: center;
    gap: 24px;
  }

  .review-article__gameplay {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 0;
  }

  .review-article__overview--with-gameplay h1 {
    font-size: clamp(27px, 3vw, 38px);
  }

  .review-article__identity {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 20px;
  }

  .review-article__icon {
    width: 96px;
    height: 96px;
    border-radius: 0;
  }

  .review-quick-answer,
  .affiliate-policy,
  .review-alternative-navigation {
    margin-right: clamp(28px, 5vw, 58px);
    margin-left: clamp(28px, 5vw, 58px);
  }

  .review-alternative-navigation {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    margin-top: 14px;
  }

  .review-alternative-navigation__links {
    justify-content: flex-end;
  }

  .review-quick-answer {
    padding: 14px 0 16px;
  }

  .store-links {
    margin: 14px clamp(28px, 5vw, 58px) 12px;
    padding: 12px 0 14px;
  }

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

  .article-content {
    padding-top: 16px;
    padding-bottom: 44px;
  }

  .article-content h2 {
    font-size: 27px;
  }

  .legacy-review-grid,
  .legacy-video-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .legacy-review-card__stores,
  .legacy-pre-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 770px) {
  .advertisement-overlay {
    min-height: 102px;
    padding-top: 12px;
  }

  .advertisement-slot--mobile {
    display: none;
  }

  .advertisement-slot--desktop {
    display: flex;
    width: 728px;
    height: 90px;
  }
}

@media (max-width: 1059px) {
  .site-sidebar > .site-discovery-menu--sidebar {
    display: none;
  }

  .site-frame:has(.home-page)
    .sidebar-ranking-card--home-duplicate,
  .site-frame:has(.home-page)
    .sidebar-rankings__more--home-duplicate {
    display: none;
  }
}

@media (min-width: 1060px) {
  .site-frame {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    width: min(100% - 32px, var(--max-width));
    margin-inline: auto;
  }

  .site-main .page-shell,
  .site-main .article-shell {
    width: 100%;
  }

  .site-sidebar {
    width: 100%;
    margin: 0;
    padding: 36px 0 52px;
  }

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

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

  .review-card {
    display: block;
  }

  .article-card {
    display: block;
  }

  .review-card__image {
    height: 220px;
    min-height: 0;
  }

  .article-card__image {
    height: 220px;
    min-height: 0;
  }

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

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

  .review-article {
    max-width: 100%;
    margin-inline: auto;
  }

  .breadcrumbs {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .related-content {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .page-shell:not(.home-page) .article-card--devpost {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .page-shell:not(.home-page)
    .article-card--devpost
    .article-card__image {
    width: 220px;
    height: 220px;
    min-height: 220px;
  }

  .page-shell:not(.home-page)
    .article-card--devpost
    .article-card__image
    img {
    padding: 0;
  }
}

.home-genre-scroller,
.home-preregistration-scroller,
.home-submitted-games {
  overflow-x: auto;
  padding-bottom: 12px;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--brand) var(--surface-muted);
  scrollbar-width: thin;
  scroll-padding-inline: 1px;
  scroll-snap-type: inline mandatory;
}

.home-genre-scroller:focus-visible,
.home-preregistration-scroller:focus-visible,
.home-submitted-games:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.home-genre-scroller .genre-directory-grid {
  grid-template-columns: none;
  grid-auto-columns: clamp(148px, 42vw, 190px);
  grid-auto-flow: column;
  width: max-content;
  gap: 10px;
}

.home-genre-scroller .genre-directory-grid > a {
  border-radius: 0;
  scroll-snap-align: start;
}

.home-genre-scroller .genre-directory-grid strong {
  min-height: 52px;
  padding: 8px 10px;
  font-size: 11px;
}

.home-preregistration-scroller .home-preregistration-grid {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: none;
  grid-auto-columns: clamp(148px, 42vw, 190px);
  grid-auto-flow: column;
  width: max-content;
  gap: 10px;
}

.home-preregistration-scroller .home-preregistration-grid article {
  border-radius: 0;
  scroll-snap-align: start;
}

.home-preregistration-scroller .home-preregistration-grid h2 {
  min-height: 50px;
  padding: 8px 9px 3px;
  font-size: 11px;
}

.home-preregistration-scroller .home-preregistration-grid p {
  padding: 0 9px 9px;
  font-size: 9px;
}

.home-submitted-games .article-list {
  display: grid;
  grid-template-columns: none;
  grid-auto-columns: minmax(0, 82vw);
  grid-auto-flow: column;
  width: max-content;
  gap: 10px;
  border-top: 0;
}

.home-submitted-games .article-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  min-height: 172px;
  border: 1px solid rgb(222 217 208 / 80%);
  border-radius: 0;
  background: var(--surface);
  scroll-snap-align: start;
}

.home-submitted-games .article-card__image {
  width: 78px;
  height: 78px;
  min-height: 0;
  margin: 10px 0 10px 10px;
  border: 1px solid var(--line);
}

.home-submitted-games .article-card--devpost .article-card__image img {
  padding: 0;
  object-fit: cover;
}

.home-submitted-games .article-card__body {
  padding: 10px;
}

.home-submitted-games .article-card__terms {
  display: none;
}

.home-submitted-games .article-card h4 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.4;
}

.home-submitted-games .article-card__body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 6px 0;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-submitted-games .article-card__developer,
.home-submitted-games .article-card time {
  margin-top: 5px;
  font-size: 9px;
}

@media (min-width: 700px) {
  .home-submitted-games .article-list {
    grid-auto-columns: 285px;
  }

  .home-submitted-games .article-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .home-submitted-games .article-card__image {
    width: 82px;
    height: 82px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
