@charset "UTF-8";
/* 作者：搭客佬
官网： */

:root {
  --night: #0b1020;
  --night-soft: #121a2f;
  --night-card: #18213b;
  --lime: #b9ff45;
  --lime-deep: #78b91d;
  --orange: #ff6a3d;
  --lavender: #8d7cff;
  --paper: #f7f5ef;
  --paper-cool: #f0eff8;
  --white: #ffffff;
  --ink: #171b29;
  --muted: #6c7182;
  --line: #dedee8;
  --shell: 1200px;
  --header-height: 72px;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

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

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.content-section {
  padding: 96px 0;
  scroll-margin-top: var(--header-height);
}

.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-spark { background-image: url("../icons/spark.svg"); }
.icon-bell { background-image: url("../icons/bell.svg"); }
.icon-download { background-image: url("../icons/download.svg"); }
.icon-arrow { background-image: url("../icons/arrow-right.svg"); }
.icon-books { background-image: url("../icons/books.svg"); }
.icon-signal { background-image: url("../icons/signal.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }
.icon-mail { background-image: url("../icons/mail.svg"); }
.icon-top { background-image: url("../icons/top.svg"); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  background: rgba(11, 16, 32, 0.98);
  border-bottom: 1px solid rgba(185, 255, 69, 0.2);
}

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

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

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

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

.brand-copy strong {
  color: var(--white);
  font-size: 19px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 4px;
  color: #aeb6c9;
  font-size: 12px;
  white-space: nowrap;
}

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

.main-nav a {
  position: relative;
  display: block;
  padding: 24px 0 23px;
  color: #d5d9e5;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s ease;
}

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

.main-nav a:hover,
.main-nav a.is-current {
  color: var(--lime);
}

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

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

.mobile-get {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--night);
  background: var(--lime);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  cursor: pointer;
}

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

.night-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  color: var(--white);
  background:
    radial-gradient(circle at 70% 35%, rgba(141, 124, 255, 0.2), transparent 28%),
    linear-gradient(115deg, #0b1020 0%, #111a34 56%, #091426 100%);
}

.night-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% + 118px);
  width: 1px;
  content: "";
  background: rgba(185, 255, 69, 0.3);
  box-shadow: 116px 0 rgba(185, 255, 69, 0.12), 232px 0 rgba(185, 255, 69, 0.08);
}

.night-hero::after {
  position: absolute;
  right: -100px;
  bottom: 70px;
  width: 440px;
  height: 170px;
  content: "";
  border: 1px solid rgba(185, 255, 69, 0.3);
  transform: skewX(-28deg);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  min-height: 720px;
}

.hero-copy {
  display: flex;
  max-width: 650px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 78px 40px 82px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  color: var(--night);
  background: var(--lime);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--night);
  border-radius: 50%;
}

.hero-copy h1 {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(68px, 7.5vw, 112px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy h1::first-letter {
  color: var(--white);
}

.hero-slogan {
  margin-top: 16px;
  font-size: clamp(28px, 3vw, 45px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.04em;
}

.hero-slogan::after {
  display: inline-block;
  width: 74px;
  height: 5px;
  margin-left: 14px;
  content: "";
  vertical-align: 0.2em;
  background: var(--orange);
  transform: skewX(-28deg);
}

.hero-description {
  max-width: 530px;
  margin-top: 18px;
  color: #bdc5d8;
  font-size: 17px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  color: #e8ebf3;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
}

.hero-tags .icon {
  width: 17px;
  height: 17px;
}

.hero-download {
  display: inline-flex;
  min-width: 240px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
  padding: 0 26px;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 10px;
  box-shadow: 8px 8px 0 var(--lime);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
  transition: box-shadow 0.18s ease, background 0.18s ease;
}

.hero-download:hover {
  background: #e64b22;
  box-shadow: 4px 4px 0 var(--lime);
}

.hero-download .icon,
.ticket-download .icon {
  width: 18px;
  height: 18px;
}

.age-label {
  display: block;
  margin-top: 19px;
  color: #9ca7bc;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  padding-top: 46px;
}

.phone-device {
  position: relative;
  z-index: 3;
  width: 348px;
  height: 650px;
  margin-left: auto;
  overflow: hidden;
  background: #05070d;
  border: 10px solid #05070d;
  border-bottom: 0;
  border-radius: 45px 45px 0 0;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 90px;
  height: 22px;
  background: #05070d;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: #202431;
  background: #fff;
  border-radius: 35px 35px 0 0;
}

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

.phone-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px 14px;
}

.phone-title-row strong {
  font-size: 19px;
}

.phone-search {
  display: flex;
  width: 205px;
  height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: #9297a5;
  background: #f4f4f6;
  border-radius: 20px;
  font-size: 10px;
}

.phone-title-row .icon {
  width: 14px;
  height: 14px;
  filter: brightness(0.55);
}

.phone-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 18px 10px 16px;
  background: #f7f7f9;
}

.phone-shortcuts span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  font-size: 10px;
}

.phone-shortcuts i {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 10px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.phone-shortcuts span:nth-child(2) i { background: #f2a33a; }
.phone-shortcuts span:nth-child(3) i { background: #6486ee; }
.phone-shortcuts span:nth-child(4) i { background: #9c62e8; }

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 15px 10px;
}

.phone-section-title strong { font-size: 15px; }
.phone-section-title span { color: #8b8f9b; font-size: 10px; }

.phone-covers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 9px;
  padding: 0 15px 56px;
}

.phone-covers figure {
  min-width: 0;
}

.phone-covers img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 7px;
}

.phone-covers figcaption {
  margin-top: 5px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-bottom-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 12px 8px 15px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid #e7e7ec;
  text-align: center;
}

.phone-bottom-nav span {
  color: #7d8290;
  font-size: 10px;
}

.phone-bottom-nav .active {
  color: var(--orange);
  font-weight: 800;
}

.hero-mascot {
  position: absolute;
  z-index: 5;
  right: 300px;
  bottom: 82px;
  width: 120px;
  padding: 9px;
  background: var(--lime);
  border: 5px solid var(--night);
  border-radius: 50%;
  box-shadow: 9px 9px 0 var(--orange);
}

.hero-mascot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.signal-copy {
  position: absolute;
  z-index: 1;
  color: var(--lavender);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.signal-copy-top {
  top: 100px;
  right: 4px;
  transform: rotate(-4deg);
}

.signal-copy-bottom {
  right: -34px;
  bottom: 95px;
  padding: 10px 16px;
  color: var(--lime);
  border-left: 3px solid var(--orange);
}

.section-heading {
  margin-bottom: 34px;
}

.section-index {
  display: block;
  margin-bottom: 9px;
  color: var(--lavender);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-heading h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 16px;
}

.heading-with-controls,
.gallery-heading,
.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.mood-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mood-filters button,
.keyword-chips button {
  min-height: 38px;
  padding: 0 15px;
  color: #555b6b;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.mood-filters button:hover,
.mood-filters button.is-active {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime-deep);
}

.mood-feedback {
  min-height: 24px;
  margin: -20px 0 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.mood-board {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  grid-template-rows: repeat(2, 250px);
  gap: 14px;
}

.mood-card {
  min-width: 0;
}

.mood-card[hidden] {
  display: none;
}

.mood-feature {
  position: relative;
  grid-row: 1 / 3;
  overflow: hidden;
  background: var(--night);
  border-radius: var(--radius);
}

.mood-cover,
.mood-cover img {
  width: 100%;
  height: 100%;
}

.mood-cover img {
  object-fit: cover;
}

.mood-feature::after {
  position: absolute;
  inset: 30% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(8, 12, 25, 0.94));
}

.mood-overlay {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: var(--white);
}

.mood-overlay span,
.mood-tile div > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mood-overlay h3 {
  margin-top: 6px;
  font-size: 31px;
  line-height: 1.2;
}

.mood-overlay p {
  margin-top: 8px;
  color: #cbd1df;
  font-size: 14px;
}

.mood-tile {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  overflow: hidden;
  color: var(--white);
  background: var(--night-soft);
  border-radius: var(--radius);
}

.mood-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mood-tile div {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.mood-tile h3 {
  margin-top: 5px;
  font-size: 22px;
  line-height: 1.2;
}

.mood-tile p {
  margin-top: 9px;
  color: #b9c0d0;
  font-size: 13px;
}

.tile-romance { border-bottom: 5px solid var(--orange); }
.tile-healing { border-bottom: 5px solid var(--lime); }
.tile-mystery { border-bottom: 5px solid var(--lavender); }
.tile-soft { border-bottom: 5px solid #51cad4; }

.radar-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.radar-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(141, 124, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 124, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
}

.radar-street {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  opacity: 0.2;
  background: linear-gradient(150deg, transparent 28%, var(--lavender) 29%, transparent 30%, transparent 60%, var(--lime) 61%, transparent 62%);
}

.radar-section .page-shell {
  position: relative;
  z-index: 2;
}

.section-heading-dark .section-index { color: var(--lime); }
.section-heading-dark p { color: #aeb7cc; }

.radar-layout {
  display: grid;
  grid-template-columns: minmax(460px, 1fr) minmax(430px, 0.88fr);
  gap: 72px;
  align-items: center;
}

.week-radar {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 255, 69, 0.1);
  border-radius: 50%;
}

.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185, 255, 69, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 72%; height: 72%; }
.ring-two { width: 44%; height: 44%; }

.radar-ring::before,
.radar-ring::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(185, 255, 69, 0.18);
  transform: translate(-50%, -50%);
}

.radar-ring::before { width: 140%; height: 1px; }
.radar-ring::after { width: 1px; height: 140%; }

.day-point {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  min-width: 50px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: #c8cede;
  background: var(--night-card);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.day-point::after {
  position: absolute;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--lime);
  border: 2px solid var(--night);
  border-radius: 50%;
}

.day-point:hover,
.day-point.is-active {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.day-point.is-active::after { background: var(--orange); }
.day-1 { top: 5%; left: 25%; }
.day-1::after { right: -14px; bottom: -9px; }
.day-2 { top: 16%; right: 9%; }
.day-2::after { bottom: -13px; left: 9px; }
.day-3 { top: 45%; right: -3%; }
.day-3::after { bottom: -2px; left: -12px; }
.day-4 { right: 10%; bottom: 13%; }
.day-4::after { top: -11px; left: 7px; }
.day-5 { bottom: 3%; left: 35%; }
.day-5::after { top: -13px; left: 17px; }
.day-6 { bottom: 17%; left: 2%; }
.day-6::after { top: -7px; right: -12px; }
.day-7 { top: 35%; left: -4%; }
.day-7::after { right: -12px; bottom: -2px; }

.radar-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--night);
  background: var(--lime);
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 15px rgba(185, 255, 69, 0.06);
  transform: translate(-50%, -50%);
}

.radar-core img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.radar-core strong {
  margin-top: 5px;
  font-size: 16px;
}

.radar-core span {
  margin-top: 2px;
  font-size: 12px;
}

.follow-queue {
  padding: 30px;
  background: rgba(20, 29, 53, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 rgba(141, 124, 255, 0.22);
}

.queue-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.queue-heading span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.queue-heading h3 {
  margin-top: 2px;
  font-size: 27px;
}

.queue-heading button {
  padding: 7px 12px;
  color: #d3d9e8;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  font-size: 12px;
  cursor: pointer;
}

.queue-heading button:hover {
  color: var(--night);
  background: var(--lime);
  border-color: var(--lime);
}

.queue-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.queue-list img {
  width: 54px;
  height: 66px;
  object-fit: cover;
  border-radius: 6px;
}

.queue-list strong,
.queue-list span {
  display: block;
}

.queue-list strong { font-size: 14px; }
.queue-list span { margin-top: 4px; color: #9fa8bc; font-size: 12px; }
.queue-list em { color: var(--lime); font-size: 12px; font-style: normal; font-weight: 800; white-space: nowrap; }

.remind-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 0 18px;
  color: var(--night);
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.remind-toggle[aria-pressed="true"] {
  background: var(--lime);
}

.queue-status {
  display: inline-block;
  margin-left: 12px;
  color: #aeb6c9;
  font-size: 12px;
}

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

.cabin-grid {
  display: grid;
  grid-template-columns: 1.06fr 1.08fr 0.86fr;
  gap: 16px;
  align-items: stretch;
}

.cabin-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(20, 24, 38, 0.06);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-title > .icon {
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: var(--night);
  background-size: 20px;
  border-radius: 10px;
}

.panel-title span {
  color: var(--lavender);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.panel-title h3 {
  margin-top: 1px;
  font-size: 21px;
}

.search-form {
  margin-top: 23px;
}

.search-form label {
  display: block;
  margin-bottom: 8px;
  color: #555b6b;
  font-size: 13px;
  font-weight: 700;
}

.search-form > div {
  display: flex;
  padding: 5px;
  background: #f2f2f6;
  border: 1px solid #e0e0e8;
  border-radius: 10px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 11px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-size: 13px;
}

.search-form button {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  background: var(--lavender);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.keyword-chips button {
  min-height: 32px;
  padding: 0 11px;
  background: #f6f6f8;
  font-size: 12px;
}

.keyword-chips button:hover {
  color: var(--white);
  background: var(--night);
  border-color: var(--night);
}

.search-result,
.shelf-console > p,
.line-console > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.shelf-rows {
  margin-top: 16px;
}

.shelf-rows > button {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(76px, 1fr) auto 18px;
  gap: 10px;
  align-items: center;
  padding: 10px 8px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e8e8ee;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.shelf-rows > button:hover,
.shelf-rows > button.is-active {
  background: #f1f5e8;
}

.shelf-rows strong {
  font-size: 13px;
  white-space: nowrap;
}

.shelf-rows strong span {
  color: var(--lime-deep);
}

.shelf-thumbs {
  display: flex;
  gap: 4px;
}

.shelf-thumbs img {
  width: 30px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.shelf-rows .icon {
  width: 16px;
  height: 16px;
  filter: brightness(0.45);
}

.line-options {
  margin-top: 16px;
}

.line-options button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e8e8ee;
  font-size: 13px;
  cursor: pointer;
}

.line-options span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.line-options span i {
  width: 10px;
  height: 10px;
  background: #c7cad4;
  border: 2px solid #c7cad4;
  border-radius: 50%;
  box-shadow: 0 0 0 3px white inset;
}

.line-options button.is-active span i {
  background: var(--lavender);
  border-color: var(--lavender);
}

.line-options em {
  color: var(--lime-deep);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.offline-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding: 14px;
  background: #f5f5f8;
  border-radius: 10px;
}

.offline-switch strong,
.offline-switch small {
  display: block;
}

.offline-switch strong { font-size: 13px; }
.offline-switch small { margin-top: 3px; color: var(--muted); font-size: 12px; }

.offline-switch button {
  position: relative;
  width: 44px;
  height: 24px;
  flex: 0 0 auto;
  padding: 0;
  background: #b9bdc8;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.offline-switch button i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.18s ease;
}

.offline-switch button[aria-checked="true"] {
  background: var(--lime-deep);
}

.offline-switch button[aria-checked="true"] i {
  transform: translateX(20px);
}

.gallery-section {
  background: var(--paper-cool);
  border-top: 1px solid #dedceb;
  border-bottom: 1px solid #dedceb;
}

.gallery-note {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  color: var(--lavender);
  border: 1px solid var(--lavender);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

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

.screenshot-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d9d7e6;
  border-radius: 16px;
  box-shadow: 0 15px 34px rgba(28, 30, 48, 0.08);
}

.screenshot-media {
  aspect-ratio: 9 / 16;
  padding: 10px;
  overflow: hidden;
  background: #fafafa;
  border-bottom: 1px solid #e5e3ed;
}

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

.screenshot-card figcaption {
  position: relative;
  display: grid;
  min-height: 100px;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-content: center;
  padding: 16px;
}

.screenshot-card figcaption > span {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--night);
  background: var(--lime);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

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

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

.faq-section {
  padding-bottom: 80px;
  background: var(--paper);
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.faq-item > button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-item > button span {
  font-size: 14px;
  font-weight: 800;
}

.faq-item > button i,
.official-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item > button i::before,
.faq-item > button i::after,
.official-toggle::before,
.official-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.faq-item > button i::after,
.official-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item > button[aria-expanded="true"] {
  color: var(--night);
  background: var(--lime);
  border-radius: 11px 11px 0 0;
}

.faq-item > button[aria-expanded="true"] i::after,
.official-disclosure[open] .official-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item > div {
  padding: 16px 20px 20px;
  color: #5e6472;
  border-top: 1px solid var(--line);
}

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

.official-disclosure {
  width: 100%;
  margin-top: 14px;
  overflow: hidden;
  background: var(--night);
  border: 1px solid var(--night);
  border-radius: 12px;
}

.official-disclosure summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  color: var(--white);
  cursor: pointer;
  list-style: none;
}

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

.official-disclosure summary > .icon {
  width: 22px;
  height: 22px;
}

.official-disclosure summary strong {
  flex: 1;
  font-size: 14px;
}

.official-toggle {
  color: var(--lime);
}

.official-answer {
  padding: 16px 20px 20px 55px;
  color: #bdc5d8;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.official-answer a {
  margin-left: 5px;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-section {
  padding-top: 78px;
  background: var(--white);
}

.mail-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--orange);
  border: 1px dashed var(--orange);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
}

.mail-stamp .icon {
  width: 18px;
  height: 18px;
}

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

.review-card {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: inset 4px 0 0 var(--lavender);
}

.review-card:nth-child(2n) {
  box-shadow: inset 4px 0 0 var(--lime-deep);
}

.review-card:nth-child(3n) {
  box-shadow: inset 4px 0 0 var(--orange);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--night);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.review-meta strong,
.review-meta time {
  display: block;
}

.review-meta strong {
  font-size: 13px;
}

.review-meta time {
  margin-top: 2px;
  color: #888e9c;
  font-size: 12px;
}

.review-card > p {
  margin-top: 18px;
  color: #4f5564;
  font-size: 13px;
  line-height: 1.85;
}

.boarding-section {
  padding: 86px 0;
  scroll-margin-top: var(--header-height);
  background: var(--paper-cool);
}

.boarding-pass {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1.55fr 92px 190px;
  gap: 24px;
  align-items: center;
  min-height: 210px;
  padding: 34px 40px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, transparent 47%, rgba(141, 124, 255, 0.17) 47%, rgba(141, 124, 255, 0.17) 49%, transparent 49%),
    var(--night);
  border-radius: 16px;
  box-shadow: 14px 14px 0 var(--lime);
}

.boarding-pass::before,
.boarding-pass::after {
  position: absolute;
  left: -12px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--paper-cool);
  border-radius: 50%;
  box-shadow: 0 32px var(--paper-cool), 0 64px var(--paper-cool), 0 96px var(--paper-cool), 0 128px var(--paper-cool), 0 160px var(--paper-cool);
}

.boarding-pass::before { top: 4px; }
.boarding-pass::after { right: -12px; left: auto; top: 4px; }

.ticket-copy {
  min-width: 0;
}

.ticket-copy > span {
  color: var(--lavender);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ticket-copy h2 {
  margin-top: 8px;
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.ticket-copy h2::first-letter {
  color: var(--white);
}

.ticket-copy p {
  margin-top: 8px;
  color: #aeb6c9;
  font-size: 13px;
}

.boarding-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.boarding-steps li {
  position: relative;
  display: flex;
  min-width: 82px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.boarding-steps li:not(:last-child)::after {
  position: absolute;
  top: 16px;
  right: -18px;
  color: var(--lavender);
  content: "→";
  font-size: 17px;
}

.boarding-steps strong {
  color: var(--lime);
  font-size: 23px;
  line-height: 1;
}

.boarding-steps span {
  margin-top: 8px;
  color: #d6dbe7;
  font-size: 12px;
  white-space: nowrap;
}

.ticket-mascot {
  padding: 7px;
  background: var(--white);
  border: 4px solid var(--lime);
  border-radius: 50%;
}

.ticket-mascot img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.ticket-download {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--white);
  background: var(--orange);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: background 0.18s ease;
}

.ticket-download:hover {
  background: #e64b22;
}

.site-footer {
  color: var(--white);
  background: #080c18;
}

.footer-main {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer-brand span,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong { font-size: 17px; }
.footer-brand small { margin-top: 2px; color: #9fa8bb; font-size: 12px; }

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

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

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

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.back-top {
  position: fixed;
  z-index: 900;
  right: max(18px, calc((100vw - var(--shell)) / 2 - 68px));
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  color: var(--night);
  background: var(--lime);
  border: 2px solid var(--night);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--orange);
  cursor: pointer;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

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

@media (max-width: 1080px) {
  .main-nav ul { gap: 22px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 390px; }
  .phone-device { width: 330px; }
  .hero-mascot { right: 278px; width: 104px; }
  .radar-layout { gap: 42px; }
  .cabin-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .line-console { grid-column: 1 / 3; }
  .boarding-pass { grid-template-columns: 1.2fr 1.5fr 78px 168px; gap: 17px; padding-inline: 30px; }
  .ticket-mascot img { width: 58px; height: 58px; }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }
  .page-shell { width: min(calc(100% - 32px), var(--shell)); }
  .mobile-tools { display: flex; }
  .main-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(--night);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(185, 255, 69, 0.35);
  }
  .main-nav.is-open { display: block; }
  .main-nav ul { display: block; width: min(calc(100% - 32px), var(--shell)); margin-inline: auto; padding: 10px 0 16px; }
  .main-nav a { padding: 13px 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.09); font-size: 14px; }
  .main-nav a::after { display: none; }
  .brand img { width: 42px; height: 42px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) 350px; }
  .hero-copy { padding-right: 18px; }
  .phone-device { width: 315px; }
  .hero-mascot { right: 260px; width: 96px; }
  .signal-copy { display: none; }
  .mood-board { grid-template-columns: 1fr 1fr; grid-template-rows: 430px repeat(2, 220px); }
  .mood-feature { grid-column: 1 / 3; grid-row: auto; }
  .radar-layout { grid-template-columns: 1fr 1fr; gap: 30px; }
  .week-radar { min-width: 0; }
  .follow-queue { padding: 22px; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .boarding-pass { grid-template-columns: 1fr 1.45fr 72px; }
  .ticket-download { grid-column: 1 / 4; width: min(260px, 100%); justify-self: center; }
  .footer-main { align-items: flex-start; flex-direction: column; padding: 28px 0; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .content-section { padding: 72px 0; }
  .night-hero::before,
  .night-hero::after { display: none; }
  .hero-layout { display: block; padding-top: 0; }
  .hero-copy { max-width: 620px; align-items: center; margin-inline: auto; padding: 68px 0 52px; text-align: center; }
  .hero-copy h1 { font-size: clamp(58px, 19vw, 92px); }
  .hero-description { max-width: 460px; }
  .hero-tags { justify-content: center; }
  .hero-slogan::after { display: block; margin: 12px auto 0; }
  .hero-stage { min-height: 590px; align-items: flex-end; justify-content: center; padding-top: 0; }
  .phone-device { width: 310px; height: 570px; margin: 0 auto; border-radius: 42px 42px 0 0; }
  .phone-covers img { height: 140px; }
  .hero-mascot { right: calc(50% + 105px); bottom: 54px; width: 88px; }
  .heading-with-controls,
  .gallery-heading,
  .reviews-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .mood-filters { justify-content: flex-start; }
  .mood-feedback { margin-top: 0; text-align: left; }
  .mood-board { grid-template-columns: 1fr; grid-template-rows: 420px repeat(4, 205px); }
  .mood-feature { grid-column: auto; }
  .radar-layout { grid-template-columns: 1fr; gap: 52px; }
  .week-radar { width: min(100%, 480px); margin-inline: auto; }
  .follow-queue { max-width: 540px; width: 100%; margin-inline: auto; }
  .cabin-grid { grid-template-columns: 1fr; }
  .line-console { grid-column: auto; }
  .screenshot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .screenshot-media { padding: 6px; }
  .screenshot-card figcaption { min-height: 92px; grid-template-columns: 32px 1fr; column-gap: 7px; padding: 12px 10px; }
  .screenshot-card figcaption > span { width: 30px; height: 30px; }
  .screenshot-card figcaption strong { font-size: 13px; }
  .screenshot-card figcaption small { font-size: 12px; line-height: 1.35; }
  .faq-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .boarding-pass { grid-template-columns: 1fr; gap: 26px; padding: 36px 28px; text-align: center; box-shadow: 8px 8px 0 var(--lime); }
  .ticket-copy h2 { font-size: clamp(23px, 7vw, 34px); }
  .boarding-steps { flex-wrap: wrap; }
  .ticket-mascot { width: 88px; margin-inline: auto; }
  .ticket-download { grid-column: auto; width: min(270px, 100%); }
  .footer-main { align-items: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom { justify-content: center; flex-direction: column; padding: 20px 0; text-align: center; }
}

@media (max-width: 520px) {
  .page-shell { width: min(calc(100% - 24px), var(--shell)); }
  .content-section { padding: 62px 0; }
  .section-heading { margin-bottom: 26px; }
  .section-heading h2 { font-size: 32px; }
  .section-heading p { font-size: 14px; }
  .brand { gap: 6px; }
  .brand img { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { margin-top: 2px; font-size: 12px; }
  .mobile-get { min-height: 34px; padding: 0 10px; }
  .menu-toggle { width: 38px; height: 38px; }
  .hero-copy { padding-top: 56px; }
  .hero-slogan { font-size: 28px; }
  .hero-description { font-size: 15px; }
  .hero-tags { gap: 7px; }
  .hero-tags span { min-height: 35px; padding-inline: 9px; font-size: 12px; }
  .hero-download { min-width: 220px; }
  .hero-stage { min-height: 555px; }
  .phone-device { width: min(294px, calc(100vw - 46px)); height: 540px; }
  .phone-search { width: 185px; }
  .phone-covers img { height: 130px; }
  .hero-mascot { right: calc(50% + 92px); width: 76px; }
  .mood-board { grid-template-rows: 390px repeat(4, 185px); }
  .mood-tile div { padding: 15px; }
  .mood-tile h3 { font-size: 19px; }
  .mood-overlay { right: 20px; bottom: 20px; left: 20px; }
  .week-radar { width: calc(100% - 12px); }
  .day-point { min-width: 43px; min-height: 30px; padding-inline: 7px; }
  .radar-core { width: 130px; height: 130px; }
  .radar-core img { width: 44px; height: 44px; }
  .follow-queue { padding: 17px; box-shadow: 8px 8px 0 rgba(141, 124, 255, 0.22); }
  .queue-list article { grid-template-columns: 46px minmax(0, 1fr) auto; gap: 9px; }
  .queue-list img { width: 46px; height: 58px; }
  .queue-status { display: block; margin: 12px 0 0; }
  .cabin-panel { padding: 21px; }
  .shelf-rows > button { grid-template-columns: minmax(70px, 1fr) auto 15px; gap: 6px; }
  .shelf-thumbs img { width: 25px; height: 34px; }
  .gallery-note { white-space: normal; }
  .review-card { padding: 21px; }
  .official-answer { padding-left: 20px; }
  .boarding-section { padding: 66px 0; }
  .boarding-steps { gap: 14px; }
  .boarding-steps li { min-width: 74px; }
  .boarding-steps li:not(:last-child)::after { right: -13px; }
  .footer-nav { gap: 11px 20px; }
  .back-top { right: 14px; bottom: 16px; width: 44px; height: 44px; }
}

@media (max-width: 380px) {
  .header-inner { gap: 6px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy span { font-size: 12px; transform: scale(0.92); transform-origin: left center; }
  .mobile-tools { gap: 5px; }
  .mobile-get { padding-inline: 8px; }
  .menu-toggle { width: 36px; height: 36px; }
  .hero-copy h1 { font-size: 58px; }
  .hero-slogan { font-size: 25px; }
  .hero-stage { min-height: 525px; }
  .phone-device { height: 510px; }
  .phone-shortcuts { padding-inline: 4px; }
  .phone-search { width: 168px; padding-inline: 8px; }
  .phone-covers img { height: 117px; }
  .hero-mascot { right: calc(50% + 82px); bottom: 44px; width: 70px; }
  .mood-filters button { padding-inline: 12px; }
  .mood-board { grid-template-rows: 350px repeat(4, 170px); }
  .week-radar { width: calc(100% - 6px); }
  .radar-core { width: 112px; height: 112px; }
  .radar-core span { display: none; }
  .day-2 { right: 3%; }
  .day-3 { right: -5%; }
  .day-4 { right: 4%; }
  .day-6 { left: -2%; }
  .day-7 { left: -6%; }
  .queue-heading h3 { font-size: 24px; }
  .queue-list em { font-size: 12px; }
  .shelf-thumbs img:nth-child(3) { display: none; }
  .screenshot-card figcaption { display: block; min-height: 103px; }
  .screenshot-card figcaption > span { margin-bottom: 7px; }
  .screenshot-card figcaption small { display: block; margin-top: 3px; }
  .boarding-steps { gap: 8px; }
  .boarding-steps li { min-width: 69px; }
  .boarding-steps li:not(:last-child)::after { right: -8px; }
}

@media (max-width: 900px) {
  a,
  button,
  summary,
  .offline-switch button i {
    transition: none !important;
    animation: none !important;
  }
}
