@charset "UTF-8";

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

:root {
  --red: #ed101d;
  --red-dark: #b50913;
  --black: #101012;
  --ink: #171719;
  --muted: #68676b;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --line: #d9d1c3;
  --header-height: 76px;
  --content-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

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

ul,
ol {
  list-style: none;
}

.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;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 253, 248, 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(--content-width));
  height: 100%;
  margin: 0 auto;
}

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

.brand > img,
.footer-brand > img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.brand-copy strong,
.footer-brand strong {
  color: var(--black);
  font-size: 20px;
  font-weight: 800;
}

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

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

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

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

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

.header-actions {
  display: none;
}

.hero {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 70% 12%, rgba(237, 16, 29, 0.32), transparent 28%),
    linear-gradient(120deg, #09090b 0%, #171316 62%, #240a0d 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(280px, 42%);
  align-items: center;
  width: min(calc(100% - 40px), var(--content-width));
  min-height: 690px;
  margin: 0 auto;
}

.hero-copy {
  padding: 72px 44px 72px 0;
}

.eyebrow,
.section-index,
.ticket-copy > span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero h1 {
  margin-top: 10px;
  color: var(--red);
  font-size: clamp(80px, 8vw, 132px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
  white-space: nowrap;
}

.hero-copy h2 {
  margin-top: 22px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.25;
}

.hero-description {
  max-width: 650px;
  margin-top: 22px;
  color: #d8d3d3;
  font-size: 16px;
}

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

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

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

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-search { background-image: url("../icons/search.svg"); }
.icon-list { background-image: url("../icons/list.svg"); }
.icon-bell { background-image: url("../icons/bell.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }
.icon-mail { background-image: url("../icons/mail.svg"); }
.icon-lock { background-image: url("../icons/lock.svg"); }
.icon-eye { background-image: url("../icons/eye.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-arrow { background-image: url("../icons/arrow.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }

.primary-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 205px;
  margin-top: 34px;
  padding: 15px 24px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.primary-download:hover {
  color: var(--red);
  background: #ffffff;
}

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

.age-label {
  display: block;
  margin-top: 12px;
  color: #bdb7b7;
  font-size: 12px;
}

.login-device {
  justify-self: end;
  width: 310px;
  padding: 22px 20px 24px;
  color: var(--ink);
  background: #ffffff;
  border: 12px solid #0d0d0f;
  border-radius: 42px;
  box-shadow: none;
}

.device-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-icons i {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--black);
  border-radius: 50%;
}

.status-icons i:last-child {
  width: 12px;
  border-radius: 2px;
}

.device-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}

.device-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.device-brand strong {
  font-size: 18px;
}

.login-heading {
  margin-top: 18px;
}

.login-heading h3 {
  font-size: 24px;
  line-height: 1.2;
}

.login-heading p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
  border-bottom: 1px solid #dedede;
}

.auth-tab {
  position: relative;
  padding: 12px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
}

.auth-tab.is-active {
  color: var(--red);
  font-weight: 800;
}

.auth-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
}

.auth-form {
  margin-top: 16px;
}

.auth-form label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
}

.field-wrap {
  display: flex;
  align-items: center;
  margin-top: 6px;
  padding: 0 12px;
  background: #f4f4f4;
  border: 1px solid #dddddd;
  border-radius: 8px;
}

.field-wrap .icon {
  width: 16px;
  height: 16px;
}

.field-wrap input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 8px;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
}

.password-toggle,
.text-control {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.password-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 34px;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 12px;
}

.form-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-weight: 400;
}

.form-options input {
  accent-color: var(--red);
}

.text-control {
  color: var(--red);
  font-size: 12px;
}

.auth-submit {
  width: 100%;
  height: 44px;
  margin-top: 16px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.auth-submit:hover {
  color: var(--red);
  background: #ffffff;
}

.form-feedback {
  min-height: 20px;
  margin-top: 6px;
  color: var(--red-dark);
  font-size: 12px;
  text-align: center;
}

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

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

.section-heading h2 {
  margin-top: 7px;
  color: var(--black);
  font-size: 46px;
  line-height: 1.1;
}

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

.routes-section {
  padding-bottom: 34px;
}

.route-board {
  padding: 8px;
  color: #ffffff;
  background: var(--black);
  border: 1px solid var(--black);
}

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

.route-tab {
  padding: 16px;
  color: #ffffff;
  background: #252529;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.route-tab.is-active {
  background: var(--red);
}

.route-content {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 0.8fr);
  margin-top: 8px;
  background: var(--paper);
}

.route-panel {
  padding: 8px 28px;
  color: var(--ink);
}

.route-panel li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
}

.route-panel li:last-child {
  border-bottom: 0;
}

.route-panel li span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.route-panel li strong {
  font-size: 15px;
}

.route-panel li em {
  padding: 4px 9px;
  color: var(--red);
  background: #fde9e9;
  font-size: 12px;
  font-style: normal;
}

.route-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  color: #ffffff;
  background: var(--black);
}

.route-note > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.route-note h3 {
  margin-top: 10px;
  font-size: 24px;
  line-height: 1.35;
}

.route-note p {
  margin-top: 12px;
  color: #bcbabd;
  font-size: 13px;
}

.route-action {
  align-self: flex-start;
  margin-top: 22px;
  padding: 11px 18px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.ranking-section {
  padding-top: 56px;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--black);
}

.ranking-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ranking-item:nth-child(2n) {
  border-right: 0;
}

.ranking-item > span {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.ranking-item h3 {
  font-size: 17px;
}

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

.ranking-item > strong {
  color: var(--red);
  font-size: 12px;
}

.screenshots-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100% - var(--content-width)) / 2));
  padding-left: max(20px, calc((100% - var(--content-width)) / 2));
  background: #0c0c0e;
}

.screenshots-section .section-heading h2,
.screenshots-section .section-heading > p {
  color: #ffffff;
}

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

.screenshot-grid figure {
  min-width: 0;
  background: var(--paper);
  border: 1px solid #312f30;
}

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

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

.screenshot-grid figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 16px 18px;
  border-top: 4px solid var(--red);
}

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

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

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

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

.faq-list summary,
.official-site summary {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary > span:first-child {
  width: 62px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

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

.faq-list summary i,
.official-site summary > span:last-child {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after,
.official-site summary > span:last-child::before,
.official-site summary > span:last-child::after {
  position: absolute;
  top: 9px;
  left: 4px;
  width: 12px;
  height: 2px;
  background: var(--black);
  content: "";
}

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

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

.faq-answer,
.official-answer {
  padding: 0 24px 22px 86px;
  color: var(--muted);
  font-size: 14px;
}

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

.official-site summary {
  gap: 14px;
}

.official-site summary strong {
  flex: 1;
  font-size: 16px;
}

.official-answer {
  padding-left: 58px;
}

.official-answer a {
  color: var(--red);
  text-decoration: underline;
}

.reviews-section {
  padding-top: 52px;
}

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

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

.review-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: #1d1b1c url("../icons/avatar.svg") center / 22px 22px no-repeat;
  border-radius: 50%;
}

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

.review-rating {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  min-width: 92px;
  margin-left: auto;
  color: var(--red);
  white-space: nowrap;
}

.aiarticle-comment-rating-icon {
  display: inline-block;
  width: 15px;
  height: 18px;
  font-style: normal;
  line-height: 18px;
  text-align: center;
}

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

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

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

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

.download-section {
  padding: 0 20px 56px;
  background: var(--red);
}

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 235px;
  align-items: stretch;
  width: min(100%, var(--content-width));
  margin: 0 auto;
  color: var(--black);
  background: var(--paper);
}

.download-ticket::before,
.download-ticket::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

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

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

.ticket-index,
.ticket-copy,
.download-ticket > a {
  min-height: 152px;
}

.ticket-index {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px dashed var(--red);
}

.ticket-index strong {
  color: var(--red);
  font-size: 58px;
  line-height: 1;
}

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

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

.ticket-copy h2 {
  margin-top: 5px;
  font-size: 26px;
  line-height: 1.3;
  white-space: nowrap;
}

.ticket-copy p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.download-ticket > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #ffffff;
  background: var(--black);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.download-ticket > a:hover {
  color: var(--black);
  background: #ffffff;
  outline: 1px solid var(--black);
  outline-offset: -1px;
}

.download-ticket > a:hover .icon-arrow {
  background-image: url("../icons/arrow-black.svg");
}

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

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  padding: 42px 0 26px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand span span {
  color: #aaa6a7;
}

.footer-nav {
  justify-self: end;
}

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

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

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

.copyright {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 20px;
  color: #a6a2a3;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-align: center;
}

.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;
  background: var(--red);
  border: 1px solid #ffffff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #ffcf33;
  outline-offset: 3px;
}

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

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

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

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

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

  .hero-copy h2 {
    font-size: 28px;
  }

  .route-content {
    grid-template-columns: 1fr;
  }

  .route-note {
    min-height: 210px;
  }

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

  .ticket-index,
  .ticket-copy {
    padding-right: 24px;
    padding-left: 24px;
  }

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

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

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

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--paper);
    backdrop-filter: none;
    box-shadow: none;
  }

  .brand {
    gap: 7px;
    flex: 1 1 auto;
    min-width: 0;
  }

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

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

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

  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    margin-left: 8px;
  }

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

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

  .menu-toggle .icon {
    width: 22px;
    height: 22px;
  }

  .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-bottom: 1px solid var(--black);
  }

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

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

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

  .site-nav a {
    height: 52px;
    font-size: 13px;
  }

  .site-nav a::after {
    right: auto;
    width: 40px;
    height: 2px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    width: min(calc(100% - 32px), var(--content-width));
    min-height: 0;
  }

  .hero-copy {
    width: 100%;
    padding: 60px 0 44px;
    text-align: center;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(64px, 23vw, 92px);
    line-height: 1;
    white-space: normal;
  }

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

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

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

  .primary-download {
    margin-top: 28px;
  }

  .login-device {
    align-self: center;
    justify-self: auto;
    width: min(310px, 100%);
    margin-bottom: 56px;
    border-width: 10px;
  }

  .section {
    width: min(calc(100% - 32px), var(--content-width));
    padding: 64px 0;
  }

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

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

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

  .route-tabs {
    grid-template-columns: 1fr;
  }

  .route-panel {
    padding: 4px 18px;
  }

  .route-panel li {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 14px 0;
  }

  .route-panel li em {
    grid-column: 2;
    justify-self: start;
  }

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

  .ranking-item,
  .ranking-item:nth-child(2n) {
    border-right: 0;
  }

  .screenshots-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .screenshot-grid figcaption {
    display: block;
    min-height: 70px;
    padding: 12px;
  }

  .screenshot-grid figcaption span,
  .screenshot-grid figcaption strong {
    display: block;
  }

  .screenshot-grid figcaption strong {
    margin-top: 2px;
    font-size: 14px;
  }

  .faq-list summary,
  .official-site summary {
    min-height: 66px;
    padding: 16px;
  }

  .faq-list summary > span:first-child {
    width: 44px;
  }

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

  .faq-answer {
    padding: 0 16px 18px 60px;
  }

  .official-answer {
    padding: 0 16px 18px 50px;
    overflow-wrap: anywhere;
  }

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

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

  .download-section {
    padding: 0 16px 42px;
  }

  .download-ticket {
    display: block;
  }

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

  .ticket-index,
  .ticket-copy,
  .download-ticket > a {
    min-height: 0;
  }

  .ticket-index {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 10px;
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px dashed var(--red);
  }

  .ticket-index strong {
    font-size: 46px;
  }

  .ticket-copy {
    padding: 26px 24px;
    text-align: center;
  }

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

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

  .footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(calc(100% - 32px), var(--content-width));
    text-align: center;
  }

  .footer-nav {
    justify-self: auto;
  }

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

  .copyright {
    width: 100%;
  }

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

  a,
  button,
  summary {
    transition: none !important;
    animation: none !important;
  }
}

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

  .brand > img {
    width: 34px;
    height: 34px;
  }

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

  .header-actions {
    gap: 6px;
    margin-left: 5px;
  }

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

  .menu-toggle {
    width: 36px;
  }

  .hero-inner,
  .section {
    width: calc(100% - 24px);
  }

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

  .hero-features {
    gap: 10px 14px;
  }

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

  .login-device {
    width: min(294px, 100%);
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .ranking-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ranking-item > strong {
    grid-column: 2;
  }

  .screenshot-grid {
    gap: 8px;
  }

  .review-card {
    padding: 20px;
  }

  .review-rating {
    min-width: 78px;
  }

  .aiarticle-comment-rating-icon {
    width: 13px;
  }
}
