:root {
  --red: #e3222c;
  --red-dark: #b70f19;
  --ink: #171717;
  --ink-soft: #2a2927;
  --paper: #f8f5ef;
  --paper-deep: #eee9df;
  --white: #fffdf8;
  --muted: #6f6b64;
  --line: #d4cec2;
  --font-sans: "Pretendard Variable", Pretendard, "SUIT Variable", SUIT,
    "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d9d4ca;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  padding: 0.08em 0.32em;
  border-radius: 3px;
  background: rgba(23, 23, 23, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

.noscript-note {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 100;
  margin: 0 auto;
  max-width: 720px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  box-shadow: 5px 5px 0 var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

strong,
b {
  font-weight: 800;
}

em {
  color: var(--red);
  font-style: normal;
}

.site-shell {
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(23, 23, 23, 0.08);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 54px;
  height: 82px;
  padding: 0 7vw;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0 var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.brand-copy strong span {
  color: var(--red);
}

.brand-copy small {
  margin-top: 6px;
  color: #8b877f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 1;
  height: 100%;
  color: #77736c;
  font-size: 13px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 0.2s ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--red);
  transition: 0.2s ease;
}

.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 34, 44, 0.1);
}

.search-box input {
  width: 122px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}

.search-box input::placeholder {
  color: #9a958d;
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 7vw;
  background: var(--ink);
  color: #e7e1d7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.status-strip i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(227, 34, 44, 0.2);
}

.status-strip strong {
  color: #aaa59e;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.popular-section,
.new-section,
.games-section {
  padding-right: 10vw;
  padding-left: 10vw;
}

.popular-section {
  position: relative;
  padding-top: 82px;
  padding-bottom: 105px;
  background:
    linear-gradient(rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.popular-section::before {
  position: absolute;
  top: 0;
  right: 10vw;
  left: 10vw;
  height: 6px;
  background: var(--red);
  content: "";
}

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

.section-heading > p {
  max-width: 330px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.75;
  text-align: right;
  word-break: keep-all;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow b {
  display: inline-flex;
  align-items: center;
  height: 24px;
  margin-right: 9px;
  padding: 0 9px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.12em;
}

h1,
h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.075em;
  word-break: keep-all;
}

h1 {
  max-width: 700px;
  font-size: clamp(48px, 5.7vw, 78px);
}

.popular-shelf {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr;
  gap: 28px;
  align-items: stretch;
}

.featured-game {
  display: block;
  min-width: 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 10px 10px 0 var(--red);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-game:hover {
  transform: translate(-3px, -3px);
  box-shadow: 14px 14px 0 var(--red);
}

.featured-visual {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}

.rank-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.featured-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  min-height: 148px;
  padding: 25px 27px 28px;
}

.featured-copy > div {
  min-width: 0;
}

.featured-copy p {
  margin: 0 0 7px;
  color: #bcb7b0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.featured-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.featured-copy span {
  display: block;
  color: #c1bdb6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  word-break: keep-all;
}

.featured-copy > strong {
  flex-shrink: 0;
  padding-bottom: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  border-bottom: 2px solid var(--red);
}

.featured-copy i {
  color: var(--red);
  font-size: 17px;
  font-style: normal;
}

.shelf-side {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.side-game {
  display: grid;
  grid-template-columns: 32px 96px 1fr 20px;
  align-items: center;
  gap: 15px;
  min-height: 142px;
  padding: 0 14px 0 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.side-game:hover {
  background: var(--white);
}

.side-rank {
  align-self: start;
  padding-top: 20px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.side-thumb {
  height: 82px;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.side-game small,
.next-slot small {
  display: block;
  margin-bottom: 5px;
  color: #878179;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.side-game h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.side-game p,
.next-slot p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.side-arrow {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  transition: 0.2s ease;
}

.side-game:hover .side-arrow {
  transform: translate(3px, -3px);
}

.next-slot {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 126px;
  padding: 0 16px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-deep);
}

.next-slot > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.next-slot strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
}

.shelf-signature {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  overflow: hidden;
  padding: 22px;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
  isolation: isolate;
}

.shelf-signature::before {
  position: absolute;
  top: -40%;
  right: -19%;
  z-index: -1;
  width: 62%;
  height: 175%;
  background: var(--red);
  content: "";
  transform: rotate(18deg);
}

.shelf-signature span,
.shelf-signature strong {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.shelf-signature strong {
  color: var(--red);
}

.shelf-signature small {
  margin-top: 15px;
  color: #aaa49c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.game-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--game-background);
  isolation: isolate;
}

.game-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.09));
  content: "";
}

.visual-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    130deg,
    transparent 0 31px,
    rgba(255, 255, 255, 0.13) 32px 34px
  );
  transform: scale(1.4);
}

.visual-orbit {
  position: absolute;
  top: 18%;
  left: 27%;
  width: 45%;
  height: 64%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  transform: rotate(-31deg);
}

.game-visual > strong {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  color: #fff;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 900;
  text-shadow: 5px 6px 0 rgba(25, 27, 27, 0.2);
  transform: translate(-50%, -50%) rotate(-7deg);
}

.new-section {
  padding-top: 90px;
  padding-bottom: 96px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mini-heading {
  margin-bottom: 33px;
}

.mini-heading h2 {
  font-size: clamp(42px, 4.5vw, 62px);
}

.new-feature {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 36px;
  align-items: stretch;
}

.new-feature > .game-card {
  margin: 0;
}

.new-feature > p {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 0 0 24px;
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  word-break: keep-all;
}

.new-feature > p::before {
  width: 45px;
  height: 8px;
  margin-bottom: auto;
  background: var(--red);
  content: "";
}

.new-feature > p strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
}

.new-feature > p span {
  margin-bottom: 24px;
}

.new-feature > p a {
  align-self: flex-start;
  padding: 9px 13px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.new-feature > p a:hover {
  background: var(--red);
}

.games-section {
  padding-top: 91px;
  padding-bottom: 112px;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.games-heading h2 {
  font-size: clamp(44px, 5vw, 66px);
}

.filter-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin: 39px 0 27px;
  padding-bottom: 2px;
}

.filter-row button {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #c8c1b5;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.62);
  color: #69645d;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
  transition: 0.2s ease;
}

.filter-row button:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-row button.selected {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  box-shadow: 3px 3px 0 var(--ink);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
}

.game-grid.is-small {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:hover {
  border-color: var(--ink);
  box-shadow: 7px 7px 0 var(--red);
  transform: translate(-3px, -3px);
}

.game-card > a {
  display: block;
}

.card-visual {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.card-visual .game-visual {
  transition: transform 0.45s ease;
}

.game-card:hover .game-visual {
  transform: scale(1.045);
}

.new-badge,
.open-badge {
  position: absolute;
  top: 14px;
  z-index: 4;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.new-badge {
  left: 14px;
  background: var(--red);
  color: #fff;
}

.open-badge {
  right: 14px;
  background: var(--ink);
  color: #fff;
}

.card-copy {
  min-height: 151px;
  padding: 18px 19px 20px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  color: #88827a;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.card-meta span:first-child {
  color: var(--red);
  font-weight: 900;
}

.card-copy h3 {
  margin: 0 0 8px;
  font-size: 27px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.065em;
}

.card-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  word-break: keep-all;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 62px 0;
  border: 2px dashed #c9c2b6;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.empty-state strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.guide-section {
  padding: 104px 10vw 110px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.guide-section > header {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.guide-section > header .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -25px;
}

.guide-section > header h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.guide-section > header > p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
  word-break: keep-all;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.guide-grid article {
  min-height: 230px;
  padding: 27px 27px 32px;
  border-right: 1px solid var(--line);
}

.guide-grid article:last-child {
  border-right: 0;
}

.guide-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.guide-grid h3 {
  margin: 0 0 9px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.guide-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  word-break: keep-all;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.3fr;
  gap: 70px;
  padding: 94px 10vw 104px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq-section h2 {
  font-size: clamp(42px, 4.8vw, 62px);
}

.faq-list {
  border-top: 3px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 54px 23px 2px;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.035em;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 5px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  content: "+";
}

.faq-list details[open] summary::after {
  background: var(--red);
  content: "−";
}

.faq-list details p {
  max-width: 650px;
  margin: -4px 54px 24px 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  word-break: keep-all;
}

.about-section {
  display: grid;
  grid-template-columns: 92px 1fr 300px;
  align-items: center;
  gap: 38px;
  padding: 76px 10vw;
  background: var(--red);
  color: #fff;
}

.about-section h2 {
  font-size: clamp(37px, 3.7vw, 50px);
  letter-spacing: -0.07em;
}

.about-section em {
  color: var(--ink);
}

.about-section .eyebrow {
  color: #fff;
}

.about-section > p {
  margin: 0;
  color: #ffe8e5;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.8;
  word-break: keep-all;
}

.about-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 5px 5px 0 #fff;
  transform: rotate(-8deg);
}

.about-mark span {
  color: var(--red);
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 34px 10vw;
  border-top: 1px solid #3d3b38;
  background: var(--ink);
  color: #96918a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

footer a {
  color: #fff;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}

.site-footer nav a {
  color: #bdb7af;
  letter-spacing: -0.01em;
}

.site-footer nav a:hover {
  color: #fff;
}

.footer-identity,
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-identity strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.footer-identity span,
.footer-meta {
  font-size: 8px;
}

.footer-meta {
  align-items: flex-end;
}

.info-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 10vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.back-home {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 3px 3px 0 var(--red);
}

.back-home span {
  color: var(--red);
}

.info-page {
  min-height: 70vh;
}

.info-hero {
  padding: 92px 10vw 74px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.info-hero h1 {
  max-width: 900px;
  margin-bottom: 27px;
  font-size: clamp(46px, 6.6vw, 84px);
}

.info-hero > p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.8;
  word-break: keep-all;
}

.info-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 78px 6vw 100px;
}

.info-content section {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) 1fr;
  gap: 48px;
  padding: 33px 0 38px;
  border-top: 1px solid var(--line);
}

.info-content section:first-child {
  border-top: 3px solid var(--ink);
}

.info-content h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.info-content p,
.info-content ul {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
  word-break: keep-all;
}

.policy-copy {
  display: grid;
  gap: 18px;
}

.policy-copy a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.info-content ul {
  padding-left: 20px;
}

.info-content li + li {
  margin-top: 6px;
}

.info-content .review-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #938d85;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.info-content .contact-status {
  display: block;
  padding: 35px;
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--red);
}

.contact-status > span,
.contact-status > strong {
  display: block;
}

.contact-status > span {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.contact-status > strong {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.contact-email {
  color: var(--ink);
  font-size: clamp(17px, 2.6vw, 27px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 6px;
}

.not-found-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.not-found-page > section {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
  padding: 100px 10vw;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.not-found-page h1 {
  margin-bottom: 26px;
}

.not-found-page > section > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.not-found-page > section > a {
  align-self: flex-start;
  margin-top: 12px;
  padding: 13px 17px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 4px 4px 0 var(--red);
}

.error-code {
  position: absolute;
  right: 5vw;
  bottom: -0.22em;
  color: var(--red);
  font-size: clamp(200px, 31vw, 470px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.12em;
  opacity: 0.1;
}

.no-games {
  display: grid;
  place-items: center;
  min-height: 100vh;
  text-align: center;
}

.no-games strong {
  font-size: 32px;
  font-weight: 900;
}

.no-games p {
  color: var(--muted);
  font-weight: 600;
}

*:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .topbar,
  .status-strip,
  .popular-section,
  .new-section,
  .games-section,
  .guide-section,
  .faq-section,
  .about-section,
  footer {
    padding-right: 7vw;
    padding-left: 7vw;
  }

  .popular-section::before {
    right: 7vw;
    left: 7vw;
  }

  .popular-shelf {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .side-game {
    grid-template-columns: 28px 78px 1fr 16px;
    gap: 11px;
  }

  .side-thumb {
    height: 68px;
  }

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

  .faq-section {
    gap: 45px;
  }

  .about-section {
    grid-template-columns: 80px 1fr;
  }

  .about-section > p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .topbar {
    height: 70px;
    gap: 18px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small,
  .main-nav {
    display: none;
  }

  .search-box {
    margin-left: auto;
    padding: 9px 11px;
  }

  .search-box input {
    width: 79px;
  }

  .status-strip {
    min-height: 42px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .status-strip strong {
    display: none;
  }

  .popular-section,
  .new-section,
  .games-section,
  .guide-section,
  .faq-section {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .popular-section {
    padding-top: 55px;
    padding-bottom: 70px;
    background-size: 34px 34px;
  }

  .popular-section::before {
    right: 5vw;
    left: 5vw;
    height: 5px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading > p {
    margin: 0;
    font-size: 12px;
    text-align: left;
  }

  h1 {
    font-size: clamp(42px, 13vw, 57px);
  }

  .popular-shelf {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featured-game {
    box-shadow: 6px 6px 0 var(--red);
  }

  .featured-visual {
    height: 255px;
  }

  .featured-copy {
    min-height: 139px;
    padding: 21px 19px 23px;
  }

  .featured-copy h2 {
    font-size: 34px;
  }

  .featured-copy span {
    font-size: 12px;
  }

  .featured-copy > strong {
    display: none;
  }

  .side-game {
    grid-template-columns: 28px 76px 1fr 18px;
    min-height: 105px;
    gap: 10px;
  }

  .side-thumb {
    height: 62px;
  }

  .next-slot {
    min-height: 100px;
  }

  .shelf-signature {
    min-height: 128px;
  }

  .new-section,
  .games-section {
    padding-top: 66px;
    padding-bottom: 74px;
  }

  .mini-heading {
    margin-bottom: 25px;
  }

  .new-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .new-feature > p {
    min-height: 225px;
    padding-bottom: 20px;
  }

  .game-grid,
  .game-grid.is-small {
    grid-template-columns: 1fr;
  }

  .card-visual {
    height: 230px;
  }

  .guide-section {
    padding-top: 70px;
    padding-bottom: 76px;
  }

  .guide-section > header {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 35px;
  }

  .guide-section > header .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .guide-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guide-grid article:last-child {
    border-bottom: 0;
  }

  .guide-grid article > span {
    margin-bottom: 32px;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 70px;
    padding-bottom: 78px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 7vw;
  }

  .about-section > p {
    grid-column: auto;
  }

  .about-section h2 {
    font-size: 38px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 7vw;
    line-height: 1.6;
  }

  .site-footer nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .footer-meta {
    align-items: flex-start;
  }

  .info-topbar {
    min-height: 70px;
    padding: 0 5vw;
  }

  .info-topbar .brand-copy small {
    display: none;
  }

  .back-home {
    padding: 8px 10px;
    font-size: 10px;
  }

  .info-hero {
    padding: 70px 5vw 56px;
    background-size: 34px 34px;
  }

  .info-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .info-hero > p:last-child {
    font-size: 14px;
  }

  .info-content {
    padding: 50px 5vw 72px;
  }

  .info-content section {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 27px 0 31px;
  }

  .info-content .contact-status {
    padding: 26px 22px;
    box-shadow: 5px 5px 0 var(--red);
  }

  .not-found-page > section {
    min-height: 630px;
    padding: 75px 7vw;
  }

  .error-code {
    right: -4vw;
    bottom: -0.05em;
    font-size: 58vw;
  }
}

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

  .featured-game,
  .side-arrow,
  .game-card,
  .game-visual,
  .main-nav a::after {
    transition: none !important;
  }
}
