@charset "UTF-8";

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

:root {
  --ink: #111820;
  --navy: #071827;
  --navy-soft: #10263a;
  --paper: #fff9f2;
  --paper-deep: #f4eadc;
  --white: #ffffff;
  --coral: #ff4f45;
  --orange: #ff7a22;
  --yellow: #ffc83d;
  --rose: #ea3352;
  --muted: #66717b;
  --line: rgba(17, 24, 32, 0.18);
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

ul {
  padding: 0;
  list-style: none;
}

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

.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;
}

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy);
}

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

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

.brand img {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
}

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

.brand-copy strong {
  color: var(--white);
  font-size: 19px;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  white-space: nowrap;
}

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

.site-nav a {
  position: relative;
  display: block;
  padding: 26px 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

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

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

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

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

.mobile-download,
.menu-toggle {
  height: 42px;
  border: 1px solid var(--coral);
  background: var(--coral);
}

.mobile-download {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 42px;
  cursor: pointer;
  place-items: center;
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.98) 0%, rgba(7, 24, 39, 0.96) 52%, rgba(10, 32, 48, 0.9) 100%),
    radial-gradient(circle at 85% 20%, rgba(255, 122, 34, 0.35), transparent 28%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent 20%, #000 72%);
}

.hero::after {
  position: absolute;
  right: -100px;
  bottom: -165px;
  width: 570px;
  height: 330px;
  border: 1px solid rgba(255, 200, 61, 0.3);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
}

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

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

.eyebrow,
.section-index,
.card-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(64px, 6vw, 94px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.hero h2 {
  margin-top: 14px;
  font-size: 33px;
  line-height: 1.3;
}

.hero-description {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

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

.hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero-features .icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(78%) sepia(91%) saturate(920%) hue-rotate(335deg) brightness(102%);
}

.hero-download {
  display: inline-flex;
  min-width: 208px;
  height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  border: 1px solid var(--coral);
  color: var(--white);
  background: var(--coral);
  font-weight: 800;
  box-shadow: 8px 8px 0 var(--yellow);
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-download .icon {
  filter: brightness(0) invert(1);
}

.hero-download:hover {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--coral);
}

.hero-download:hover .icon {
  filter: brightness(0) saturate(100%) invert(8%) sepia(18%) saturate(1744%) hue-rotate(164deg) brightness(95%);
}

.age-label {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-stage {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  z-index: 2;
  width: 292px;
  height: 584px;
  overflow: hidden;
  border: 12px solid #090d12;
  border-radius: 38px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 24px 26px 0 rgba(255, 122, 34, 0.32), 0 25px 60px rgba(0, 0, 0, 0.45);
}

.phone::before {
  position: absolute;
  z-index: 6;
  top: 0;
  left: 50%;
  width: 86px;
  height: 20px;
  border-radius: 0 0 14px 14px;
  content: "";
  background: #090d12;
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  height: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 3px 14px 0;
  font-size: 12px;
  font-weight: 700;
}

.phone-sensors {
  display: flex;
  gap: 3px;
}

.phone-sensors i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.phone-appbar {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(90deg, var(--coral), var(--orange));
}

.phone-appbar strong {
  font-size: 18px;
}

.phone-search {
  display: grid;
  width: 34px;
  height: 34px;
  border: 0;
  cursor: pointer;
  place-items: center;
  background: transparent;
}

.phone-search .icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.phone-search-panel {
  padding: 10px 12px;
  border-bottom: 1px solid #f0d9ce;
  background: #fff7f2;
}

.phone-search-panel label {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
}

.phone-search-panel div {
  display: grid;
  grid-template-columns: 1fr 50px;
}

.phone-search-panel input,
.phone-search-panel button {
  min-width: 0;
  height: 32px;
  border: 1px solid #e9b7a8;
  font-size: 12px;
}

.phone-search-panel input {
  padding: 0 8px;
}

.phone-search-panel button {
  cursor: pointer;
  color: var(--white);
  background: var(--coral);
}

.phone-tabs {
  display: grid;
  height: 42px;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #ececec;
}

.phone-tabs button {
  position: relative;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  background: var(--white);
}

.phone-tabs button.is-active {
  color: var(--coral);
  font-weight: 800;
}

.phone-tabs button.is-active::after {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 2px;
  content: "";
  background: var(--coral);
}

.phone-player {
  position: relative;
  height: 190px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.phone-player > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--navy-soft);
}

.player-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 10, 18, 0.88), transparent 70%);
}

.player-tag,
.phone-player h3 {
  position: absolute;
  z-index: 2;
  right: 54px;
  left: 14px;
}

.player-tag {
  bottom: 42px;
  color: var(--yellow);
  font-size: 12px;
}

.phone-player h3 {
  bottom: 15px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-toggle {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
}

.player-toggle .icon {
  width: 15px;
  height: 15px;
}

.player-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.player-toggle.is-playing .icon {
  background-image: url("../icons/pause.svg");
}

.phone-progress {
  padding: 8px 14px 5px;
}

.phone-progress > span {
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--coral) 0 42%, #ececec 42% 100%);
}

.phone-progress p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.phone-recommendations {
  padding: 4px 12px 52px;
}

.phone-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.phone-section-title strong {
  font-size: 13px;
}

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

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

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

.phone-covers img {
  width: 100%;
  height: 66px;
  object-fit: contain;
  background: #f3f3f3;
}

.phone-covers strong {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 48px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e7e7e7;
  background: var(--white);
}

.phone-nav button {
  border: 0;
  cursor: pointer;
  color: #7a8187;
  font-size: 12px;
  background: transparent;
}

.phone-nav button.is-active {
  color: var(--coral);
  font-weight: 800;
}

.stage-card {
  position: absolute;
  z-index: 3;
  display: block;
  min-width: 148px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(7, 24, 39, 0.9);
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.stage-card strong {
  color: var(--white);
  font-size: 14px;
}

.stage-card-top {
  top: 124px;
  right: 0;
}

.stage-card-bottom {
  bottom: 108px;
  left: 0;
}

.section {
  padding: 108px 0;
}

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

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

.section-heading h2,
.schedule-copy h2 {
  margin-top: 8px;
  font-size: 48px;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.shows {
  background: var(--paper);
}

.show-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.show-filters button,
.week-tabs button {
  min-width: 82px;
  height: 40px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: transparent;
}

.show-filters button.is-active,
.week-tabs button.is-active {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.show-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border: 1px solid var(--line);
}

.show-featured {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(210px, 0.9fr) minmax(0, 1.1fr);
  border-right: 1px solid var(--line);
  background: var(--navy);
}

.show-featured figure {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #152c40;
}

.show-featured figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.show-featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: var(--white);
}

.show-featured-copy h3 {
  margin: 8px 0 12px;
  font-size: 36px;
}

.show-featured-copy > p:not(.card-label) {
  color: rgba(255, 255, 255, 0.7);
}

.show-featured-copy > span {
  margin-top: 22px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
}

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

.show-card {
  display: grid;
  min-height: 260px;
  grid-template-rows: 146px 1fr;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.show-card:nth-child(2n) {
  border-right: 0;
}

.show-card:nth-child(n + 3) {
  border-bottom: 0;
}

.show-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #f7efe7;
}

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

.show-card > div {
  padding: 16px 18px;
}

.show-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
}

.show-card h3 {
  margin-top: 2px;
  font-size: 19px;
}

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

.show-card[hidden],
.show-featured[hidden] {
  display: none;
}

.schedule {
  color: var(--white);
  background: var(--coral);
}

.schedule-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 78px;
}

.schedule .section-index {
  color: var(--yellow);
}

.schedule-copy > p:not(.section-index) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.week-tabs {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(4, 1fr);
}

.week-tabs button {
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.week-tabs button.is-active {
  border-color: var(--yellow);
  color: var(--navy);
  background: var(--yellow);
}

.schedule-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.schedule-panel article {
  display: grid;
  min-height: 112px;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.schedule-panel time {
  color: var(--yellow);
  font-size: 17px;
  font-weight: 800;
}

.schedule-panel h3 {
  font-size: 20px;
}

.schedule-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.remind-toggle {
  display: inline-flex;
  min-width: 112px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  cursor: pointer;
  color: var(--white);
  background: transparent;
}

.remind-toggle .icon {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}

.remind-toggle.is-active {
  border-color: var(--yellow);
  color: var(--navy);
  background: var(--yellow);
}

.remind-toggle.is-active .icon {
  filter: brightness(0) saturate(100%) invert(8%) sepia(18%) saturate(1744%) hue-rotate(164deg) brightness(95%);
}

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

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

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

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

.screen-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #0d2233;
}

.screen-card figure {
  display: flex;
  width: 100%;
  aspect-ratio: 9 / 16;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #09121c;
}

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

.screen-card > div {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
}

.screen-card > div span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
}

.screen-card > div h3 {
  color: var(--ink);
  font-size: 17px;
}

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

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

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

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

.faq-item > button span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
}

.faq-item > button b {
  color: var(--coral);
  font-size: 12px;
}

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

.faq-item > button > i::before,
.faq-item > button > i::after,
.official-mark::before,
.official-mark::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  content: "";
  background: currentColor;
}

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

.faq-item.is-open > button > i::after,
.official-site[open] .official-mark::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 68px 24px;
  color: var(--muted);
}

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

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

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

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

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

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

.official-site a {
  color: var(--coral);
  word-break: break-all;
}

.reviews {
  background: var(--white);
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 26px 26px 52px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  background: var(--paper);
}

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

.review-card:nth-child(3n + 3) {
  border-top-color: var(--orange);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.review-user .icon-avatar {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 50%;
  background-color: var(--navy);
  background-size: 22px;
}

.review-user strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-rating {
  display: inline-flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  color: var(--orange);
  white-space: nowrap;
}

.review-rating .fa,
.review-rating [class*="fa-star"] {
  display: inline-block;
  margin-left: 2px;
  color: var(--orange);
  font-size: 14px;
  font-style: normal;
  line-height: 1;
}

.review-rating .fa-star::before,
.review-rating [class~="fa-star"]::before {
  content: "★";
}

.review-rating .fa-star-o::before,
.review-rating [class~="fa-star-o"]::before {
  content: "☆";
}

.review-content {
  margin-top: 24px;
  color: #30363c;
  font-size: 14px;
}

.review-card time {
  position: absolute;
  right: 26px;
  bottom: 20px;
  color: var(--muted);
  font-size: 12px;
}

.download-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.download-ticket {
  position: relative;
  display: grid;
  min-height: 170px;
  overflow: hidden;
  grid-template-columns: 200px minmax(0, 1fr) 230px;
  align-items: stretch;
  color: var(--navy);
  background: var(--paper);
  box-shadow: 14px 14px 0 rgba(7, 24, 39, 0.22);
}

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

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

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

.ticket-number,
.ticket-copy,
.download-ticket > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ticket-number {
  position: relative;
  align-items: center;
  border-right: 2px dashed rgba(7, 24, 39, 0.23);
}

.ticket-number span {
  color: var(--coral);
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
}

.ticket-number p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

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

.ticket-copy > p {
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ticket-copy h2 {
  margin: 6px 0 8px;
  font-size: 28px;
  line-height: 1.3;
}

.ticket-copy > span {
  color: var(--muted);
  font-size: 13px;
}

.download-ticket > a {
  align-items: center;
  gap: 10px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.download-ticket > a .icon {
  width: 22px;
  height: 22px;
}

.download-ticket > a:hover {
  color: var(--white);
  background: var(--navy);
}

.download-ticket > a:hover .icon {
  filter: brightness(0) invert(1);
}

.site-footer {
  color: var(--white);
  background: var(--navy);
}

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

.footer-main nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

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

.footer-bottom {
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  text-align: center;
}

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

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  background: var(--coral);
  box-shadow: 5px 5px 0 var(--navy);
}

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

.back-top .icon {
  filter: brightness(0) invert(1);
}

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

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
  }

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

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

  .stage-card {
    display: none;
  }

  .show-board,
  .schedule-layout {
    grid-template-columns: 1fr;
  }

  .show-featured {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .schedule-layout {
    gap: 42px;
  }

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

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

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

  html {
    scroll-behavior: auto;
  }

  body {
    font-size: 14px;
  }

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

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

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

  .brand {
    gap: 8px;
  }

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

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

  .brand-copy span {
    display: block;
    max-width: none;
    overflow: visible;
    font-size: 12px;
    text-overflow: clip;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

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

  .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;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy);
  }

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

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

  .site-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

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

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

  .hero h1 {
    margin-top: 8px;
    font-size: clamp(45px, 16vw, 68px);
  }

  .hero h2 {
    margin-top: 10px;
    font-size: 24px;
  }

  .hero-description {
    margin: 16px auto 0;
    font-size: 14px;
  }

  .hero-features {
    justify-content: center;
    gap: 13px;
  }

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

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

  .age-label {
    margin-top: 16px;
  }

  .hero-stage {
    min-height: auto;
    justify-content: center;
  }

  .phone {
    width: min(292px, calc(100vw - 58px));
    height: 560px;
    box-shadow: 12px 14px 0 rgba(255, 122, 34, 0.28);
  }

  .section {
    padding: 72px 0;
  }

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

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

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

  .show-filters {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .show-filters button {
    flex: 0 0 auto;
  }

  .show-featured {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .show-featured figure {
    height: 320px;
  }

  .show-featured-copy {
    padding: 26px;
  }

  .show-featured-copy h3 {
    font-size: 30px;
  }

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

  .show-card {
    min-height: 150px;
    grid-template-columns: 120px 1fr;
    grid-template-rows: none;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .show-card:last-child {
    border-bottom: 0 !important;
  }

  .show-card figure {
    min-height: 150px;
  }

  .show-card > div {
    align-self: center;
  }

  .week-tabs {
    overflow-x: auto;
  }

  .week-tabs button {
    min-width: 76px;
  }

  .schedule-panel article {
    min-height: 124px;
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .schedule-panel .remind-toggle {
    grid-column: 2;
    justify-self: start;
  }

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

  .screen-card > div {
    min-height: 62px;
    gap: 7px;
    padding: 12px 9px;
  }

  .screen-card > div h3 {
    font-size: 14px;
  }

  .faq-item > button {
    min-height: 68px;
    padding: 16px;
  }

  .faq-item > button span {
    gap: 12px;
  }

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

  .official-site summary {
    min-height: 66px;
    padding: 14px 16px;
  }

  .official-site > div {
    padding: 0 46px 20px;
  }

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

  .review-card {
    min-height: 240px;
    padding: 22px 20px 50px;
  }

  .review-card time {
    right: 20px;
  }

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

  .download-ticket {
    grid-template-columns: 1fr;
    text-align: center;
    box-shadow: 8px 8px 0 rgba(7, 24, 39, 0.22);
  }

  .download-ticket::before,
  .download-ticket::after {
    top: 68%;
  }

  .ticket-number {
    min-height: 92px;
    border-right: 0;
    border-bottom: 2px dashed rgba(7, 24, 39, 0.23);
  }

  .ticket-number span {
    font-size: 38px;
  }

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

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

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

  .footer-main {
    flex-direction: column;
    justify-content: center;
    padding: 36px 0 28px;
    text-align: center;
  }

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

  .footer-main nav ul {
    justify-content: center;
    gap: 14px 22px;
  }

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

@media (max-width: 410px) {
  .brand-copy strong {
    font-size: 14px;
  }

  .mobile-download {
    padding: 0 10px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
  }

  .hero-features {
    gap: 9px;
  }

  .show-card {
    grid-template-columns: 108px 1fr;
  }
}
