@charset "UTF-8";

/* 作者：搭客佬
链接：https://www.hgmgdjw.cn/ */

:root {
  --ink: #181315;
  --muted: #6d6264;
  --paper: #fffaf2;
  --cream: #f7eddf;
  --card: #fffdf9;
  --line: #dfd0c2;
  --red: #f23b5d;
  --coral: #ff684f;
  --yellow: #ffcf36;
  --green: #169869;
  --dark: #141316;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

.container,
.header-inner,
.hero-inner,
.footer-inner {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 250, 242, 0.98);
  border-bottom: 1px solid var(--line);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

.site-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.site-brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy,
.footer-brand > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  white-space: nowrap;
}

.brand-copy span,
.footer-brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.site-nav ul,
.site-footer nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 25px 0 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--red);
  content: "";
  opacity: 0;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.i-menu,
.i-download,
.i-globe,
.i-avatar,
.i-top {
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.i-menu {
  width: 20px;
  height: 20px;
  background-image: url("../icons/menu.svg");
}

.i-download {
  width: 19px;
  height: 19px;
  background-image: url("../icons/download.svg");
}

.i-globe {
  width: 20px;
  height: 20px;
  background-image: url("../icons/globe.svg");
}

.i-avatar {
  width: 22px;
  height: 22px;
  background-image: url("../icons/avatar.svg");
}

.i-top {
  width: 20px;
  height: 20px;
  background-image: url("../icons/top.svg");
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 19, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 19, 21, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 70px;
  right: -140px;
  width: 390px;
  height: 390px;
  background: rgba(255, 207, 54, 0.28);
}

.hero::after {
  bottom: -190px;
  left: -140px;
  width: 410px;
  height: 410px;
  background: rgba(242, 59, 93, 0.08);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 70px;
  padding-block: 72px;
}

.eyebrow,
.section-index,
.console-kicker,
.ticket-copy > p {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-top: 16px;
  font-size: 50px;
  line-height: 0.98;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.hero-copy h2 {
  margin-top: 30px;
  font-size: 25px;
  line-height: 1.2;
}

.hero-intro {
  max-width: 620px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.feature-chips span {
  padding: 9px 15px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-action {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.primary-link {
  display: inline-flex;
  min-width: 210px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}

.primary-link:hover {
  color: var(--ink);
  background: var(--yellow);
}

.primary-link:hover .i-download {
  filter: brightness(0);
}

.age-label {
  color: var(--muted);
  font-size: 13px;
}

.remix-console {
  position: relative;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 rgba(242, 59, 93, 0.13);
}

.remix-console::before {
  position: absolute;
  top: -10px;
  left: 20px;
  width: 150px;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 20px);
  content: "";
}

.console-heading,
.panel-title,
.story-progress-copy,
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-heading h2 {
  margin-top: 2px;
  font-size: 30px;
  line-height: 1.2;
}

.sync-state {
  padding: 7px 10px;
  color: var(--green);
  background: #e9f8f1;
  font-size: 12px;
  font-weight: 800;
}

.sync-state::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.genre-tabs,
.twist-row,
.episode-list,
.console-actions,
.weekday-tabs {
  display: grid;
  gap: 8px;
}

.genre-tabs {
  margin-top: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.genre-tabs button,
.twist-row button,
.episode-list button,
.weekday-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.genre-tabs button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.twist-row {
  margin-top: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.twist-row button.is-active {
  border-color: var(--ink);
  background: var(--yellow);
}

.story-preview {
  display: grid;
  margin-top: 20px;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.story-preview > img {
  width: 145px;
  height: 190px;
  object-fit: contain;
  background: var(--cream);
  border: 1px solid var(--line);
}

.story-detail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.story-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.story-detail h3 {
  margin-top: 5px;
  font-size: 28px;
}

.story-detail > p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.story-progress-copy {
  margin-top: 24px;
  font-size: 12px;
}

.story-progress {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 8px;
  background: var(--cream);
}

.story-progress span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--red);
}

.episode-list {
  margin-top: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.episode-list button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.console-actions {
  margin-top: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.console-actions button {
  min-height: 50px;
  border: 1px solid var(--red);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.console-actions button.is-primary {
  border-color: var(--yellow);
  background: var(--yellow);
}

.section {
  padding-block: 105px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading > p {
  padding-bottom: 8px;
  color: var(--muted);
}

.studio-section {
  background: #fff4e6;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  border: 1px solid var(--line);
}

.studio-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--card);
}

.studio-step {
  min-height: 270px;
  padding: 34px 28px;
  text-align: left;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.studio-step span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.studio-step strong {
  display: block;
  font-size: 20px;
}

.studio-step small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.studio-step.is-active {
  background: #fff0a8;
}

.studio-step.is-active span {
  background: var(--red);
}

.studio-preview {
  padding: 38px;
  color: #fff;
  background: var(--dark);
}

.studio-preview > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.studio-preview h3 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.25;
}

.studio-preview p {
  margin-top: 22px;
  color: #d5cfd1;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.scene-tags span {
  padding: 7px 10px;
  border: 1px solid #5a5355;
  font-size: 12px;
}

.watchlist-section {
  background: var(--paper);
}

.watchlist-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.weekly-panel,
.ranking-panel {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fff;
}

.panel-title h3 {
  font-size: 25px;
}

.panel-title > span {
  color: var(--muted);
  font-size: 12px;
}

.weekday-tabs {
  margin-top: 24px;
  grid-template-columns: repeat(5, 1fr);
}

.weekday-tabs button.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.weekly-list {
  margin-top: 18px;
}

.weekly-list article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.weekly-list img {
  width: 60px;
  height: 70px;
  object-fit: contain;
  background: var(--cream);
}

.weekly-list div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.weekly-list strong,
.ranking-list strong {
  font-size: 15px;
}

.weekly-list span,
.ranking-list small {
  color: var(--muted);
  font-size: 12px;
}

.weekly-list em {
  padding: 5px 8px;
  color: var(--red);
  background: #fff0f3;
  font-size: 12px;
  font-style: normal;
}

.ranking-list {
  margin-top: 18px;
}

.ranking-list li {
  display: grid;
  min-height: 74px;
  grid-template-columns: 45px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
}

.ranking-list li > span {
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
}

.ranking-list div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ranking-list button {
  padding: 7px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.ranking-list button.is-followed {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.screens-section {
  background: #151316;
  color: #fff;
}

.screens-section .section-heading > p {
  color: #bdb4b6;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.screen-grid figure {
  overflow: hidden;
  background: #fff;
  border: 1px solid #464044;
}

.screen-media {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #08090c;
}

.screen-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.screen-grid figcaption {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
}

.screen-grid figcaption span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.screen-grid figcaption strong {
  font-size: 18px;
}

.faq-section {
  background: var(--paper);
}

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

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

.faq-item > button {
  display: grid;
  width: 100%;
  min-height: 78px;
  padding: 0 22px;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.faq-item > button span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.faq-item > button strong {
  font-size: 17px;
}

.faq-item > button i,
.official-site summary b {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.faq-item > button i::before,
.faq-item > button i::after,
.official-site summary b::before,
.official-site summary b::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: currentColor;
  content: "";
}

.faq-item > button i::after,
.official-site summary b::after {
  transform: rotate(90deg);
}

.faq-item.is-open > button i::after,
.official-site[open] summary b::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 74px 24px 86px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--muted);
}

.official-site {
  margin-top: 22px;
  border: 1px solid var(--ink);
  background: #fff;
}

.official-site summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

.official-site summary > span {
  display: flex;
  align-items: center;
  gap: 14px;
}

.official-site > p {
  padding: 0 56px 24px;
}

.official-site > p a {
  color: var(--red);
  word-break: break-all;
}

.reviews-section {
  background: #f5e9dc;
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 26px;
  flex-direction: column;
  background: #fff;
  border-top: 4px solid var(--red);
}

.review-card:nth-child(even) {
  border-top-color: var(--yellow);
}

.review-user {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.review-user .i-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: var(--cream);
  background-size: 22px;
}

.review-user strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  flex: 0 0 auto;
  color: var(--red);
  white-space: nowrap;
}

.review-rating i {
  display: inline-block;
  margin-left: 2px;
  color: var(--red);
  font-style: normal;
}

.review-card > p {
  margin-top: 24px;
  color: #423a3c;
  line-height: 1.9;
}

.review-card time {
  margin-top: auto;
  padding-top: 20px;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
}

.download-section {
  padding-block: 68px;
  color: #fff;
  background: var(--dark);
}

.download-ticket {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  align-items: stretch;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--yellow);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  top: -13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  content: "";
}

.download-ticket::before {
  left: 167px;
}

.download-ticket::after {
  right: 207px;
}

.ticket-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px dashed var(--line);
  background: #fff1ad;
}

.ticket-number span {
  color: var(--red);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.ticket-number small {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ticket-copy {
  display: flex;
  padding: 30px 38px;
  flex-direction: column;
  justify-content: center;
}

.ticket-copy h2 {
  margin-top: 6px;
  font-size: 29px;
  line-height: 1.3;
}

.ticket-copy > span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.download-ticket > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--yellow);
  border-left: 1px dashed rgba(24, 19, 21, 0.25);
  font-size: 20px;
  font-weight: 900;
}

.download-ticket > a:hover {
  color: #fff;
  background: var(--red);
}

.download-ticket > a:hover .i-download {
  filter: none;
}

.site-footer {
  padding: 42px 0 22px;
  color: #fff;
  background: #0d0b0c;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand small {
  color: #a59da0;
}

.site-footer nav a {
  color: #d8d1d3;
  font-size: 13px;
}

.site-footer nav a:hover {
  color: var(--yellow);
}

.copyright {
  width: min(1200px, calc(100% - 40px));
  margin: 30px auto 0;
  padding-top: 20px;
  text-align: center;
  color: #aaa1a4;
  border-top: 1px solid #3b3537;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--red);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: 70px;
  }

  .story-preview {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .story-preview > img {
    width: 120px;
    height: 166px;
  }

  .download-ticket {
    grid-template-columns: 145px minmax(0, 1fr) 190px;
  }

  .download-ticket::before {
    left: 132px;
  }

  .download-ticket::after {
    right: 177px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 14px;
  }

  .container,
  .header-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 620px);
  }

  .site-brand img {
    width: 42px;
    height: 42px;
  }

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

  .brand-copy span {
    display: block;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: block;
    width: min(100% - 28px, 620px);
    margin: 0 auto;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    padding: 16px 4px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 50px;
    padding-block: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 17vw, 80px);
    white-space: normal;
  }

  .hero-copy h2 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .hero-intro {
    margin-inline: auto;
  }

  .feature-chips,
  .hero-action {
    justify-content: center;
    align-items: center;
  }

  .remix-console {
    box-shadow: 8px 8px 0 rgba(242, 59, 93, 0.13);
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .section-heading > p {
    padding-bottom: 0;
  }

  .studio-grid,
  .watchlist-grid {
    grid-template-columns: 1fr;
  }

  .studio-preview {
    min-height: 250px;
  }

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

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

  .download-ticket {
    grid-template-columns: 120px minmax(0, 1fr) 160px;
  }

  .download-ticket::before,
  .download-ticket::after {
    display: none;
  }

  .ticket-copy {
    padding: 24px;
  }

  .ticket-copy h2 {
    font-size: 23px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 24px;
  }
}

@media (max-width: 560px) {
  .container,
  .header-inner,
  .hero-inner,
  .footer-inner,
  .copyright {
    width: calc(100% - 24px);
  }

  .site-brand {
    gap: 8px;
  }

  .site-brand img {
    width: 38px;
    height: 38px;
  }

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

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

  .mobile-download {
    min-height: 40px;
    padding: 0 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-inner {
    gap: 40px;
    padding-block: 44px 54px;
  }

  .hero-copy h1 {
    margin-top: 10px;
    font-size: 54px;
  }

  .hero-copy h2 {
    margin-top: 20px;
  }

  .hero-intro {
    text-align: left;
  }

  .feature-chips span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .remix-console {
    padding: 20px;
    box-shadow: none;
  }

  .console-heading {
    align-items: flex-start;
  }

  .console-heading h2 {
    font-size: 25px;
  }

  .sync-state {
    padding: 5px 8px;
  }

  .genre-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-preview {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .story-preview > img {
    width: 96px;
    height: 138px;
  }

  .story-detail h3 {
    font-size: 22px;
  }

  .story-detail > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .story-progress-copy {
    margin-top: 10px;
  }

  .episode-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .console-actions {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 58px;
  }

  .studio-steps {
    grid-template-columns: 1fr;
  }

  .studio-step {
    min-height: 0;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .studio-step span {
    margin-bottom: 16px;
  }

  .studio-preview,
  .weekly-panel,
  .ranking-panel {
    padding: 22px;
  }

  .weekday-tabs {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    overflow-x: auto;
  }

  .weekly-list article {
    grid-template-columns: 54px minmax(0, 1fr) auto;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    min-height: 66px;
    padding: 12px 10px;
    gap: 8px;
  }

  .screen-grid figcaption strong {
    font-size: 14px;
  }

  .faq-item > button {
    min-height: 72px;
    padding: 0 8px;
    grid-template-columns: 32px minmax(0, 1fr) 20px;
    gap: 8px;
  }

  .faq-item > button strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 30px 22px 40px;
  }

  .official-site summary {
    padding: 0 14px;
  }

  .official-site > p {
    padding: 0 48px 20px;
  }

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

  .review-card {
    min-height: 230px;
    padding: 22px;
  }

  .download-section {
    padding-block: 48px;
  }

  .download-ticket {
    grid-template-columns: 1fr;
  }

  .ticket-number {
    min-height: 82px;
    flex-direction: row;
    gap: 12px;
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }

  .ticket-number span {
    font-size: 42px;
  }

  .ticket-copy {
    padding: 25px 20px;
    text-align: center;
  }

  .ticket-copy h2 {
    font-size: 22px;
  }

  .download-ticket > a {
    min-height: 68px;
    border-top: 1px dashed rgba(24, 19, 21, 0.25);
    border-left: 0;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    transition: none !important;
  }

  a:active,
  button:active,
  summary:active {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

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