:root {
  --bg: #0b0c10;
  --bg-elevated: #111319;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.05);
  --fg: #f4f4f5;
  --fg-muted: #a1a1aa;
  --fg-dim: #71717a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --accent: #7aa2ff;
  --accent-2: #c4b5fd;
  --accent-3: #f0abfc;
  --accent-live: #86efac;
  --accent-soon: #fcd34d;

  --grad-accent: linear-gradient(135deg, #7aa2ff 0%, #c4b5fd 50%, #f0abfc 100%);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;

  --container: 1120px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-sans: "Inter", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }

/* --- Background accents --- */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 40%, transparent 85%);
  z-index: 0;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
}

.bg-glow--a {
  top: -200px; left: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, #7aa2ff 0%, transparent 70%);
}

.bg-glow--b {
  top: 20%; right: -200px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, #f0abfc 0%, transparent 70%);
  opacity: 0.22;
}

/* --- Layout --- */
.nav, main, .footer {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 32px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.nav__logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--grad-accent);
  color: #0b0c10;
  font-weight: 900;
  margin-right: 8px;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  color: var(--fg-muted);
}
.nav__links a { transition: color 0.2s var(--ease-out); }
.nav__links a:hover { color: var(--fg); }

main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 96px;
}

/* --- Hero --- */
.hero {
  padding: 64px 0 96px;
}

.hero__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(196, 181, 253, 0.08);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__title-line { display: block; }

.hero__title-line--accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  max-width: 580px;
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease-out), background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn--primary { background: var(--fg); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); background: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--fg-muted); background: var(--bg-card); }

.btn[aria-disabled="true"],
.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

/* --- Sections --- */
.section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

/* --- Games --- */
.games {
  display: grid;
  gap: 32px;
}

.game {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out), border-color 0.3s;
  opacity: 0;
  transform: translateY(24px);
}

.game[data-revealed="true"] {
  opacity: 1;
  transform: translateY(0);
}

.game:hover { border-color: var(--border-strong); }

.game__media {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, #1a1c22 0%, #0f1116 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game__keyvisual,
.game__screenshot--lead {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LOG STORY X — title logo (contain, with generous padding) */
.game--log-story-x .game__media {
  padding: 72px 64px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 180, 120, 0.15), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 100, 100, 0.12), transparent 55%),
    linear-gradient(135deg, #15100e 0%, #0a0808 100%);
}

.game--log-story-x .game__keyvisual {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  max-width: min(70%, 280px);
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.55));
}

.game__icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
}

/* NIGHT STOCK — screenshot stack */
.game__media--stack {
  padding: 36px;
}

.game__media--stack .game__screenshot--lead {
  position: relative;
  inset: auto;
  width: 60%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  transform: rotate(-3deg);
  z-index: 1;
}

.game__media--stack .game__screenshot:not(.game__screenshot--lead) {
  position: absolute;
  right: 8%;
  bottom: 36px;
  width: 38%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  transform: rotate(6deg);
  z-index: 2;
}

/* BRAVER'S Σ — character collage */
.game__media--bravers {
  padding: 24px;
  background:
    radial-gradient(circle at 20% 30%, rgba(122, 162, 255, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(240, 171, 252, 0.15), transparent 50%),
    linear-gradient(135deg, #14161d 0%, #0b0c10 100%);
}

.game__character {
  position: absolute;
  width: 42%;
  max-width: 200px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.5));
  transition: transform 0.6s var(--ease-out);
}

.game__character--1 { top: 6%;  left: 4%;   transform: rotate(-6deg); z-index: 3; }
.game__character--2 { top: 14%; right: 6%;  transform: rotate(5deg);  z-index: 2; }
.game__character--3 { bottom: 8%; left: 12%; transform: rotate(4deg); z-index: 2; }
.game__character--4 { bottom: 4%; right: 10%; transform: rotate(-4deg); z-index: 3; }

.game:hover .game__character--1 { transform: rotate(-8deg) translateY(-6px); }
.game:hover .game__character--2 { transform: rotate(7deg)  translateY(-4px); }
.game:hover .game__character--3 { transform: rotate(6deg)  translateY(-4px); }
.game:hover .game__character--4 { transform: rotate(-6deg) translateY(-6px); }

.game__logo {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  max-width: 220px;
  z-index: 4;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}

.game__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game__no {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.game__media-link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.game__title {
  font-size: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.game__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.game__title a:hover {
  color: var(--accent-2);
}

.game__title-en {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.game__tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-2);
}

.game__features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--fg-muted);
  margin: 4px 0 8px;
}

.game__features li {
  position: relative;
  padding-left: 16px;
}

.game__features li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--accent);
}

.game__meta {
  font-size: 13px;
  color: var(--fg-dim);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.game__meta .dot {
  color: var(--border-strong);
  font-weight: 400;
  margin: 0 2px;
}

.game__meta .is-live {
  color: var(--accent-live);
  font-weight: 600;
}

.game__meta .is-soon {
  color: var(--accent-soon);
  font-weight: 600;
}

.game__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Alternate layout for second game */
.game--night-stock {
  grid-template-columns: 1fr 1.1fr;
}

.game--night-stock .game__media { order: 2; }
.game--night-stock .game__body  { order: 1; }

/* --- About --- */
.about__text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about__text p {
  color: var(--fg-muted);
  font-size: 17px;
  margin-bottom: 16px;
}

.about__text strong {
  color: var(--fg);
  font-weight: 700;
}

/* --- FAQ --- */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item[open] {
  border-color: var(--border-strong);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  position: relative;
  padding-right: 56px;
  transition: background 0.15s;
}

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

.faq__item summary:hover {
  background: var(--bg-card-hover);
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s var(--ease-out);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  padding: 0 24px 20px;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq__item p a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.4);
}

.faq__item p a:hover {
  text-decoration-color: var(--accent-2);
}

.faq__item p strong {
  color: var(--fg);
  font-weight: 700;
}

/* --- Contact --- */
.contact__links {
  display: grid;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.contact__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.contact__item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.contact__icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--grad-accent);
  color: var(--bg);
  font-size: 22px;
  font-weight: 700;
}

.contact__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.contact__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

/* --- Breadcrumb (detail pages) --- */
.breadcrumb {
  padding: 32px 0 16px;
  font-size: 13px;
  color: var(--fg-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--fg-muted);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--fg);
}

.breadcrumb [aria-current="page"] {
  color: var(--fg);
  font-weight: 500;
}

/* --- Detail page --- */
.detail {
  padding: 16px 0 64px;
}

.detail__hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.detail__hero-media {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  overflow: hidden;
}

.detail--log-story-x .detail__hero-media {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 180, 120, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255, 100, 100, 0.14), transparent 55%),
    linear-gradient(135deg, #15100e 0%, #0a0808 100%);
}

.detail--night-stock .detail__hero-media {
  background:
    radial-gradient(circle at 30% 30%, rgba(122, 162, 255, 0.15), transparent 55%),
    linear-gradient(135deg, #12131b 0%, #0a0b10 100%);
}

.detail--bravers .detail__hero-media {
  background:
    radial-gradient(circle at 20% 30%, rgba(122, 162, 255, 0.22), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(240, 171, 252, 0.18), transparent 55%),
    linear-gradient(135deg, #14161d 0%, #0b0c10 100%);
}

.detail__hero-logo {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}

.detail__hero-media--bravers .detail__hero-logo {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 60%;
  max-height: 120px;
}

.detail__character {
  position: absolute;
  width: 42%;
  max-width: 200px;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.5));
}

.detail__character--1 { top: 6%;  left: 4%;   transform: rotate(-6deg); z-index: 3; }
.detail__character--2 { top: 14%; right: 6%;  transform: rotate(5deg);  z-index: 2; }
.detail__character--3 { bottom: 20%; left: 10%; transform: rotate(4deg); z-index: 2; }
.detail__character--4 { bottom: 18%; right: 8%; transform: rotate(-4deg); z-index: 3; }

.detail__hero-media--stack {
  padding: 40px;
}

.detail__hero-shot {
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  max-height: 320px;
  object-fit: contain;
}

.detail__hero-shot--lead {
  position: relative;
  width: 60%;
  transform: rotate(-3deg);
  z-index: 1;
}

.detail__hero-shot:not(.detail__hero-shot--lead) {
  position: absolute;
  right: 8%;
  bottom: 36px;
  width: 38%;
  max-height: 220px;
  transform: rotate(6deg);
  z-index: 2;
}

.detail__hero-body {
  padding: 48px 48px 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.detail__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0;
}

.detail__title-en {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: -4px 0 8px;
}

.detail__tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-2);
}

.detail__status {
  font-size: 13px;
  color: var(--fg-dim);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 8px 0;
}

.detail__status .dot { color: var(--border-strong); }
.detail__status .is-live { color: var(--accent-live); font-weight: 600; }
.detail__status .is-soon { color: var(--accent-soon); font-weight: 600; }

.detail__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.detail__section {
  margin-bottom: 56px;
}

.detail__heading {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.detail__lede {
  max-width: 760px;
}

.detail__lede p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.9;
}

.detail__features {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.detail__features li {
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.detail__features strong {
  color: var(--fg);
  font-weight: 700;
  display: inline-block;
  margin-right: 4px;
}

.detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.detail__gallery img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.detail__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.detail__facts > div {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.detail__facts > div:nth-child(-n+1) { border-top: none; }

.detail__facts dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}

.detail__facts dd {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin: 0;
}

.detail__related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.detail__related-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.detail__related-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.detail__related-item img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}

.detail__related-no {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.detail__related-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin: 2px 0 2px;
}

.detail__related-tag {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* --- Press Kit --- */
.press__hero {
  padding: 32px 0 48px;
}

.press__hint {
  color: var(--fg-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.press__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.press__asset {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg-muted);
  font-size: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-out);
}

.press__asset:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.press__asset img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #0a0a0a;
  border-radius: 10px;
}

.press__asset--wide img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.press__asset span {
  font-weight: 600;
  color: var(--fg);
  word-break: break-all;
}

.press__inline-link {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(196, 181, 253, 0.4);
}

/* --- Footer --- */
.footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px;
  border-top: 1px solid var(--border);
  color: var(--fg-dim);
  font-size: 13px;
  text-align: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .game,
  .game--night-stock {
    grid-template-columns: 1fr;
  }

  .game--night-stock .game__media { order: 0; }
  .game--night-stock .game__body  { order: 0; }

  .game__media {
    min-height: 260px;
  }

  .game--log-story-x .game__media {
    padding: 56px 40px;
  }

  .game--log-story-x .game__keyvisual {
    max-width: 280px;
  }

  .game__body {
    padding: 28px 24px;
  }

  .detail__hero {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .detail__hero-body {
    padding: 32px 28px;
  }

  .detail__hero-media {
    min-height: 260px;
    padding: 48px 32px;
  }
}

@media (max-width: 600px) {
  .nav { padding: 20px; }
  .nav__links { gap: 16px; font-size: 14px; }

  main { padding: 0 20px 64px; }

  .hero { padding: 32px 0 64px; }
  .section { padding: 56px 0; }

  .game__icon {
    width: 48px;
    height: 48px;
    top: 14px;
    left: 14px;
    border-radius: 12px;
  }

  .game__body { padding: 24px 20px; }
  .game__title { font-size: 24px; }

  .game--log-story-x .game__media {
    padding: 48px 32px;
  }

  .game--log-story-x .game__keyvisual {
    max-width: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .game { opacity: 1; transform: none; transition: none; }
  .btn, .contact__item { transition: none; }
}
