@charset "UTF-8";

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

:root {
  --pink: #e95483;
  --pink-strong: #cf3268;
  --pink-soft: #f8d7e2;
  --rose: #f5b5c8;
  --wine: #4a1029;
  --wine-deep: #2b0b1a;
  --ivory: #fff9f3;
  --paper: #fffdf9;
  --cyan: #bce9ec;
  --cyan-strong: #3ba6ad;
  --ink: #17141a;
  --muted: #746770;
  --line: #dfccd3;
  --header-height: 78px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

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

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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;
}

.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;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 249, 243, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin: 0 auto;
}

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

.brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  border: 1px solid var(--wine);
  border-radius: 10px;
  background: #ffffff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin-left: 11px;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 21px;
  font-weight: 900;
}

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

.site-nav ul {
  display: flex;
  align-items: stretch;
  gap: 34px;
  height: var(--header-height);
}

.site-nav li,
.site-nav a {
  height: 100%;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--pink-strong);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

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

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

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--wine);
  background: transparent;
  cursor: pointer;
}

.icon-menu,
.icon-search,
.icon-download,
.icon-bookmark,
.icon-avatar,
.icon-globe,
.icon-top {
  display: inline-block;
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

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

.icon-search {
  width: 18px;
  height: 18px;
  background-image: url("../icons/search.svg");
}

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

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

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

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

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

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-color: var(--ivory);
  background-image: linear-gradient(rgba(233, 84, 131, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(233, 84, 131, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero::before,
.hero::after {
  position: absolute;
  border: 2px solid rgba(233, 84, 131, 0.32);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: 90px;
  left: -130px;
  width: 260px;
  height: 260px;
}

.hero::after {
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
  align-items: center;
  width: min(calc(100% - 40px), var(--container));
  min-height: 720px;
  margin: 0 auto;
}

.hero-copy {
  padding: 88px 50px 88px 0;
}

.eyebrow,
.section-kicker,
.download-ticket .ticket-copy > p {
  color: var(--pink-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.eyebrow::before,
.section-kicker::before {
  display: inline-block;
  width: 26px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--pink);
  content: "";
}

.hero h1 {
  margin-top: 16px;
  font-size: clamp(76px, 7.5vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 22px;
  color: var(--wine);
  font-size: 38px;
  line-height: 1.25;
}

.hero-intro {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px 0 8px;
  border: 1px solid var(--rose);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  margin-right: 8px;
  color: #ffffff;
  background: var(--pink);
  border-radius: 50%;
  font-size: 12px;
}

.primary-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 58px;
  margin-top: 30px;
  color: #ffffff;
  background: var(--pink);
  border: 2px solid var(--wine);
  box-shadow: 7px 7px 0 var(--wine);
  font-size: 17px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-download:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 var(--wine);
}

.primary-download .icon-download {
  filter: brightness(0) invert(1);
}

.age-label {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  padding: 42px 0;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: calc((100vw - min(100vw - 40px, var(--container))) / -2);
  bottom: 0;
  left: 40px;
  background: var(--pink-soft);
  border-left: 1px solid var(--pink);
  content: "";
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 326px;
  padding: 14px;
  background: var(--ink);
  border: 3px solid #000000;
  border-radius: 44px;
  box-shadow: 18px 22px 0 rgba(74, 16, 41, 0.18);
}

.phone-shell::before {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 50%;
  width: 92px;
  height: 24px;
  background: #000000;
  border-radius: 0 0 16px 16px;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 582px;
  background: #ffffff;
  border-radius: 31px;
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 800;
}

.phone-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 7px;
}

.phone-titlebar strong {
  color: var(--pink);
  font-size: 24px;
}

.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  margin: 5px 16px 0;
  padding: 0 12px;
  color: #87909a;
  background: #eef3f6;
  border-radius: 20px;
  font-size: 12px;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 8px 16px 0;
  border-bottom: 1px solid #dbe1e5;
  text-align: center;
  font-size: 12px;
}

.phone-tabs span,
.phone-tabs strong {
  padding: 8px 0;
}

.phone-tabs strong {
  color: var(--pink);
  border-bottom: 2px solid var(--pink);
}

.phone-featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 144px;
  margin: 12px 16px;
  padding: 20px;
  color: #ffffff;
  background: var(--wine);
  background-image: radial-gradient(circle at 88% 25%, rgba(255, 255, 255, 0.22) 0 48px, transparent 49px), linear-gradient(135deg, transparent 55%, var(--pink) 55%);
  border-radius: 12px;
}

.phone-featured span,
.phone-featured small {
  font-size: 12px;
}

.phone-featured strong {
  margin: 7px 0;
  font-size: 20px;
  line-height: 1.28;
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 8px;
  font-size: 13px;
}

.phone-section-title span {
  color: var(--pink);
  font-size: 12px;
}

.phone-comics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 16px 15px;
}

.phone-comics article {
  min-width: 0;
}

.phone-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5eef1;
  border-radius: 7px;
}

.phone-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-comics strong,
.phone-comics small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-comics strong {
  margin-top: 5px;
  font-size: 12px;
}

.phone-comics small {
  color: var(--muted);
  font-size: 12px;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 11px 7px 13px;
  background: #ffffff;
  border-top: 1px solid #e3d8dd;
  text-align: center;
  font-size: 12px;
}

.phone-nav strong {
  color: var(--pink);
}

.story-route {
  position: absolute;
  z-index: 4;
  top: 145px;
  left: 0;
  width: 190px;
  padding: 20px 18px;
  background: var(--paper);
  border: 2px solid var(--wine);
  box-shadow: 6px 6px 0 var(--pink);
}

.story-route > p {
  color: var(--pink-strong);
  font-size: 13px;
  font-weight: 900;
}

.story-route ol {
  position: relative;
  margin-top: 15px;
}

.story-route ol::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 14px;
  width: 1px;
  background: var(--rose);
  content: "";
}

.story-route li {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 9px;
  padding: 8px 0;
}

.story-route li > span {
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: #ffffff;
  background: var(--pink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.story-route strong,
.story-route small {
  grid-column: 2;
}

.story-route strong {
  font-size: 13px;
}

.story-route small {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 100px 0;
}

.section-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

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

.section-heading h2 {
  margin-top: 8px;
  color: var(--wine);
  font-size: 50px;
  line-height: 1.15;
}

.section-heading > p {
  max-width: 480px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
}

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

.genre-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
}

.genre-map {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  background-color: #fff5f7;
  background-image: radial-gradient(circle, rgba(233, 84, 131, 0.24) 1px, transparent 1px);
  background-size: 15px 15px;
  border: 1px solid var(--rose);
}

.genre-map::before,
.genre-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(233, 84, 131, 0.48);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.genre-map::before {
  width: 300px;
  height: 300px;
}

.genre-map::after {
  width: 180px;
  height: 180px;
}

.genre-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  color: #ffffff;
  background: var(--wine);
  border: 8px solid var(--rose);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.genre-center span,
.genre-center small {
  font-size: 12px;
}

.genre-center strong {
  margin: 2px 0;
  font-size: 22px;
}

.genre-node {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 62px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.genre-node i {
  width: 42px;
  height: 42px;
  background: #ffffff;
  border: 1px solid var(--pink);
  border-radius: 50%;
  box-shadow: 0 5px 0 rgba(74, 16, 41, 0.14);
}

.genre-node i::after {
  display: block;
  width: 12px;
  height: 12px;
  margin: 14px auto 0;
  background: var(--pink);
  border-radius: 50%;
  content: "";
}

.genre-node span {
  font-size: 13px;
  font-weight: 800;
}

.genre-node.is-active i {
  background: var(--cyan);
  border-color: var(--cyan-strong);
}

.node-fantasy { top: 24px; left: calc(50% - 31px); }
.node-romance { top: 102px; right: 35px; }
.node-action { right: 80px; bottom: 24px; }
.node-mystery { bottom: 24px; left: 80px; }
.node-healing { top: 102px; left: 35px; }
.node-daily { bottom: 4px; left: calc(50% - 31px); }

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

.comic-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto 58px;
  align-items: center;
  gap: 18px;
  min-height: 140px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.comic-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 112px;
  overflow: hidden;
  background: #f6edf0;
}

.comic-thumb img,
.track-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.comic-row > div > span {
  color: var(--pink-strong);
  font-size: 12px;
  font-weight: 700;
}

.comic-row h3 {
  margin-top: 2px;
  font-size: 19px;
}

.comic-row p {
  color: var(--muted);
  font-size: 13px;
}

.update-state {
  color: var(--pink-strong);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.bookmark-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 54px;
  height: 66px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.bookmark-button span {
  font-size: 12px;
}

.bookmark-button[aria-pressed="true"] {
  color: #ffffff;
  background: var(--pink);
  border-color: var(--pink);
}

.bookmark-button[aria-pressed="true"] .icon-bookmark {
  filter: brightness(0) invert(1);
}

.calendar-section {
  background: #f1fbfb;
  border-top: 1px solid #d1eded;
  border-bottom: 1px solid #d1eded;
}

.week-switcher {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #b8dce0;
  background: #ffffff;
}

.week-switcher button {
  min-height: 70px;
  padding: 10px;
  border: 0;
  border-right: 1px solid #b8dce0;
  background: transparent;
  cursor: pointer;
}

.week-switcher button:last-child {
  border-right: 0;
}

.week-switcher button.is-active {
  color: var(--wine);
  background: var(--pink-soft);
  box-shadow: inset 0 -4px 0 var(--pink);
}

.week-switcher span,
.week-switcher small {
  display: block;
  font-size: 12px;
}

.week-switcher span {
  font-weight: 900;
}

.update-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.update-track::before {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--pink);
  content: "";
}

.update-track article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 13px;
  padding-top: 45px;
}

.update-track article::before {
  position: absolute;
  top: 11px;
  left: 14px;
  width: 13px;
  height: 13px;
  background: var(--pink);
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--pink);
  content: "";
}

.update-track time {
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 12px;
  font-weight: 900;
}

.track-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 98px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #b8dce0;
}

.update-track article > div {
  min-width: 0;
  padding-top: 4px;
}

.update-track strong,
.update-track small,
.update-track article > div > span {
  display: block;
}

.update-track strong {
  font-size: 15px;
}

.update-track small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.update-track article > div > span {
  margin-top: 8px;
  color: var(--pink-strong);
  font-size: 12px;
  font-weight: 700;
}

.interface-section {
  background: var(--ivory);
}

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

.interface-grid figure {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--wine);
}

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

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

.interface-grid figcaption {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 92px;
  padding: 18px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.interface-grid figcaption > span {
  color: var(--pink);
  font-size: 15px;
  font-weight: 900;
}

.interface-grid figcaption strong,
.interface-grid figcaption small {
  display: block;
}

.interface-grid figcaption strong {
  font-size: 17px;
}

.interface-grid figcaption small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.support-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

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

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

.faq-list summary,
.official-site summary {
  display: grid;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.faq-list summary {
  grid-template-columns: 52px 1fr 28px;
  min-height: 72px;
  padding: 0 22px;
}

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

.faq-list summary > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.faq-list summary strong {
  font-size: 16px;
}

.faq-list summary i,
.official-site summary > span {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.faq-list summary i::before,
.faq-list summary i::after,
.official-site summary > span::before,
.official-site summary > span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--wine);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary i::after,
.official-site summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after,
.official-site[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  padding: 0 72px 22px;
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  width: 100%;
  margin-top: 26px;
  border: 1px solid var(--wine);
  background: var(--ivory);
}

.official-site summary {
  grid-template-columns: 30px 1fr 28px;
  min-height: 72px;
  padding: 0 22px;
}

.official-site summary strong {
  font-size: 15px;
}

.official-site > p {
  padding: 0 22px 22px 52px;
  color: var(--pink-strong);
  font-size: 14px;
}

.official-site > p a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews-section {
  background: #fff1f5;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--pink);
}

.review-card:nth-child(3n + 2) {
  border-top-color: var(--wine);
}

.review-card:nth-child(3n) {
  border-top-color: var(--cyan-strong);
}

.review-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

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

.review-identity .icon-avatar {
  width: 38px;
  height: 38px;
  padding: 7px;
  background-color: var(--pink-soft);
  background-size: 22px 22px;
  border-radius: 50%;
}

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

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 86px;
  color: var(--pink);
  white-space: nowrap;
}

.aiarticle-comment-rating-icon {
  margin-left: 2px;
  font-style: normal;
  font-size: 14px;
}

.fa-star::before {
  content: "★";
}

.fa-star-o::before {
  color: #cbbfc4;
  content: "☆";
}

.review-card > p {
  margin-top: 18px;
  color: #3f353b;
  font-size: 14px;
}

.review-card time {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.download-section {
  padding: 78px 20px;
  background: var(--wine-deep);
}

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 230px;
  align-items: stretch;
  width: min(100%, var(--container));
  min-height: 190px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--pink);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 32px;
  height: 32px;
  background: var(--wine-deep);
  border: 2px solid var(--pink);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

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

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

.ticket-illustration {
  position: relative;
  overflow: hidden;
  background-color: var(--pink-soft);
  background-image: radial-gradient(circle, rgba(74, 16, 41, 0.22) 1px, transparent 1px);
  background-size: 12px 12px;
  border-right: 1px dashed var(--pink);
}

.ticket-illustration span {
  position: absolute;
  top: 35px;
  left: 45px;
  width: 94px;
  height: 120px;
  background: var(--pink);
  border: 5px solid var(--wine);
  border-radius: 14px;
  transform: rotate(-7deg);
}

.ticket-illustration span::before {
  position: absolute;
  top: 16px;
  right: 12px;
  left: 12px;
  height: 60px;
  background: var(--ivory);
  content: "";
}

.ticket-illustration i {
  position: absolute;
  right: 27px;
  bottom: 25px;
  width: 68px;
  height: 68px;
  border: 4px solid var(--wine);
  border-radius: 50%;
}

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

.ticket-copy h2 {
  margin: 7px 0;
  color: var(--wine);
  font-size: 30px;
  line-height: 1.3;
}

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

.download-ticket > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  background: var(--pink);
  border-left: 1px dashed var(--wine);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.download-ticket > a .icon-download {
  filter: brightness(0) invert(1);
}

.site-footer {
  color: #ffffff;
  background: var(--wine);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 42px 0 28px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
}

.footer-brand > span {
  display: flex;
  flex-direction: column;
  margin-left: 11px;
}

.footer-brand strong {
  font-size: 19px;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  white-space: nowrap;
}

.footer-main nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.footer-main nav a {
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--pink);
  border: 2px solid var(--wine);
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top .icon-top {
  filter: brightness(0) invert(1);
}

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

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

  .hero-copy {
    padding-right: 25px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .hero h2 {
    font-size: 31px;
  }

  .story-route {
    left: -12px;
    width: 170px;
  }

  .phone-shell {
    width: 306px;
  }
}

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

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-copy {
    margin-left: 8px;
  }

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

  .mobile-actions {
    display: flex;
  }

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

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

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

  .site-nav li,
  .site-nav a {
    height: auto;
  }

  .site-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 72px 0 45px;
    text-align: center;
  }

  .eyebrow::before {
    display: none;
  }

  .hero h1 {
    font-size: 78px;
    white-space: normal;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-features {
    justify-content: center;
  }

  .primary-download {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    justify-content: center;
    padding: 55px 0 75px;
  }

  .hero-visual::before {
    top: 0;
    right: calc((100vw - 100%) / -2);
    left: calc((100vw - 100%) / -2);
    border-top: 1px solid var(--pink);
    border-left: 0;
  }

  .story-route {
    top: 165px;
    left: 50%;
    width: 170px;
    transform: translateX(-150%);
  }

  .genre-layout {
    grid-template-columns: 1fr;
  }

  .genre-map {
    min-height: 410px;
  }

  .update-track {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 42px;
  }

  .update-track::before {
    display: none;
  }

  .update-track article {
    padding-top: 32px;
    border-top: 1px solid var(--pink);
  }

  .update-track article::before {
    top: -8px;
  }

  .update-track time {
    top: 1px;
  }

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

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

  .ticket-copy {
    padding: 30px;
  }

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

@media (max-width: 640px) {
  .brand-copy strong {
    font-size: 15px;
  }

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

  .mobile-download {
    min-width: 72px;
    height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

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

  .section {
    padding: 70px 0;
  }

  .section-inner {
    width: calc(100% - 28px);
  }

  .section-heading {
    display: block;
    margin-bottom: 32px;
  }

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

  .section-heading > p {
    margin-top: 12px;
    font-size: 13px;
  }

  .hero-inner {
    width: calc(100% - 28px);
  }

  .hero-copy {
    padding-top: 56px;
  }

  .hero h1 {
    font-size: clamp(60px, 20vw, 78px);
  }

  .hero h2 {
    font-size: 27px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-features {
    gap: 7px;
  }

  .hero-features li {
    min-height: 38px;
    padding-right: 10px;
    font-size: 12px;
  }

  .primary-download {
    width: 210px;
  }

  .hero-visual {
    display: block;
    padding: 45px 0 64px;
  }

  .phone-shell {
    width: min(100%, 310px);
    margin: 0 auto;
  }

  .story-route {
    position: relative;
    top: -45px;
    left: auto;
    width: min(100%, 310px);
    margin: 30px auto 0;
    transform: none;
  }

  .story-route ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .story-route ol::before {
    top: 14px;
    right: 22px;
    bottom: auto;
    left: 22px;
    width: auto;
    height: 1px;
  }

  .story-route li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
  }

  .story-route li > span {
    flex: 0 0 29px;
  }

  .genre-map {
    min-height: 360px;
  }

  .genre-map::before {
    width: 250px;
    height: 250px;
  }

  .genre-map::after {
    width: 150px;
    height: 150px;
  }

  .genre-center {
    width: 110px;
    height: 110px;
  }

  .genre-node i {
    width: 36px;
    height: 36px;
  }

  .genre-node i::after {
    margin-top: 12px;
  }

  .node-fantasy { top: 18px; }
  .node-romance { top: 76px; right: 16px; }
  .node-action { right: 48px; bottom: 18px; }
  .node-mystery { bottom: 18px; left: 48px; }
  .node-healing { top: 76px; left: 16px; }

  .comic-row {
    grid-template-columns: 70px minmax(0, 1fr) 45px;
    gap: 10px;
    min-height: 118px;
    padding: 10px;
  }

  .comic-thumb {
    width: 70px;
    height: 94px;
  }

  .comic-row h3 {
    font-size: 15px;
  }

  .comic-row p {
    display: none;
  }

  .update-state {
    grid-column: 2;
    font-size: 12px;
  }

  .bookmark-button {
    grid-column: 3;
    grid-row: 1 / span 2;
    width: 43px;
    height: 60px;
  }

  .week-switcher {
    overflow-x: auto;
    grid-template-columns: repeat(7, 82px);
  }

  .week-switcher button {
    min-height: 62px;
  }

  .update-track {
    grid-template-columns: 1fr;
  }

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

  .interface-grid figcaption {
    min-height: 80px;
    padding: 12px 10px;
  }

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

  .interface-grid figcaption small {
    line-height: 1.45;
  }

  .faq-list summary {
    grid-template-columns: 38px 1fr 24px;
    min-height: 68px;
    padding: 0 13px;
  }

  .faq-list summary strong {
    font-size: 14px;
  }

  .faq-list details > p {
    padding: 0 20px 20px 51px;
    font-size: 13px;
  }

  .official-site summary {
    grid-template-columns: 26px 1fr 24px;
    min-height: 68px;
    padding: 0 13px;
  }

  .official-site summary strong {
    font-size: 13px;
  }

  .official-site > p {
    padding: 0 13px 18px 39px;
    word-break: break-all;
  }

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

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

  .download-section {
    padding: 62px 14px;
  }

  .download-ticket {
    display: flex;
    flex-direction: column;
  }

  .ticket-illustration {
    height: 120px;
    border-right: 0;
    border-bottom: 1px dashed var(--pink);
  }

  .ticket-illustration span {
    top: 14px;
    left: calc(50% - 70px);
    width: 76px;
    height: 92px;
  }

  .ticket-illustration i {
    right: calc(50% - 76px);
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .ticket-copy {
    padding: 28px 22px;
    text-align: center;
  }

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

  .download-ticket > a {
    min-height: 66px;
    border-top: 1px dashed var(--wine);
    border-left: 0;
    font-size: 17px;
  }

  .footer-inner {
    width: calc(100% - 28px);
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-main nav ul {
    justify-content: center;
    gap: 12px 22px;
    margin-top: 25px;
  }

  .footer-bottom {
    gap: 5px;
  }

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

  a,
  button,
  summary,
  .site-nav a::after,
  .primary-download,
  .back-top {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 374px) {
  .header-inner {
    width: calc(100% - 16px);
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-copy {
    margin-left: 6px;
  }

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

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

  .mobile-actions {
    gap: 5px;
  }

  .mobile-download {
    min-width: 66px;
    padding: 0 7px;
  }

  .hero-features li {
    padding: 0 8px;
  }

  .hero-features li span {
    display: none;
  }

  .phone-shell {
    width: 288px;
  }

  .phone-screen {
    min-height: 560px;
  }

  .genre-map {
    min-height: 330px;
  }

  .genre-map::before {
    width: 220px;
    height: 220px;
  }

  .genre-map::after {
    width: 130px;
    height: 130px;
  }

  .genre-center {
    width: 100px;
    height: 100px;
  }

  .node-romance { right: 4px; }
  .node-healing { left: 4px; }
  .node-action { right: 30px; }
  .node-mystery { left: 30px; }
}
