@charset "UTF-8";
/* 作者：搭客佬
链接： */

:root {
  --red: #ff2430;
  --red-dark: #d90f1c;
  --ink: #17181d;
  --muted: #6d707a;
  --ivory: #fff9f3;
  --peach: #fff0e8;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #ead9d1;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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: 14px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

ul,
ol {
  list-style: none;
}

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

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

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-search { background-image: url("../icons/search.svg"); }
.icon-search-white { background-image: url("../icons/search-white.svg"); }
.icon-grid { background-image: url("../icons/grid.svg"); }
.icon-chart { background-image: url("../icons/chart.svg"); }
.icon-chart-white { background-image: url("../icons/chart-white.svg"); }
.icon-bookmark { background-image: url("../icons/bookmark.svg"); }
.icon-bell { background-image: url("../icons/bell.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }
.icon-arrow-red { background-image: url("../icons/arrow-red.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-avatar { background-image: url("../icons/avatar.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 253, 249, 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%;
}

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

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}

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

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

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

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

.site-nav a {
  position: relative;
  display: block;
  padding: 27px 0 23px;
  font-size: 14px;
  font-weight: 800;
}

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

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

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

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

.mobile-download {
  padding: 10px 14px;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background-color: var(--peach);
  background-image: radial-gradient(rgba(255, 36, 48, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  border-bottom: 1px solid var(--line);
}

.hero-layout {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 72px;
  align-items: center;
  padding: 58px 0;
}

.eyebrow,
.section-index,
.ticket-main > p {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero-copy h1 {
  margin-top: 16px;
  color: var(--red);
  font-size: clamp(68px, 6.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -6px;
  white-space: nowrap;
}

.hero-copy h2 {
  margin-top: 24px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.25;
}

.hero-description {
  max-width: 550px;
  margin-top: 24px;
  color: #55565d;
  font-size: 16px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 800;
}

.hero-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 210px;
  margin-top: 30px;
  padding: 17px 26px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  font-size: 18px;
  font-weight: 900;
}

.hero-download:hover {
  color: var(--red);
  background: var(--paper);
}

.hero-download:hover .icon-download {
  background-image: url("../icons/download-red.svg");
}

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

.discovery-desk {
  position: relative;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 14px 14px 0 rgba(255, 36, 48, 0.09);
}

.desk-heading,
.desk-shelf-title,
.section-heading,
.featured-manga,
.desk-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desk-heading p {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.desk-heading h2 {
  margin-top: 2px;
  font-size: 30px;
}

.desk-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: #08764c;
  background: #e9fff4;
  font-size: 12px;
  font-weight: 800;
}

.desk-status i {
  width: 8px;
  height: 8px;
  background: #15ae72;
  border-radius: 50%;
}

.desk-search {
  display: flex;
  align-items: center;
  height: 50px;
  margin-top: 20px;
  padding-left: 15px;
  background: var(--white);
  border: 1px solid var(--line);
}

.desk-search input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.search-submit {
  display: grid;
  width: 50px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 0;
  cursor: pointer;
}

.genre-tabs,
.ranking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.genre-tabs {
  margin-top: 12px;
}

.genre-tabs button,
.ranking-tabs button,
.status-toggle {
  padding: 7px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.genre-tabs button.is-active,
.ranking-tabs button.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.featured-manga {
  position: relative;
  gap: 16px;
  margin-top: 18px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
}

.featured-manga figure {
  display: grid;
  width: 94px;
  height: 120px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  background: var(--peach);
}

.featured-manga img,
.desk-shelf img,
.rank-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.featured-info {
  min-width: 0;
  flex: 1;
}

.featured-info > span,
.featured-info small {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.featured-info h3 {
  margin-top: 3px;
  font-size: 22px;
}

.featured-info p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.featured-info small {
  display: block;
  margin-top: 8px;
}

.shelf-toggle {
  align-self: flex-end;
  padding: 9px 12px;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.shelf-toggle.is-added {
  color: var(--red);
  background: var(--white);
}

.desk-shelf {
  margin-top: 18px;
}

.desk-shelf-title h3 {
  font-size: 16px;
}

.status-toggle.is-active {
  color: var(--white);
  background: var(--ink);
}

.desk-shelf ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.desk-shelf li {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
}

.desk-shelf li img {
  width: 40px;
  height: 52px;
  background: var(--peach);
}

.desk-shelf li span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.desk-shelf li strong,
.desk-shelf li small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desk-shelf li strong {
  font-size: 12px;
}

.desk-shelf li small {
  color: var(--muted);
  font-size: 12px;
}

.desk-shelf li em {
  position: absolute;
  right: 7px;
  bottom: 5px;
  color: var(--red);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.desk-actions {
  gap: 10px;
  margin-top: 14px;
}

.desk-actions button {
  height: 44px;
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 900;
  cursor: pointer;
}

.desk-actions .ranking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.content-section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
}

.section-heading > p {
  max-width: 500px;
  color: var(--muted);
  text-align: right;
}

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

.guide-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-card {
  position: relative;
  display: flex;
  min-height: 210px;
  padding: 24px 19px;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
}

.guide-card:last-child {
  border-right: 0;
}

.guide-card b {
  color: var(--red);
  font-size: 12px;
}

.guide-card > .icon {
  width: 35px;
  height: 35px;
  margin-top: 28px;
}

.guide-card span {
  display: flex;
  margin-top: auto;
  flex-direction: column;
}

.guide-card strong {
  font-size: 18px;
}

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

.guide-card.is-active {
  color: var(--white);
  background: var(--red);
}

.guide-card.is-active b,
.guide-card.is-active small {
  color: var(--white);
}

.guide-card.is-active > .icon {
  filter: brightness(0) invert(1);
}

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

.ranking-heading {
  align-items: center;
}

.ranking-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
}

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

.rank-card {
  position: relative;
  padding: 13px;
  background: var(--paper);
  border: 2px solid var(--red);
}

.rank-card > b {
  position: absolute;
  z-index: 2;
  top: -15px;
  left: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 18px;
}

.rank-two {
  border-color: #7c9ed1;
}

.rank-two > b {
  background: #7c9ed1;
}

.rank-three {
  border-color: #e7a572;
}

.rank-three > b {
  background: #e7a572;
}

.rank-card figure {
  display: grid;
  width: 100%;
  aspect-ratio: 3 / 4;
  place-items: center;
  overflow: hidden;
  background: var(--peach);
}

.rank-card h3 {
  margin-top: 12px;
  font-size: 17px;
}

.rank-card p {
  color: var(--muted);
  font-size: 12px;
}

.rank-card span {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.ranking-list {
  padding: 14px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.ranking-list li {
  display: grid;
  min-height: 52px;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.ranking-list li:last-child {
  border-bottom: 0;
}

.ranking-list b {
  color: var(--red);
}

.ranking-list span {
  font-weight: 800;
}

.ranking-list em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.screens-section {
  background: var(--white);
}

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

.screen-grid figure {
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.screen-image {
  display: grid;
  width: 100%;
  aspect-ratio: 9 / 16;
  place-items: center;
  overflow: hidden;
  background: #f8f5f0;
}

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

.screen-grid figcaption {
  display: flex;
  min-height: 82px;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-top: 1px solid var(--line);
}

.screen-grid figcaption b {
  color: var(--red);
}

.screen-grid figcaption span {
  display: flex;
  flex-direction: column;
}

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

.screen-grid figcaption small {
  color: var(--muted);
  font-size: 12px;
}

.faq-section {
  background: #fff8ee;
}

.faq-list {
  width: 100%;
  border-top: 2px solid var(--ink);
}

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

.faq-list summary {
  display: grid;
  min-height: 70px;
  padding: 0 22px;
  grid-template-columns: 46px 1fr 24px;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary b {
  color: var(--red);
  font-size: 12px;
}

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

.faq-list summary > span {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.faq-list summary > span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

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

.official-site {
  margin-top: 20px;
  border: 1px solid var(--ink);
}

.official-site summary {
  grid-template-columns: 30px 1fr 24px;
}

.official-site > p a {
  color: var(--red);
  font-weight: 800;
}

.reviews-section {
  background: #fff0ef;
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 238px;
  padding: 25px;
  flex-direction: column;
  background: var(--paper);
  border-top: 4px solid var(--red);
}

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

.review-card header,
.review-user {
  display: flex;
  align-items: center;
}

.review-card header {
  justify-content: space-between;
  gap: 12px;
}

.review-user {
  gap: 10px;
}

.review-user .icon-avatar {
  width: 38px;
  height: 38px;
  background-color: var(--red);
  border-radius: 50%;
  background-size: 20px;
}

.review-user strong {
  font-size: 14px;
}

.review-rating {
  color: #f5a400;
  font-size: 13px;
  white-space: nowrap;
}

.review-rating i {
  margin-left: 2px;
}

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

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

.download-section {
  padding: 70px 0;
  background: var(--paper);
}

.download-ticket {
  position: relative;
  display: grid;
  min-height: 180px;
  grid-template-columns: 260px 1fr 210px;
  color: var(--red);
  background: #fff5ef;
  border: 5px solid var(--red);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 52px;
  background: var(--paper);
  border: 5px solid var(--red);
  content: "";
  transform: translateY(-50%);
}

.download-ticket::before {
  left: -18px;
  border-left: 0;
  border-radius: 0 28px 28px 0;
}

.download-ticket::after {
  right: -18px;
  border-right: 0;
  border-radius: 28px 0 0 28px;
}

.ticket-note,
.ticket-main,
.ticket-action {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
}

.ticket-note {
  border-right: 1px dashed var(--red);
}

.ticket-note span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.ticket-note strong {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.45;
}

.ticket-main h2 {
  margin-top: 6px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.25;
}

.ticket-main > span {
  margin-top: 8px;
  color: var(--muted);
}

.ticket-action {
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--red);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.ticket-action .icon {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

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

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

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-nav a:hover {
  color: #ff7981;
}

.footer-copyright {
  padding: 21px 0 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  color: #c6c8cf;
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 22px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  visibility: hidden;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--white);
  opacity: 0;
  cursor: pointer;
}

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

@media (max-width: 1100px) {
  .site-nav ul {
    gap: 22px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 42px;
  }

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

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

  .ranking-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
  }
}

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

  .site-nav ul {
    gap: 15px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 70px 0;
  }

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

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

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

  .discovery-desk {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .guide-route {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-card:nth-child(3) {
    border-right: 0;
  }

  .guide-card:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

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

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

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

  .ticket-main h2 {
    font-size: 24px;
  }
}

@media (max-width: 780px) {
  body {
    padding-top: var(--header-height);
  }

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

  .site-header {
    height: var(--header-height);
  }

  .brand {
    gap: 7px;
  }

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

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    max-width: 112px;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

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

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

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

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

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

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

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    gap: 36px;
    padding: 54px 0 62px;
  }

  .hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(52px, 17vw, 76px);
    letter-spacing: -4px;
    white-space: normal;
  }

  .hero-copy h2 {
    margin-top: 18px;
    font-size: 26px;
  }

  .hero-description {
    margin-top: 18px;
    font-size: 14px;
  }

  .hero-points {
    gap: 7px;
    margin-top: 22px;
  }

  .hero-points span {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero-download {
    margin-top: 24px;
  }

  .discovery-desk {
    padding: 17px;
    box-shadow: 7px 7px 0 rgba(255, 36, 48, 0.09);
  }

  .desk-heading {
    align-items: flex-start;
    gap: 10px;
  }

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

  .desk-status {
    padding: 6px 8px;
  }

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

  .genre-tabs button {
    padding: 7px 5px;
  }

  .featured-manga {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: start;
  }

  .featured-manga figure {
    width: 82px;
    height: 108px;
  }

  .shelf-toggle {
    grid-column: 1 / -1;
    width: 100%;
  }

  .desk-shelf ul {
    grid-template-columns: 1fr;
  }

  .desk-shelf li {
    grid-template-columns: 42px 1fr;
  }

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

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

  .section-heading > p {
    margin-top: 12px;
    text-align: left;
  }

  .content-section {
    padding: 64px 0;
  }

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

  .guide-card,
  .guide-card:nth-child(3) {
    min-height: 185px;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .guide-card:nth-child(-n+2) {
    border-top: 0;
  }

  .guide-card:nth-child(even) {
    border-right: 0;
  }

  .guide-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .ranking-heading {
    display: block;
  }

  .ranking-tabs {
    margin-top: 20px;
  }

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

  .rank-card {
    padding: 7px;
  }

  .rank-card > b {
    top: -10px;
    left: 8px;
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .rank-card h3 {
    font-size: 13px;
  }

  .rank-card p,
  .rank-card span {
    font-size: 12px;
  }

  .ranking-list {
    grid-template-columns: 1fr;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    min-height: 74px;
    padding: 10px;
  }

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

  .faq-list summary {
    min-height: 64px;
    padding: 0 13px;
    grid-template-columns: 32px 1fr 20px;
    gap: 8px;
  }

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

  .faq-list details > p {
    padding: 0 45px 20px;
  }

  .official-site summary {
    grid-template-columns: 25px 1fr 20px;
  }

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

  .review-card {
    min-height: 220px;
  }

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

  .ticket-note {
    border-right: 0;
    border-bottom: 1px dashed var(--red);
  }

  .ticket-note,
  .ticket-main,
  .ticket-action {
    padding: 24px 20px;
  }

  .ticket-main h2 {
    font-size: 24px;
  }

  .ticket-action {
    flex-direction: row;
  }

  .footer-main {
    padding: 35px 0;
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

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

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

  .brand small {
    max-width: 100px;
  }

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

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

  .desk-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-card {
    padding: 18px 13px;
  }

  .guide-card strong {
    font-size: 15px;
  }

  .rank-card span {
    overflow-wrap: anywhere;
  }

  .screen-grid figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .ticket-note strong {
    font-size: 18px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
  }

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