@charset "UTF-8";

/* 作者：搭客佬
官网：https://www.hgdjpro.cn/ */

:root {
  --ink: #071221;
  --ink-soft: #142238;
  --paper: #fffaf1;
  --paper-deep: #f5ecdf;
  --white: #ffffff;
  --pink: #e93162;
  --coral: #ff5b4e;
  --yellow: #ffc21a;
  --yellow-deep: #f0a900;
  --line: #d9cfc1;
  --muted: #665e56;
  --header-height: 76px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  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 {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.content-shell,
.header-inner,
.hero-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.icon::before {
  width: 100%;
  height: 100%;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-menu::before {
  background-image: url("../icons/menu.svg");
}

.menu-toggle[aria-expanded="true"] .icon-menu::before {
  background-image: url("../icons/close.svg");
}

.icon-arrow::before {
  background-image: url("../icons/arrow.svg");
}

.icon-search::before {
  background-image: url("../icons/search.svg");
}

.icon-bell::before {
  background-image: url("../icons/bell.svg");
}

.icon-bookmark::before {
  background-image: url("../icons/bookmark.svg");
}

.icon-chart::before {
  background-image: url("../icons/chart.svg");
}

.icon-grid::before {
  background-image: url("../icons/grid.svg");
}

.icon-globe::before {
  background-image: url("../icons/globe.svg");
}

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

.icon-top::before {
  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, 250, 241, 0.98);
  border-bottom: 1px solid var(--line);
}

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

.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: cover;
  border-radius: 12px;
}

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

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  white-space: nowrap;
}

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

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.primary-nav a {
  position: relative;
  display: block;
  padding: 26px 0 23px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: transparent;
}

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

.primary-nav a.is-active::after,
.primary-nav a:hover::after {
  background: var(--pink);
}

.header-actions {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(233, 49, 98, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(233, 49, 98, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 72px;
  left: max(20px, calc((100% - var(--content-width)) / 2));
  width: 3px;
  height: 310px;
  content: "";
  background: linear-gradient(var(--pink), var(--yellow));
}

.hero-inner {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 58px;
  padding: 70px 0;
}

.hero-copy {
  padding-left: 24px;
}

.section-kicker {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(70px, 6vw, 104px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 20px;
  font-size: 31px;
  line-height: 1.35;
}

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

.hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}

.primary-link {
  display: inline-flex;
  min-width: 190px;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px 0 24px;
  color: var(--white);
  background: var(--pink);
  border: 2px solid var(--pink);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-link .icon {
  width: 18px;
  height: 18px;
}

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

.hero-points {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

.show-board {
  position: relative;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 16px 16px 0 rgba(233, 49, 98, 0.14);
}

.show-board::before,
.show-board::after {
  position: absolute;
  left: -13px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--paper);
  border-radius: 50%;
}

.show-board::before {
  top: 112px;
}

.show-board::after {
  bottom: 62px;
}

.board-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
}

.board-topline span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.board-topline strong {
  color: var(--pink);
  font-size: 21px;
}

.board-list {
  padding: 0 28px;
}

.board-item {
  display: grid;
  grid-template-columns: 64px 82px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.board-item time {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.board-thumb {
  width: 82px;
  height: 64px;
  background-image: url("../images/1.png");
  background-repeat: no-repeat;
  background-size: 190px auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.board-thumb-one {
  background-position: 50% 22%;
}

.board-thumb-two {
  background-position: 50% 49%;
}

.board-thumb-three {
  background-position: 50% 72%;
}

.board-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.board-copy strong {
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-copy span {
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-chip {
  padding: 3px 7px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 28px;
}

.board-footer span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.play-mark {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  background: var(--pink);
  border: 3px solid var(--white);
  border-radius: 50%;
}

.play-mark::before {
  position: absolute;
  top: 50%;
  left: 53%;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--white);
  transform: translate(-50%, -50%);
}

.mood-section,
.screens-section,
.faq-section {
  padding: 96px 0;
}

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

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

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.1;
}

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

.mood-stage {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.mood-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mood-tab {
  position: relative;
  display: flex;
  min-height: 180px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
}

.mood-tab:last-child {
  border-right: 0;
}

.mood-tab::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 4px;
  content: "";
  background: transparent;
}

.mood-tab.is-active {
  background: var(--white);
}

.mood-tab.is-active::after {
  background: var(--pink);
}

.mood-symbol {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--pink);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 900;
}

.mood-tab strong {
  font-size: 19px;
}

.mood-tab > span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.mood-panels {
  min-height: 150px;
  padding: 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.mood-panel {
  display: grid;
  grid-template-columns: 150px minmax(240px, 0.9fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: 34px;
}

.mood-panel > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mood-panel strong {
  font-size: 22px;
  line-height: 1.45;
}

.mood-panel p {
  color: var(--muted);
  font-size: 14px;
}

.follow-section,
.download-section {
  padding: 96px 0;
  color: var(--white);
  background: var(--ink);
}

.section-heading-light .section-kicker {
  color: var(--yellow);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.68);
}

.follow-console {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.weekly-board {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.weekly-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.weekly-head strong {
  font-size: 21px;
}

.weekly-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.week-days,
.schedule-row {
  display: grid;
  grid-template-columns: 130px repeat(7, minmax(32px, 1fr));
  align-items: center;
  gap: 4px;
}

.week-days {
  padding: 18px 0 10px;
}

.week-days::before {
  content: "";
}

.week-days span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  text-align: center;
}

.schedule-row {
  min-height: 52px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.schedule-row strong {
  font-size: 13px;
}

.schedule-row span {
  width: 13px;
  height: 2px;
  justify-self: center;
  background: rgba(255, 255, 255, 0.25);
}

.schedule-row b {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 12px;
}

.follow-actions {
  padding: 10px 26px;
}

.follow-action {
  display: grid;
  width: 100%;
  min-height: 94px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  cursor: pointer;
}

.follow-action:last-child {
  border-bottom: 0;
}

.follow-action > .icon {
  width: 48px;
  height: 48px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.07);
}

.follow-action > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.follow-action strong {
  font-size: 17px;
}

.follow-action > span span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.follow-action > b {
  color: var(--yellow);
  font-size: 12px;
}

.follow-action[aria-pressed="true"] > b {
  color: var(--white);
}

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

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

.screen-grid figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
}

.screen-window {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #050a14;
  border-bottom: 1px solid var(--line);
}

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

.screen-grid figcaption {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
}

.screen-grid figcaption span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

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

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

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

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

.faq-button {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  cursor: pointer;
}

.faq-number {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

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

.faq-mark {
  color: var(--ink);
  font-size: 22px;
  text-align: center;
}

.faq-answer {
  padding: 0 78px 24px 94px;
  background: rgba(255, 255, 255, 0.55);
}

.faq-answer p {
  color: var(--muted);
  font-size: 14px;
}

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

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

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

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

.official-site summary .icon {
  width: 19px;
  height: 19px;
}

.official-site summary b {
  position: relative;
  width: 22px;
  height: 22px;
}

.official-site summary b::before,
.official-site summary b::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.official-site summary b::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.official-site[open] summary b::after {
  display: none;
}

.official-answer {
  padding: 0 56px 24px;
}

.official-answer a {
  color: var(--pink);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.voices-section {
  padding: 96px 0;
  background: #fff3f3;
}

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

.review-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--pink);
  box-shadow: 0 12px 30px rgba(7, 18, 33, 0.06);
}

.review-card:nth-child(2n) {
  border-top-color: var(--yellow-deep);
}

.review-user {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

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

.review-user time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.review-card > p {
  margin-top: 22px;
  color: #332e2a;
  font-size: 14px;
  line-height: 1.85;
}

.download-section {
  position: relative;
  overflow: hidden;
}

.download-section::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(255, 194, 26, 0.22);
  border-radius: 50%;
}

.download-ticket {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 190px;
  grid-template-columns: 230px minmax(0, 1fr) 230px;
  color: var(--ink);
  background: var(--white);
}

.ticket-stub {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
  color: var(--white);
  background: var(--ink-soft);
  border-right: 1px dashed rgba(255, 255, 255, 0.35);
}

.ticket-stub::after {
  position: absolute;
  top: 0;
  right: -7px;
  bottom: 0;
  width: 14px;
  content: "";
  background: radial-gradient(circle at 50% 7px, var(--ink) 0 6px, transparent 6.5px) 0 0 / 14px 22px;
}

.ticket-stub > span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  position: absolute;
  top: 30px;
  left: 18px;
}

.ticket-stub strong {
  padding-left: 28px;
  font-size: 22px;
  line-height: 1.35;
}

.ticket-stub b {
  padding-left: 28px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.ticket-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 30px 46px;
}

.ticket-copy > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.ticket-copy h3 {
  margin-top: 6px;
  font-size: 26px;
  line-height: 1.35;
  white-space: nowrap;
}

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

.ticket-points {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
}

.ticket-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.ticket-points .icon {
  width: 16px;
  height: 16px;
}

.ticket-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  background: var(--yellow);
  border-left: 1px dashed rgba(7, 18, 33, 0.28);
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.ticket-action .icon {
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.site-footer {
  color: var(--white);
  background: #030a14;
}

.footer-inner {
  padding: 44px 0 26px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}

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

.footer-brand strong {
  color: var(--white);
}

.footer-brand span span {
  color: rgba(255, 255, 255, 0.54);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--pink);
  border: 2px solid var(--ink);
  opacity: 0;
  pointer-events: none;
}

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

.back-top .icon {
  width: 20px;
  height: 20px;
}

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

@media (hover: hover) {
  .primary-link,
  .ticket-action,
  .mood-tab,
  .follow-action,
  .faq-button,
  .back-top {
    transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  }

  .primary-link:hover {
    color: var(--pink);
    background: var(--white);
  }

  .ticket-action:hover {
    color: var(--white);
    background: var(--pink);
  }

  .mood-tab:hover {
    background: var(--white);
  }

  .faq-button:hover {
    background: var(--white);
  }
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: 32px;
  }

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

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

  .board-item {
    grid-template-columns: 56px 68px minmax(0, 1fr);
  }

  .board-thumb {
    width: 68px;
    height: 56px;
  }

  .status-chip {
    display: none;
  }

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

  .ticket-copy {
    padding: 28px 34px;
  }

  .ticket-copy h3 {
    font-size: 22px;
  }
}

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

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

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

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

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

  .brand {
    gap: 8px;
  }

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

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

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

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

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

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--paper);
    border: 1px solid var(--ink);
  }

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

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

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

  .primary-nav ul {
    width: min(calc(100% - 28px), var(--content-width));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0 auto;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--line);
  }

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

  .primary-nav a {
    padding: 15px 2px;
  }

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

  .hero::before {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 0 64px;
  }

  .hero-copy {
    padding-left: 0;
    text-align: center;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(58px, 18vw, 84px);
    letter-spacing: -0.08em;
    white-space: normal;
  }

  .hero h2 {
    margin-top: 16px;
    font-size: clamp(24px, 7vw, 32px);
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
  }

  .hero-cta {
    align-items: center;
  }

  .hero-points {
    justify-content: center;
    gap: 16px;
  }

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

  .show-board {
    width: min(100%, 580px);
    margin: 0 auto;
    box-shadow: 10px 10px 0 rgba(233, 49, 98, 0.14);
  }

  .mood-section,
  .follow-section,
  .screens-section,
  .faq-section,
  .voices-section,
  .download-section {
    padding: 70px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .section-heading > p {
    padding-bottom: 0;
  }

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

  .mood-tab:nth-child(2) {
    border-right: 0;
  }

  .mood-tab:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .follow-console {
    grid-template-columns: 1fr;
  }

  .weekly-board {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .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: 1fr 170px;
  }

  .ticket-stub {
    display: none;
  }

  .ticket-copy {
    padding: 30px;
  }

  .ticket-copy h3 {
    font-size: 19px;
  }

  .ticket-action {
    font-size: 18px;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  a,
  button,
  summary,
  .primary-link,
  .ticket-action,
  .mood-tab,
  .follow-action,
  .faq-button,
  .back-top {
    transition: none !important;
    animation: none !important;
  }

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

@media (max-width: 600px) {
  .hero-inner {
    padding-top: 48px;
  }

  .board-topline,
  .board-list,
  .board-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .board-item {
    grid-template-columns: 54px 58px minmax(0, 1fr);
    gap: 10px;
    min-height: 96px;
  }

  .board-item time {
    font-size: 17px;
  }

  .board-thumb {
    width: 58px;
    height: 52px;
  }

  .board-copy strong {
    font-size: 13px;
  }

  .mood-tab {
    min-height: 150px;
    padding: 20px;
  }

  .mood-symbol {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }

  .mood-tab strong {
    font-size: 16px;
  }

  .mood-panels {
    padding: 24px 20px;
  }

  .weekly-board {
    padding: 24px 16px;
    overflow-x: auto;
  }

  .weekly-head,
  .week-days,
  .schedule-row {
    min-width: 580px;
  }

  .follow-actions {
    padding: 8px 18px;
  }

  .follow-action {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .follow-action > .icon {
    width: 40px;
    height: 40px;
    padding: 11px;
  }

  .follow-action strong {
    font-size: 15px;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    min-height: 58px;
    gap: 8px;
    padding: 12px 10px;
  }

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

  .faq-button {
    min-height: 70px;
    grid-template-columns: 30px minmax(0, 1fr) 22px;
    gap: 8px;
    padding: 0 12px;
  }

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

  .faq-answer {
    padding: 0 38px 20px 50px;
  }

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

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

  .official-answer {
    padding: 0 44px 22px;
  }

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

  .review-card {
    min-height: 0;
    padding: 22px;
  }

  .review-user {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 8px;
  }

  .avatar {
    width: 38px;
    height: 38px;
  }

  .review-user time {
    justify-self: end;
    font-size: 12px;
  }

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

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

  .ticket-copy h3 {
    font-size: clamp(16px, 4.8vw, 19px);
    white-space: nowrap;
  }

  .ticket-copy > p {
    max-width: 320px;
  }

  .ticket-points {
    gap: 14px;
  }

  .ticket-action {
    min-height: 82px;
    flex-direction: row;
    border-top: 1px dashed rgba(7, 18, 33, 0.28);
    border-left: 0;
  }

  .footer-links {
    gap: 14px 22px;
  }
}

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

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

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

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

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

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

  .hero-points {
    gap: 10px;
  }

  .hero-points span {
    gap: 5px;
  }

  .ticket-points {
    gap: 9px;
  }

  .ticket-points span {
    gap: 4px;
  }
}
