/* ===== Base ===== */
:root {
  --bg: #fbfafb;
  --bg-deep: #f3eef5;
  --ink: #1a1418;
  --ink-soft: #5a4d5e;
  --muted: #9388a0;
  --purple: #8b1d8b;
  --purple-deep: #5a0e5a;
  --purple-soft: #c89ac8;
  --blue: #2a5d8f;
  --pink: #e89ab8;
  --mincho: "Shippori Mincho", "Hina Mincho", "Yu Mincho", "游明朝", serif;
  --gothic: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --nav-h: 104px;
}
* , *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--ink);
  font-family: var(--gothic);
  overflow-x: hidden; max-width: 100%;
}
img { display: block; }
a { color: inherit; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 56px;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(251,250,251,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-deep);
}
.nav-logo img { height: 64px; width: auto; }
.nav-links { display: flex; gap: 44px; }
.nav-links a {
  font-family: var(--mincho); font-size: 20px; color: var(--ink-soft);
  text-decoration: none; cursor: pointer;
}
.nav-ja { display: block; font-weight: 500; }
.nav-en {
  display: block;
  font-family: var(--serif); font-size: 14px; color: var(--muted);
  letter-spacing: 0.2em; font-style: italic;
}
.page { padding-top: var(--nav-h); position: relative; }

/* ===== Sections shared ===== */
section { position: relative; }
.eyebrow {
  font-family: var(--serif); font-size: 14px; color: var(--purple);
  letter-spacing: 0.4em; font-style: italic;
}
h1, h2, h3 { font-family: var(--mincho); font-weight: 500; margin: 0; }
.lead {
  font-family: var(--mincho); font-size: 18px; line-height: 2;
  color: var(--ink-soft);
}

/* ===== HERO ===== */
.hero {
  padding: 40px 56px 100px;
  min-height: 720px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 40px; align-items: center; margin-top: 60px; position: relative;
}
.hero-eyebrow {
  font-family: var(--serif); font-size: 17px; color: var(--purple);
  letter-spacing: 0.4em; font-style: italic; margin-bottom: 32px;
}
.hero-logo {
  max-width: 480px; width: 100%; margin-bottom: 36px;
  filter: drop-shadow(0 8px 24px rgba(139,29,139,0.15));
}
.hero-tagline {
  font-family: var(--mincho); font-size: 24px; line-height: 2;
  color: var(--ink); font-weight: 400; max-width: 520px; margin: 0;
}
.hero-tagline .em { color: var(--purple); font-weight: 500; }
.hero-buttons {
  display: flex; gap: 14px; margin-top: 44px; align-items: center; flex-wrap: wrap;
}
.btn-primary {
  background: var(--ink); border: none; color: var(--bg);
  padding: 15px 30px; font-family: var(--mincho); font-size: 16px;
  font-weight: 500; letter-spacing: 0.15em; cursor: pointer;
}
.btn-secondary {
  background: transparent; border: 1px solid var(--ink);
  color: var(--ink); padding: 14px 28px;
  font-family: var(--mincho); font-size: 16px; font-weight: 500;
  letter-spacing: 0.15em; cursor: pointer;
  text-decoration: none; display: inline-block;
}
.hero-meta {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid var(--bg-deep);
  display: flex; gap: 48px; flex-wrap: wrap;
}
.hero-meta .key {
  font-family: var(--mincho); font-size: 15px; color: var(--ink-soft);
  letter-spacing: 0.2em; font-weight: 500;
}
.hero-meta .val {
  font-family: var(--mincho); font-size: 29px; color: var(--ink);
  margin-top: 6px; font-weight: 600; letter-spacing: 0.04em;
}
.hero-meta .sub {
  font-family: var(--serif); font-size: 22px; color: var(--purple-deep);
  font-style: italic; margin-top: 6px; letter-spacing: 0.06em; font-weight: 500;
}
.hero-portrait { position: relative; }
.hero-portrait .glow {
  position: absolute; inset: -30px -10px;
  background: radial-gradient(ellipse at center, rgba(200,154,200,0.25) 0%, transparent 70%);
  filter: blur(40px);
}
.hero-portrait img {
  width: 100%; max-width: 460px; position: relative;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 75%, transparent 100%);
}

/* ===== PROLOGUE ===== */
.prologue {
  padding: 100px 56px; background: var(--bg-deep); overflow: hidden;
}
.prologue-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.prologue-img {
  box-shadow: 0 30px 80px rgba(26,20,24,0.25);
}
.prologue-img img { width: 100%; }
.prologue-text .eyebrow {
  margin-bottom: 16px;
}
.prologue-text h3 {
  font-family: var(--mincho); font-size: 48px; font-weight: 500;
  margin: 0 0 32px; line-height: 1.3; letter-spacing: 0.05em;
}
.prologue-text .quote {
  font-family: var(--mincho); font-size: 35px; color: var(--purple-deep);
  font-weight: 500; line-height: 1.5; margin: 0 0 24px;
  border-left: 2px solid var(--purple); padding-left: 20px;
}
.prologue-text p {
  font-family: var(--mincho); font-size: 19px; line-height: 2;
  color: var(--ink-soft); margin: 0;
}

/* ===== STORY ===== */
.story { padding: 140px 56px; }
.story-grid {
  display: grid; grid-template-columns: 0.4fr 0.6fr; gap: 80px; align-items: start;
}
.story-side { position: sticky; top: 100px; }
.story-side h2 {
  font-size: 70px; margin: 0; letter-spacing: 0.05em; line-height: 1.1;
}
.story-side .meta {
  font-family: var(--serif); font-size: 20px; color: var(--muted);
  font-style: italic; margin-top: 16px; letter-spacing: 0.1em;
}
.story-rule { width: 60px; height: 1px; background: var(--purple); margin: 40px 0; }
.story-body {
  font-family: var(--mincho); font-size: 22px; line-height: 2.2;
  color: var(--ink); font-weight: 400;
}
.story-body p { margin: 0 0 28px; }
.story-body p.lead {
  font-size: 26px; color: var(--purple-deep); font-weight: 500;
  margin: 0 0 32px;
}
.story-body p.outro {
  margin: 0; color: var(--purple); font-style: italic;
}

/* ===== CHARACTERS ===== */
.characters {
  padding: 140px 56px; background: var(--bg-deep);
}
.section-head { margin-bottom: 60px; }
.section-head h2 {
  font-size: 70px; margin: 12px 0 0; letter-spacing: 0.05em;
}
.char-grid {
  display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start;
}
.char-list {
  border-left: 1px solid var(--bg-deep); background: var(--bg);
  overflow-y: auto;
  position: sticky; top: 80px;
  scrollbar-width: thin; scrollbar-color: rgba(139,29,139,0.45) transparent;
}
.char-list::-webkit-scrollbar { width: 6px; }
.char-list::-webkit-scrollbar-track { background: transparent; }
.char-list::-webkit-scrollbar-thumb {
  background: rgba(139,29,139,0.35); border-radius: 3px;
}
.char-list::-webkit-scrollbar-thumb:hover { background: rgba(139,29,139,0.6); }
.char-item {
  background: transparent; border: none;
  border-left: 2px solid transparent;
  text-align: left; padding: 14px 20px; cursor: pointer;
  transition: all 0.3s; width: 100%;
  display: flex; align-items: center; gap: 14px;
  font-family: inherit; color: inherit;
}
.char-item.active { background: var(--bg-deep); border-left-color: var(--purple); }
.char-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg-deep); overflow: hidden; flex-shrink: 0;
  border: 1px solid transparent; position: relative;
}
.char-item.active .char-avatar { border-color: var(--purple); }
.char-avatar img {
  position: absolute; transform: translateX(-50%);
  height: auto; object-fit: cover;
  filter: grayscale(0.4) opacity(0.85);
}
.char-item.active .char-avatar img { filter: none; }
.char-meta { flex: 1; min-width: 0; display: block; }
.char-meta .idx,
.char-meta .name,
.char-meta .role { display: block; }
.char-meta .idx {
  font-family: var(--serif); font-size: 13px; color: var(--purple);
  letter-spacing: 0.3em; font-style: italic;
}
.char-meta .name {
  font-family: var(--mincho); font-size: 19px; color: var(--ink);
  margin-top: 2px; font-weight: 500;
}
.char-meta .role {
  font-family: var(--gothic); font-size: 14px; color: var(--muted);
  margin-top: 2px; letter-spacing: 0.1em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.char-detail {
  background: var(--bg); padding: 36px 44px; position: relative;
  min-height: 450px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start;
}
.char-detail .pansy-bg {
  position: absolute; top: -20px; right: -20px; opacity: 0.15;
  pointer-events: none;
}
.char-detail .info { position: relative; }
.char-detail .kana {
  font-family: var(--serif); font-size: 14px; color: var(--purple);
  letter-spacing: 0.4em; font-style: italic; margin-bottom: 12px;
}
.char-detail .name {
  font-family: var(--mincho); font-size: 35px; font-weight: 500;
  margin: 0 0 6px; letter-spacing: 0.08em;
}
.char-detail .role {
  font-family: var(--gothic); font-size: 14px; color: var(--muted);
  letter-spacing: 0.2em; margin-bottom: 20px;
}
.char-detail .quote-wrap {
  border-left: 2px solid var(--purple); padding-left: 16px; margin-bottom: 20px;
}
.char-detail .quote {
  font-family: var(--mincho); font-size: 18px; font-weight: 400;
  color: var(--purple-deep); line-height: 1.6;
}
.char-detail .desc {
  font-family: var(--mincho); font-size: 15px; line-height: 1.9;
  color: var(--ink-soft); margin: 0;
}
.char-portrait {
  position: relative;
}
.char-portrait .glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,29,139,0.13) 0%, transparent 70%);
  filter: blur(20px);
}
.char-portrait .frame {
  position: relative;
  width: 100%; max-width: 420px; margin: 0 auto;
  aspect-ratio: 4 / 5; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}
.char-portrait .frame img {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110%; height: auto;
}

/* ===== WORLD / MAP ===== */
.world { padding: 140px 56px; }
.world-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center;
}
.world-text h2 { font-size: 70px; margin: 12px 0 24px; letter-spacing: 0.05em; }
.world-text p {
  font-family: var(--mincho); font-size: 18px; line-height: 2.1;
  color: var(--ink-soft); margin: 0 0 24px;
}
.map-wrap {
  position: relative; width: 100%;
  box-shadow: 0 20px 60px rgba(26,20,24,0.15);
  background: var(--bg-deep);
}
.map-wrap img { width: 100%; height: auto; }
.map-pin {
  position: absolute; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
.map-pin .marker {
  width: 20px; height: 26px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
.map-pin .marker path {
  fill: var(--purple-soft);
  opacity: 0.85;
}
.map-pin .lbl {
  font-family: var(--mincho); font-size: 13px;
  background: rgba(255,255,255,0.92); padding: 2px 8px;
  border: 1px solid var(--bg-deep); margin-top: 2px;
  white-space: nowrap; color: var(--ink);
}

/* ===== SYSTEM ===== */
.system {
  padding: 140px 56px; background: var(--ink); color: var(--bg);
  overflow: hidden;
}
.system .eyebrow { color: var(--purple-soft); }
.system h2 { font-size: 70px; margin: 12px 0 16px; }
.system .lead { color: #d8c8de; margin: 0 0 56px; }
.system-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px;
}
.system-card {
  padding-top: 32px; border-top: 1px solid rgba(200,154,200,0.25);
  text-decoration: none; color: inherit; display: block; cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}
.system-card:hover {
  transform: translateX(8px); border-top-color: var(--purple-soft);
}
.system-card .num {
  font-family: var(--serif); font-size: 14px; color: var(--purple-soft);
  letter-spacing: 0.4em; font-style: italic;
}
.system-card .title {
  font-family: var(--mincho); font-size: 35px; font-weight: 500;
  margin: 8px 0 14px;
}
.system-card .desc {
  font-family: var(--mincho); font-size: 17px; line-height: 1.9;
  color: #d8c8de;
}
.system-card .more {
  display: inline-block; margin-top: 16px;
  font-family: var(--serif); font-size: 14px; color: var(--purple-soft);
  letter-spacing: 0.3em; font-style: italic;
  transition: transform 0.3s;
}
.system-card:hover .more { transform: translateX(6px); }

/* ===== Screenshots (exploration / battle) ===== */
.shots {
  padding: 120px 56px 80px;
}
.shots.exploration { background: var(--bg-deep); }
.shots-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 48px; gap: 40px; flex-wrap: wrap;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
.shots-head h2 { font-size: 62px; margin: 12px 0 0; }
.shots-head p {
  font-family: var(--mincho); font-size: 18px; line-height: 2;
  color: var(--ink-soft); margin: 0;
}
.shots-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px;
}
.shot {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.span7 { grid-column: span 7; }
.shot.span5 { grid-column: span 5; }
.shot.sepia img { filter: sepia(0.2); }
.shot .label {
  position: absolute; bottom: 12px; left: 16px;
  font-family: var(--serif); font-size: 13px; color: var(--bg);
  letter-spacing: 0.3em; font-style: italic;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* ===== ROUTES ===== */
.routes { padding: 140px 56px; background: var(--bg); }
.routes .container { max-width: 1200px; margin: 0 auto; }
.routes .head { text-align: center; margin-bottom: 60px; }
.routes h2 { font-size: 62px; margin: 12px 0 20px; }
.routes .head p {
  font-family: var(--mincho); font-size: 19px; line-height: 2;
  color: var(--ink-soft); margin: 0 auto; max-width: 640px;
}
.routes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.route .img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.route .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.route .tag {
  position: absolute; top: 0; left: 0;
  background: var(--purple); color: var(--bg);
  font-family: var(--serif); font-size: 18px; font-style: italic;
  padding: 6px 16px; letter-spacing: 0.2em;
}
.roguelite {
  margin-top: 48px; background: var(--ink); color: var(--bg);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  position: relative; overflow: hidden;
}
.roguelite img { width: 100%; height: 100%; object-fit: cover; }
.roguelite .body { padding: 72px 64px; }
.roguelite .eyebrow { color: var(--purple-soft); }
.roguelite h3 {
  font-family: var(--mincho); font-size: 40px; font-weight: 500;
  margin: 12px 0 24px; line-height: 1.3;
}
.roguelite p {
  font-family: var(--mincho); font-size: 18px; line-height: 2;
  color: #d8c8de; margin: 0 0 24px;
}
.roguelite .rl-tags {
  display: flex; gap: 20px;
  font-family: var(--mincho); font-size: 15px;
  color: var(--purple-soft); letter-spacing: 0.1em;
  flex-wrap: wrap;
}

/* ===== RHYTHM ===== */
.rhythm {
  background: #0a1420; color: #e8f4ff; overflow: hidden;
}
.rhythm .head {
  padding: 120px 56px 60px; max-width: 1200px; margin: 0 auto;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.rhythm .eyebrow { color: #7af2c8; }
.rhythm h2 {
  font-family: var(--mincho); font-size: 62px; font-weight: 500;
  margin: 12px 0 0; color: #e8f4ff;
  text-shadow: 0 0 20px rgba(122,242,200,0.3);
}
.rhythm .head p {
  font-family: var(--mincho); font-size: 18px; line-height: 2;
  color: #a8c2d8; margin: 0;
}
.rhythm-feat {
  max-width: 1200px; margin: 0 auto; padding: 20px 56px 0;
}
.rhythm-feat img { width: 100%; height: auto; }
.rhythm-feat .cap {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(122,242,200,0.2);
  font-family: var(--mincho); font-size: 15px; color: #a8c2d8;
}
.rhythm-trio {
  max-width: 1200px; margin: 0 auto;
  padding: 60px 56px 120px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.rhythm-trio .item img { width: 100%; height: auto; }
.rhythm-trio .item .tag {
  margin-top: 12px;
  font-family: var(--serif); font-size: 11px; color: #7af2c8;
  letter-spacing: 0.3em; font-style: italic;
}
.rhythm-trio .item .lbl {
  margin-top: 4px;
  font-family: var(--mincho); font-size: 14px; color: #e8f4ff;
}

/* ===== RELEASE ===== */
.release {
  padding: 160px 56px; text-align: center; position: relative; overflow: hidden;
}
.release .body { position: relative; }
.release .eyebrow { font-size: 14px; }
.release .date {
  font-family: var(--mincho); font-size: 31px; color: var(--ink);
  margin: 24px 0 12px; font-weight: 500; letter-spacing: 0.1em;
}
.release h2 {
  font-family: var(--mincho); font-size: 84px; font-weight: 500;
  margin: 24px 0 40px; line-height: 1.15; letter-spacing: 0.05em;
}
.release h2 .em {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple) 60%, var(--purple-soft) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.release-cta {
  background: var(--ink); border: none; color: var(--bg);
  padding: 20px 48px; font-family: var(--mincho); font-size: 20px;
  font-weight: 500; letter-spacing: 0.2em; cursor: pointer;
  margin-top: 24px; text-decoration: none; display: inline-block;
}
.release-cta.locked {
  background: var(--muted); cursor: not-allowed; pointer-events: none;
}
.release-foot {
  font-family: var(--serif); font-size: 17px; color: var(--muted);
  margin-top: 24px; letter-spacing: 0.2em; font-style: italic;
}

/* ===== Footer ===== */
.footer {
  padding: 40px 56px; border-top: 1px solid var(--bg-deep);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.footer img { height: 52px; width: auto; }
.footer .copyright {
  font-family: var(--serif); font-size: 12px; color: var(--muted);
  letter-spacing: 0.2em; font-style: italic;
}

/* ===== Trailer modal ===== */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,8,12,0.88);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
}
.modal.open { display: flex; }
.modal-inner {
  position: relative;
  width: 100%; max-width: 1100px;
  aspect-ratio: 16/9; background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute; top: -44px; right: 0;
  background: transparent; border: none; color: #fff;
  font-size: 24px; line-height: 1; cursor: pointer; padding: 8px 4px;
}
.modal-inner iframe {
  width: 100%; height: 100%; border: 0;
}

/* ===== Decorative pansies ===== */
.pansy {
  display: inline-block; pointer-events: none;
}
.deco {
  position: absolute; pointer-events: none;
  z-index: 0;
}
.hero, .system, .release { overflow: hidden; }
.hero > *:not(.deco),
.system > *:not(.deco),
.release > *:not(.deco) { position: relative; z-index: 1; }

/* ===== Mobile (<= 768px) ===== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav { padding: 12px 16px; }
  .nav-logo img { height: 40px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .nav-en { display: none; }

  .hero { padding: 24px 18px 60px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
  .hero-meta { gap: 24px; }
  .hero-tagline { font-size: 19px; }
  .hero-meta .val { font-size: 24px; }

  .prologue { padding: 60px 18px; }
  .prologue-grid { grid-template-columns: 1fr; gap: 32px; }
  .prologue-text h3 { font-size: 31px; }
  .prologue-text .quote { font-size: 24px; }

  .story { padding: 80px 18px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-side { position: static; }
  .story-side h2 { font-size: 40px; }

  .characters { padding: 80px 18px; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: 40px; }
  .char-grid { grid-template-columns: 1fr; gap: 24px; }
  .char-list { position: static; height: 360px !important; }
  .char-detail {
    padding: 24px 18px; min-height: 0;
    grid-template-columns: 1fr; gap: 24px;
  }
  .char-detail .name { font-size: 26px; }

  .world { padding: 80px 18px; }
  .world-grid { grid-template-columns: 1fr; gap: 32px; }
  .world-text h2 { font-size: 40px; }
  .map-pin .lbl { font-size: 10px; padding: 1px 5px; }
  .map-pin .marker { width: 14px; height: 18px; }

  .system { padding: 80px 18px; }
  .system h2 { font-size: 40px; }
  .system-grid { grid-template-columns: 1fr; gap: 24px; }
  .system-card .title { font-size: 26px; }

  .shots { padding: 70px 18px 50px; }
  .shots-head h2 { font-size: 35px; }
  .shots-grid { grid-template-columns: 1fr; gap: 16px; }
  .shot.span7, .shot.span5 { grid-column: auto; }

  .routes { padding: 80px 18px; }
  .routes h2 { font-size: 35px; }
  .routes-grid { grid-template-columns: 1fr; gap: 24px; }
  .roguelite { grid-template-columns: 1fr; }
  .roguelite .body { padding: 36px 24px; }
  .roguelite h3 { font-size: 28px; }

  .rhythm .head { padding: 70px 18px 40px; }
  .rhythm h2 { font-size: 35px; }
  .rhythm-feat { padding: 12px 18px 0; }
  .rhythm-trio { grid-template-columns: 1fr; padding: 40px 18px 70px; gap: 24px; }

  .release { padding: 90px 18px; }
  .release h2 { font-size: 44px; }
  .release .date { font-size: 24px; }

  .footer { padding: 24px 18px; }

  .modal { padding: 16px; }
}
