@charset "UTF-8";

/* 作者：搭客佬
地址：https://www.bkbkpro.cn/ */

:root {
  --paper: #fffaf3;
  --paper-soft: #fff0f3;
  --white: #ffffff;
  --ink: #21191d;
  --muted: #756169;
  --line: #ddcbd0;
  --pink: #ea4b86;
  --pink-deep: #b5245d;
  --berry: #551329;
  --yellow: #f3c748;
  --header-height: 76px;
  --container: 1200px;
}

* {
  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);
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  padding: 0;
  border: 0;
  background: none;
}

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

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

ul {
  list-style: none;
}

.screen-reader {
  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,
.footer-main,
.footer-bottom,
.hero-grid,
.download-ticket {
  width: min(calc(100% - 40px), var(--container));
  margin-right: auto;
  margin-left: auto;
}

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

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
  gap: 11px;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
}

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

.brand-copy strong {
  font-size: 19px;
  white-space: nowrap;
}

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

.main-nav ul,
.footer-nav ul {
  display: flex;
  align-items: center;
}

.main-nav ul {
  gap: 34px;
}

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

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--pink);
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  right: 0;
  left: 0;
}

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--white);
  background: var(--pink-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

i[class^="i-"] {
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.i-menu { background-image: url("../icons/menu.svg"); }
.i-download { background-image: url("../icons/download.svg"); }
.i-search { background-image: url("../icons/search.svg"); }
.i-radar { background-image: url("../icons/radar.svg"); }
.i-bookmark { background-image: url("../icons/bookmark.svg"); }
.i-heart { background-image: url("../icons/heart.svg"); }
.i-bell { background-image: url("../icons/bell.svg"); }
.i-clock { background-image: url("../icons/clock.svg"); }
.i-globe { background-image: url("../icons/globe.svg"); }
.i-down { background-image: url("../icons/down.svg"); }
.i-top { background-image: url("../icons/top.svg"); }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle, rgba(234, 75, 134, 0.14) 1.4px, transparent 1.6px) 0 0 / 24px 24px,
    linear-gradient(90deg, var(--paper) 0 61%, #fde9ee 61% 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(234, 75, 134, 0.35);
  border-radius: 50%;
}

.hero::before {
  top: 80px;
  right: -110px;
  width: 470px;
  height: 470px;
}

.hero::after {
  bottom: -250px;
  left: -190px;
  width: 480px;
  height: 480px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: 76px;
}

.hero-copy {
  padding: 70px 0;
}

.eyebrow,
.section-number,
.ticket-copy > p {
  color: var(--pink-deep);
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(72px, 7.5vw, 116px);
  line-height: 0.95;
  letter-spacing: -6px;
  white-space: nowrap;
}

.hero-slogan {
  margin-top: 27px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
}

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

.hero-download {
  display: inline-flex;
  min-width: 210px;
  min-height: 56px;
  margin-top: 32px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--white);
  background: var(--pink-deep);
  box-shadow: 8px 8px 0 var(--yellow);
  font-weight: 800;
}

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

.hero-features {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 26px;
}

.hero-features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.hero-features i {
  width: 18px !important;
  height: 18px !important;
}

.hero-visual {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: flex-end;
}

.issue-stamp {
  position: absolute;
  z-index: 0;
  top: 105px;
  left: -10px;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.17;
}

.registration-mark {
  position: absolute;
  width: 58px;
  height: 58px;
}

.registration-mark::before,
.registration-mark::after {
  position: absolute;
  content: "";
  background: var(--pink);
}

.registration-mark::before {
  top: 27px;
  left: 0;
  width: 58px;
  height: 4px;
}

.registration-mark::after {
  top: 0;
  left: 27px;
  width: 4px;
  height: 58px;
}

.mark-one { top: 110px; left: 10px; }
.mark-two { right: -30px; bottom: 92px; transform: rotate(45deg); }

.phone-shell {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 610px;
  padding: 15px;
  border: 8px solid #17171b;
  border-radius: 44px;
  background: #17171b;
  box-shadow: 24px 26px 0 rgba(85, 19, 41, 0.18);
}

.phone-shell::before {
  position: absolute;
  z-index: 4;
  top: 8px;
  left: 50%;
  width: 88px;
  height: 24px;
  border-radius: 0 0 15px 15px;
  content: "";
  background: #17171b;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  border-radius: 28px;
  background: var(--white);
}

.phone-status {
  display: flex;
  height: 39px;
  padding: 11px 17px 0;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.phone-head {
  display: flex;
  padding: 16px 18px 11px;
  align-items: center;
  justify-content: space-between;
}

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

.phone-search {
  display: flex;
  height: 39px;
  margin: 0 18px;
  padding: 0 14px;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  color: #8c7f85;
  background: #f4eef0;
  font-size: 12px;
}

.phone-search i {
  width: 15px !important;
  height: 15px !important;
}

.phone-tabs {
  display: grid;
  margin: 10px 18px 0;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #eadde1;
}

.phone-tabs span {
  padding: 8px 0;
  text-align: center;
  font-size: 12px;
}

.phone-tabs .active {
  color: var(--pink-deep);
  border-bottom: 2px solid var(--pink);
  font-weight: 700;
}

.phone-feature {
  display: grid;
  min-height: 123px;
  margin: 11px 18px 0;
  overflow: hidden;
  grid-template-columns: 1.35fr 0.65fr;
  border-radius: 10px;
  color: var(--white);
  background: var(--berry);
}

.phone-feature div {
  display: flex;
  padding: 18px 15px;
  flex-direction: column;
  justify-content: center;
}

.phone-feature span {
  color: #ffb8d0;
  font-size: 12px;
}

.phone-feature strong {
  margin-top: 5px;
  font-size: 18px;
  line-height: 1.35;
}

.phone-feature figure {
  height: 100%;
  background: #eadde1;
}

.phone-feature img,
.phone-comics img,
.comic-stack img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-subtitle {
  display: flex;
  margin: 12px 18px 8px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.phone-subtitle strong {
  font-size: 14px;
}

.phone-comics {
  display: grid;
  margin: 0 18px;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

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

.phone-comics figure {
  height: 103px;
  overflow: hidden;
  border-radius: 7px;
  background: #f1e8eb;
}

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

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

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

.phone-nav {
  display: grid;
  margin-top: auto;
  padding: 12px 8px 15px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #eadde1;
  color: #786e72;
  font-size: 12px;
  text-align: center;
}

.phone-nav .active {
  color: var(--pink-deep);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 45px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: end;
  gap: 40px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.section-heading > p {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 15px;
}

.channel {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.channel-layout {
  display: grid;
  grid-template-columns: 410px minmax(0, 1fr);
  gap: 24px;
}

.genre-console {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  color: var(--white);
  background: var(--berry);
}

.genre-console h3 {
  position: relative;
  z-index: 2;
  font-size: 25px;
}

.genre-console > p {
  position: relative;
  z-index: 2;
  max-width: 285px;
  margin-top: 9px;
  color: #e8c8d2;
  font-size: 14px;
}

.genre-dial {
  position: absolute;
  right: -66px;
  bottom: -66px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
}

.dial-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.circle-one { inset: 50px; }
.circle-two { inset: 112px; background: var(--pink); }

.dial-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  transform-origin: center;
}

.line-one { transform: rotate(25deg); }
.line-two { transform: rotate(-37deg); }

.genre-options {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 27px;
  left: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.genre-options button {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
}

.genre-options button.is-active {
  color: var(--berry);
  background: var(--yellow);
}

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

.comic-stack article {
  display: grid;
  min-width: 0;
  min-height: 227px;
  padding: 18px;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.comic-stack figure {
  width: 116px;
  height: 174px;
  overflow: hidden;
  background: #f2e6e9;
}

.comic-stack h3 {
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.35;
}

.comic-stack p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.comic-rank {
  color: var(--pink-deep);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

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

.pulse-line {
  position: relative;
  grid-column: 1 / -1;
  height: 14px;
  margin-bottom: 12px;
  border-top: 1px solid var(--pink);
}

.pulse-line::before {
  position: absolute;
  top: -7px;
  left: 25%;
  width: 12px;
  height: 12px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  content: "";
  background: var(--pink);
  box-shadow: 290px 0 0 var(--pink), 580px 0 0 var(--pink), 870px 0 0 var(--pink);
}

.rhythm-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.rhythm-board article {
  display: flex;
  min-height: 230px;
  padding: 29px;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.rhythm-board article:nth-child(2n) {
  background: #fff4d8;
}

.rhythm-board i {
  width: 26px !important;
  height: 26px !important;
}

.rhythm-board span {
  margin-top: 23px;
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 700;
}

.rhythm-board strong {
  margin-top: 6px;
  font-size: 18px;
}

.rhythm-board button {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 13px;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.rhythm-board button.is-active {
  color: var(--white);
  border-color: var(--pink-deep);
  background: var(--pink-deep);
}

.gallery {
  border-bottom: 1px solid #351421;
  color: var(--white);
  background: #2c101b;
}

.gallery .section-number,
.gallery .section-heading > p {
  color: #f6a9c3;
}

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

.screenshot-grid figure {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #160a0f;
}

.screenshot {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  background: #11090c;
}

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

.screenshot-grid figcaption {
  display: flex;
  min-height: 72px;
  padding: 18px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--berry);
}

.screenshot-grid figcaption span {
  color: #ff90b5;
  font-family: Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

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

.screenshot-grid figcaption small {
  margin-left: auto;
  color: #f3ccd9;
  font-size: 12px;
  white-space: nowrap;
}

.help {
  border-bottom: 1px solid var(--line);
  background: #fff7e9;
}

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

.faq-list article {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.faq-list h3 {
  margin: 0;
}

.faq-list button {
  display: grid;
  width: 100%;
  min-height: 74px;
  padding: 20px 24px;
  grid-template-columns: minmax(0, 1fr) 26px;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-list button > span:first-child {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
  font-size: 17px;
  font-weight: 700;
}

.faq-list button > span:first-child b {
  color: var(--pink-deep);
  font-family: Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.faq-list button > i,
.fold-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-list button > i::before,
.faq-list button > i::after,
.fold-icon::before,
.fold-icon::after {
  position: absolute;
  top: 10px;
  left: 4px;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
}

.faq-list button > i::after,
.fold-icon::after {
  transform: rotate(90deg);
}

.faq-list article.is-open button > i::after,
.official-site[open] .fold-icon::after {
  transform: rotate(0);
}

.faq-list article > div {
  padding: 0 84px 23px;
}

.faq-list article > div p {
  color: var(--muted);
  font-size: 14px;
}

.official-site {
  width: 100%;
  margin-top: 28px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.official-site summary {
  display: flex;
  min-height: 74px;
  padding: 18px 24px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

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

.official-site summary > span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 700;
}

.official-site > div {
  padding: 0 58px 24px;
}

.official-site a {
  color: var(--pink-deep);
  font-weight: 700;
  word-break: break-all;
}

.reviews {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

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

.review-grid .reader-note {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 270px;
  padding: 28px 28px 64px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--pink);
  background: var(--white);
}

.review-grid .reader-note:nth-child(3n + 2) {
  border-top-color: var(--berry);
}

.reader-note-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.reader-note-head .i-reader-note-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background-color: var(--paper-soft);
  background-image: url("../icons/comment-avatar.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 4px rgba(238, 76, 125, 0.09);
}

.reader-note-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.reader-note-score {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(238, 76, 125, 0.35);
  border-radius: 18px;
  color: var(--berry);
  background: #fff4f6;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.reader-note-score span {
  color: var(--muted);
  font-weight: 700;
}

.reader-note-score b {
  color: var(--pink-deep);
  font-size: 14px;
  letter-spacing: 1px;
}

.reader-note-body {
  display: flex;
  margin-top: 22px;
  padding-top: 19px;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.reader-note-body p {
  font-size: 14px;
  line-height: 2;
}

.reader-note-date {
  position: absolute;
  right: 28px;
  bottom: 23px;
  display: inline-flex;
  min-height: 24px;
  padding: 0 9px;
  align-items: center;
  border-left: 2px solid var(--pink);
  color: var(--muted);
  background: var(--paper-soft);
  font-size: 12px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.download-section {
  padding: 80px 0;
  color: var(--white);
  background: var(--berry);
}

.download-ticket {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  grid-template-columns: 190px minmax(0, 1fr) 230px 84px;
  align-items: stretch;
  color: var(--ink);
  background: var(--paper);
}

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

.download-ticket::before { left: -17px; }
.download-ticket::after { right: -17px; }

.ticket-serial {
  display: flex;
  padding: 28px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px dashed var(--pink-deep);
  color: var(--white);
  background: var(--pink-deep);
}

.ticket-serial span {
  font-family: Consolas, monospace;
  font-size: 13px;
  letter-spacing: 2px;
}

.ticket-serial strong {
  margin-top: 7px;
  font-size: 20px;
}

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

.ticket-copy h2 {
  margin-top: 8px;
  font-size: 26px;
  line-height: 1.35;
}

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

.download-ticket > a {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--pink);
  font-size: 18px;
  font-weight: 800;
}

.ticket-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
}

.ticket-arrow i {
  width: 26px !important;
  height: 26px !important;
}

.site-footer {
  color: var(--white);
  background: #1e171b;
}

.footer-main {
  display: flex;
  min-height: 142px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand img {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-brand .brand-copy span {
  color: #c9bac0;
}

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

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

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

.footer-bottom p {
  color: #c9bac0;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 22px;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--pink-deep);
  box-shadow: 4px 4px 0 var(--yellow);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.back-top.is-visible {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .header-inner,
  .footer-main,
  .footer-bottom,
  .hero-grid,
  .download-ticket {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    background: var(--paper);
  }

  .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;
    font-size: 12px;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    padding: 12px 14px 18px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

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

  .main-nav ul {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .main-nav li:last-child a {
    border-bottom: 0;
  }

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

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero {
    background:
      radial-gradient(circle, rgba(234, 75, 134, 0.13) 1.2px, transparent 1.4px) 0 0 / 22px 22px,
      var(--paper);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-copy {
    padding: 70px 0 34px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(56px, 14vw, 84px);
    letter-spacing: -3px;
    white-space: normal;
  }

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

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

  .hero-visual {
    min-height: 640px;
    justify-content: center;
  }

  .issue-stamp {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .genre-console {
    min-height: 390px;
  }

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

  .pulse-line {
    display: none;
  }

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

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

  .ticket-arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
    transition: none !important;
  }

  a:active,
  button:active,
  summary:active {
    opacity: 1;
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

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

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

  .mobile-download {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

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

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

  .eyebrow,
  .section-number,
  .ticket-copy > p {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .hero-copy h1 {
    margin-top: 14px;
    font-size: 58px;
    line-height: 1;
  }

  .hero-slogan {
    margin-top: 21px;
    font-size: 24px;
  }

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

  .hero-download {
    min-width: 196px;
    min-height: 52px;
  }

  .hero-features {
    gap: 14px;
  }

  .hero-features li {
    font-size: 12px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone-shell {
    width: 292px;
    height: 558px;
    padding: 12px;
    border-width: 7px;
    border-radius: 38px;
  }

  .phone-comics figure {
    height: 88px;
  }

  .mark-one { left: 0; }
  .mark-two { right: 0; }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
    text-align: left;
  }

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

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

  .genre-console {
    min-height: 360px;
    padding: 25px;
  }

  .genre-options {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

  .genre-options button {
    font-size: 12px;
  }

  .comic-stack {
    grid-template-columns: 1fr;
  }

  .comic-stack article {
    min-height: 190px;
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .comic-stack figure {
    width: 100px;
    height: 150px;
  }

  .rhythm-board {
    grid-template-columns: 1fr;
  }

  .rhythm-board article {
    min-height: 190px;
  }

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

  .screenshot-grid figcaption {
    min-height: 60px;
    padding: 13px 10px;
    gap: 7px;
  }

  .screenshot-grid figcaption strong {
    font-size: 13px;
  }

  .screenshot-grid figcaption small {
    display: none;
  }

  .faq-list button {
    min-height: 68px;
    padding: 17px 14px;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 8px;
  }

  .faq-list button > span:first-child {
    gap: 9px;
    font-size: 14px;
  }

  .faq-list article > div {
    padding: 0 44px 20px;
  }

  .faq-list article > div p {
    font-size: 13px;
  }

  .official-site summary {
    padding: 16px;
  }

  .official-site summary > span {
    font-size: 14px;
  }

  .official-site > div {
    padding: 0 49px 20px;
    font-size: 13px;
  }

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

  .review-grid .reader-note {
    min-height: 0;
    padding: 22px 22px 58px;
  }

  .reader-note-head {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .reader-note-head .i-reader-note-avatar {
    width: 42px;
    height: 42px;
  }

  .reader-note-score {
    min-height: 32px;
    padding: 0 9px;
    gap: 5px;
  }

  .reader-note-date {
    right: 22px;
    bottom: 19px;
  }

  .download-section {
    padding: 58px 0;
  }

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

  .ticket-serial {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.75);
  }

  .ticket-copy {
    padding: 30px 22px;
  }

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

  .download-ticket > a {
    min-height: 72px;
  }

  .footer-main {
    min-height: 180px;
    padding: 34px 0;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 15px;
  }

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

@media (max-width: 390px) {
  .container,
  .header-inner,
  .footer-main,
  .footer-bottom,
  .hero-grid,
  .download-ticket {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-copy strong {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-download {
    padding: 0 9px;
  }

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

  .phone-shell {
    width: 276px;
    height: 530px;
  }

  .phone-feature {
    min-height: 112px;
  }

  .reader-note-head {
    grid-template-columns: 40px minmax(0, 1fr) auto;
  }

  .reader-note-head .i-reader-note-avatar {
    width: 40px;
    height: 40px;
  }
}
