@charset "UTF-8";

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

:root {
  --ink: #06080d;
  --ink-soft: #0d1119;
  --ink-card: #151a24;
  --yellow: #ffc400;
  --yellow-deep: #dfa900;
  --cream: #fff9e8;
  --paper: #ffffff;
  --line: #ddd5bd;
  --text: #151515;
  --muted: #706b60;
  --white-muted: #aeb2bb;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: #fff;
  background: rgba(6, 8, 13, 0.97);
  border-bottom: 1px solid rgba(255, 196, 0, 0.32);
}

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

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

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 9px;
}

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

.brand-copy strong {
  overflow: hidden;
  max-width: 220px;
  color: #fff;
  font-size: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.brand-copy small {
  overflow: hidden;
  max-width: 220px;
  margin-top: 5px;
  color: #8e939c;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.nav-link {
  position: relative;
  display: block;
  padding: 25px 17px 24px;
  color: #c7cad0;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

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

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

.mobile-download {
  display: inline-flex;
  height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #0a0b0d;
  font-size: 12px;
  font-weight: 700;
  background: var(--yellow);
  border-radius: 5px;
}

.menu-button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  background: transparent;
  border: 1px solid #343945;
  border-radius: 5px;
  cursor: pointer;
}

.menu-button i {
  width: 18px;
  height: 18px;
  background: url("../icons/menu.svg") center / contain no-repeat;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 706px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 196, 0, 0.17), transparent 26%),
    linear-gradient(115deg, #07090e 0%, #0b0e15 62%, #020306 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 18px;
  content: "";
  opacity: 0.13;
  background-image: radial-gradient(circle, #fff 0 3px, transparent 3.5px);
  background-size: 28px 18px;
}

.hero::before {
  top: 18px;
}

.hero::after {
  bottom: 18px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 706px;
  padding: 72px 0 64px;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 76px;
}

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

.hero-kicker,
.section-heading > span,
.download-heading > span {
  display: inline-flex;
  align-items: center;
  color: var(--yellow-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-kicker::before {
  width: 26px;
  height: 2px;
  margin-right: 10px;
  content: "";
  background: var(--yellow);
}

.hero h1 {
  margin-top: 14px;
  color: var(--yellow);
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.hero-slogan {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.35;
}

.hero-copy > p {
  max-width: 570px;
  margin-top: 16px;
  color: #aeb2ba;
  font-size: 15px;
}

.hero-benefits {
  display: grid;
  margin-top: 32px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #30343d;
  border-bottom: 1px solid #30343d;
}

.hero-benefits li {
  display: flex;
  min-width: 0;
  padding: 16px 10px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #30343d;
}

.hero-benefits li:first-child {
  padding-left: 0;
}

.hero-benefits li:last-child {
  border-right: 0;
}

.hero-benefits li > i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: #0b0d11;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
  background: var(--yellow);
}

.hero-benefits span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.hero-benefits strong {
  color: #fff;
  font-size: 13px;
}

.hero-benefits small {
  overflow: hidden;
  color: #858a93;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.primary-button,
.download-button {
  display: inline-flex;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 0 24px;
  color: #050608;
  font-size: 14px;
  font-weight: 800;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 4px;
  box-shadow: 6px 6px 0 rgba(255, 196, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover,
.download-button:hover {
  box-shadow: 2px 2px 0 rgba(255, 196, 0, 0.14);
  transform: translate(2px, 2px);
}

.primary-button i,
.download-button i {
  font-size: 20px;
  font-style: normal;
}

.age-label {
  color: #838892;
  font-size: 12px;
}

.schedule-console {
  position: relative;
  min-width: 0;
  padding: 26px;
  background: #10141d;
  border: 1px solid #303642;
  box-shadow: 18px 20px 0 rgba(255, 196, 0, 0.1), 0 24px 50px rgba(0, 0, 0, 0.36);
}

.schedule-console::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 68px;
  height: 4px;
  content: "";
  background: var(--yellow);
}

.console-heading,
.complete-row,
.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid #2c313b;
}

.console-heading > div {
  display: flex;
  flex-direction: column;
}

.console-heading > div span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.console-heading > div strong {
  margin-top: 2px;
  color: #fff;
  font-size: 21px;
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aeb3bd;
  font-size: 12px;
}

.console-status i {
  width: 7px;
  height: 7px;
  background: #74d794;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(116, 215, 148, 0.12);
}

.console-filter {
  display: grid;
  padding: 16px 0 0;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 13px;
}

.console-filter > strong,
.complete-row > strong {
  padding-top: 6px;
  color: #7f858f;
  font-size: 12px;
}

.console-filter > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.console-filter button,
.wish-tabs button {
  min-height: 32px;
  padding: 4px 12px;
  color: #aeb2ba;
  font-size: 12px;
  background: #171c26;
  border: 1px solid #2d3340;
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.console-filter button:hover,
.console-filter button.is-active {
  color: #0a0c10;
  background: var(--yellow);
  border-color: var(--yellow);
}

.complete-row {
  margin-top: 16px;
  padding: 13px 0;
  border-top: 1px solid #292e38;
  border-bottom: 1px solid #292e38;
}

.complete-row > strong {
  padding-top: 0;
}

.complete-toggle,
.reminder-toggle {
  position: relative;
  width: 39px;
  height: 22px;
  padding: 0;
  background: #373d48;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
}

.complete-toggle::after,
.reminder-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  content: "";
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.complete-toggle.is-active,
.reminder-toggle.is-active {
  background: var(--yellow);
}

.complete-toggle.is-active::after,
.reminder-toggle.is-active::after {
  transform: translateX(17px);
}

.result-heading {
  padding: 16px 0 10px;
}

.result-heading strong {
  color: #fff;
  font-size: 13px;
}

.result-heading span {
  color: var(--yellow);
  font-size: 12px;
}

.schedule-results {
  display: grid;
  gap: 7px;
}

.schedule-card {
  display: grid;
  min-width: 0;
  min-height: 62px;
  padding: 7px;
  align-items: center;
  grid-template-columns: 39px minmax(0, 1fr) auto;
  gap: 10px;
  background: #171c26;
  border: 1px solid transparent;
}

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

.schedule-card > img {
  width: 39px;
  height: 48px;
  object-fit: cover;
}

.schedule-card > div {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 8px;
}

.schedule-card > div strong {
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.schedule-card > div span {
  overflow: hidden;
  grid-row: 2;
  color: #898f99;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.schedule-card > div small {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: #77d597;
  font-size: 12px;
}

.list-button {
  min-width: 86px;
  min-height: 30px;
  padding: 4px 8px;
  color: var(--yellow);
  font-size: 12px;
  background: transparent;
  border: 1px solid #56501e;
  border-radius: 2px;
  cursor: pointer;
}

.list-button.is-active {
  color: #0d0e10;
  background: var(--yellow);
  border-color: var(--yellow);
}

.schedule-empty,
.wish-empty {
  padding: 20px;
  color: #8e949d;
  font-size: 13px;
  text-align: center;
  background: #171c26;
}

.page-section {
  padding: 96px 0;
}

.section-heading {
  max-width: 660px;
}

.section-heading h2,
.download-heading h2 {
  margin-top: 5px;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-heading > p,
.download-heading > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.wish-section {
  background: var(--cream);
}

.wish-tabs {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 8px;
}

.wish-tabs button {
  min-height: 38px;
  padding: 7px 17px;
  color: #6f695c;
  background: transparent;
  border-color: #cec5ad;
}

.wish-tabs button:hover,
.wish-tabs button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.wish-board {
  margin-top: 18px;
  border-top: 2px solid var(--ink);
}

.wish-row {
  display: grid;
  min-height: 126px;
  padding: 16px 18px;
  align-items: center;
  grid-template-columns: 62px 70px minmax(230px, 1fr) 210px 86px;
  gap: 18px;
  background: rgba(255, 255, 255, 0.36);
  border-bottom: 1px solid var(--line);
}

.wish-row[hidden] {
  display: none;
}

.wish-rank {
  display: flex;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  flex-direction: column;
}

.wish-rank small {
  margin-bottom: 4px;
  color: var(--yellow-deep);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.wish-row > img {
  width: 70px;
  height: 88px;
  object-fit: cover;
}

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

.wish-copy > strong {
  display: block;
  font-size: 18px;
}

.wish-copy p {
  overflow: hidden;
  margin: 3px 0 8px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.wish-copy span {
  display: inline-flex;
  margin-right: 5px;
  padding: 2px 7px;
  color: #5e584d;
  font-size: 12px;
  background: #ece4cc;
}

.wish-heat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wish-heat > i,
.queue-card > div > i {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 4px;
  background: #d8d0ba;
}

.wish-heat > i b,
.queue-card > div > i b {
  display: block;
  height: 100%;
  background: var(--yellow-deep);
}

.wish-heat small {
  color: var(--muted);
  font-size: 12px;
}

.vote-button {
  min-height: 38px;
  color: #151515;
  font-size: 12px;
  font-weight: 700;
  background: var(--yellow);
  border: 1px solid var(--ink);
  cursor: pointer;
}

.vote-button.is-active {
  color: #fff;
  background: var(--ink);
}

.wish-empty {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.36);
}

.queue-section {
  position: relative;
  color: #fff;
  background: var(--ink);
}

.queue-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 180px;
  content: "";
  opacity: 0.24;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0 6px, transparent 6px 18px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.light-heading > span {
  color: var(--yellow);
}

.light-heading h2 {
  color: #fff;
}

.light-heading > p {
  color: #959aa3;
}

.queue-board {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.queue-lane {
  min-width: 0;
  padding: 15px;
  background: #10141d;
  border: 1px solid #2b3039;
}

.queue-lane > header {
  display: flex;
  padding: 1px 3px 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #30353e;
}

.queue-lane > header strong {
  font-size: 14px;
}

.queue-lane > header strong i {
  margin-right: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-style: normal;
}

.queue-lane > header > span {
  color: #818690;
  font-size: 12px;
}

.queue-card {
  display: grid;
  min-height: 88px;
  padding: 12px 3px;
  align-items: center;
  grid-template-columns: 46px minmax(0, 1fr) 39px 24px;
  gap: 10px;
  border-bottom: 1px solid #272c35;
}

.queue-card:last-child {
  border-bottom: 0;
}

.queue-card.is-moved {
  background: rgba(255, 196, 0, 0.07);
}

.queue-card > img {
  width: 46px;
  height: 62px;
  object-fit: cover;
}

.queue-card > div {
  min-width: 0;
}

.queue-card > div strong,
.queue-card > div span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.queue-card > div strong {
  color: #f6f6f7;
  font-size: 13px;
}

.queue-card > div span {
  margin: 3px 0 9px;
  color: #818690;
  font-size: 12px;
}

.queue-card > div > i {
  background: #303641;
}

.queue-card > div > i b {
  background: var(--yellow);
}

.queue-card .reminder-toggle {
  transform: scale(0.8);
}

.queue-handle {
  width: 24px;
  height: 32px;
  padding: 0;
  color: #656b75;
  font-size: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.queue-handle:hover {
  color: var(--yellow);
}

.shots-section {
  background: #f4efdF;
}

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

.shots-grid figure {
  overflow: hidden;
  background: #fff;
  border: 1px solid #ded7c5;
}

.shot-viewport {
  aspect-ratio: 9 / 16;
  padding: 10px;
  background: #e7e0cd;
}

.shot-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080b10;
}

.shots-grid figcaption {
  display: flex;
  padding: 16px 17px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 3px solid var(--yellow);
}

.shots-grid figcaption strong {
  font-size: 15px;
}

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

.guide-section {
  background: #fffdf7;
}

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

.faq-item {
  border-bottom: 1px solid #dcd6c7;
}

.faq-item summary {
  display: grid;
  min-height: 76px;
  padding: 0 6px;
  align-items: center;
  grid-template-columns: 58px minmax(0, 1fr) 38px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary b {
  color: var(--yellow-deep);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.faq-item summary span {
  font-size: 16px;
  font-weight: 700;
}

.faq-item summary i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink);
  font-size: 18px;
  font-style: normal;
  background: var(--yellow);
  transition: transform 0.2s ease;
}

.faq-item[open] summary i {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 50px 23px 64px;
}

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

.faq-item a {
  color: #8c6900;
  font-weight: 700;
  text-decoration: underline;
}

.voices-section {
  background: var(--cream);
}

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

.voice-card {
  display: flex;
  min-height: 190px;
  padding: 24px;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ded6c1;
  border-top: 4px solid var(--ink);
}

.voice-user,
.voice-user > span {
  display: flex;
  align-items: center;
}

.voice-user {
  justify-content: space-between;
  gap: 12px;
}

.voice-user > span:first-child {
  min-width: 0;
  gap: 10px;
}

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

.voice-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background: var(--yellow) url("../icons/avatar.svg") center / 24px no-repeat;
  border-radius: 50%;
}

.voice-rating {
  color: #a57900;
  font-size: 13px;
  font-weight: 800;
}

.voice-rating::before {
  margin-right: 4px;
  content: "★";
}

.voice-card > p {
  margin-top: 19px;
  color: #4f4b42;
  font-size: 14px;
}

.voice-card > time {
  margin-top: auto;
  padding-top: 18px;
  color: #9a9488;
  font-size: 12px;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  color: #fff;
  background: #090b10;
}

.download-section::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  content: "";
  opacity: 0.12;
  background: repeating-linear-gradient(45deg, var(--yellow) 0 8px, transparent 8px 25px);
  border-radius: 50%;
}

.download-heading {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.download-heading > span {
  color: var(--yellow);
}

.download-heading h2 {
  color: #fff;
}

.download-heading > p {
  color: #969ba4;
}

.download-gateway {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 38px;
  grid-template-columns: minmax(0, 1.72fr) minmax(280px, 0.78fr);
  box-shadow: 18px 18px 0 rgba(255, 196, 0, 0.08);
}

.gateway-main {
  min-height: 310px;
  padding: 54px;
  color: #090a0c;
  background: var(--yellow);
}

.gateway-main > span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.gateway-main > strong {
  display: block;
  margin-top: 12px;
  font-size: 38px;
  line-height: 1.2;
}

.gateway-main > p {
  margin-top: 10px;
  color: #51400a;
  font-size: 14px;
}

.gateway-main .download-button {
  margin-top: 34px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.16);
}

.gateway-steps {
  display: grid;
  padding: 22px 26px;
  background: #151a23;
}

.gateway-steps li {
  display: grid;
  padding: 15px 0;
  align-items: center;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid #303641;
}

.gateway-steps li:last-child {
  border-bottom: 0;
}

.gateway-steps b {
  color: var(--yellow);
  font-size: 12px;
}

.gateway-steps span {
  display: flex;
  flex-direction: column;
}

.gateway-steps strong {
  color: #fff;
  font-size: 14px;
}

.gateway-steps small {
  margin-top: 2px;
  color: #828791;
  font-size: 12px;
}

.site-footer {
  color: #fff;
  background: #050609;
}

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

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

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

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

.footer-bottom {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #70757e;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  background: var(--yellow);
  border: 1px solid #0b0d10;
  border-radius: 3px;
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.back-top i {
  width: 20px;
  height: 20px;
  background: url("../icons/top.svg") center / contain no-repeat;
}

@media (max-width: 1180px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 38px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits li,
  .hero-benefits li:first-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #282d36;
  }

  .hero-benefits li:last-child {
    border-bottom: 0;
  }

  .wish-row {
    grid-template-columns: 50px 62px minmax(210px, 1fr) 150px 76px;
    gap: 13px;
  }

  .wish-row > img {
    width: 62px;
    height: 78px;
  }
}

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

  .container {
    width: min(100% - 32px, 780px);
  }

  .mobile-actions {
    display: flex;
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: var(--header-height);
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background: #0c0f15;
    border-top: 1px solid #262b34;
    border-bottom: 1px solid #343a44;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav ul {
    display: block;
    width: min(100% - 32px, 780px);
    margin: 0 auto;
    padding: 8px 0 14px;
  }

  .nav-link {
    padding: 12px 5px;
    border-bottom: 1px solid #1f242d;
  }

  .nav-link::after {
    display: none;
  }

  .hero-inner {
    padding: 62px 0 68px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-benefits li,
  .hero-benefits li:first-child {
    padding: 14px 10px;
    border-right: 1px solid #282d36;
    border-bottom: 0;
  }

  .hero-benefits li:first-child {
    padding-left: 0;
  }

  .hero-benefits li:last-child {
    border-right: 0;
  }

  .schedule-console {
    width: 100%;
  }

  .wish-row {
    grid-template-columns: 45px 58px minmax(180px, 1fr) 110px 72px;
    gap: 10px;
  }

  .wish-row > img {
    width: 58px;
    height: 74px;
  }

  .wish-copy p {
    max-width: 260px;
  }

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

  .queue-lane {
    padding: 18px;
  }

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

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

@media (max-width: 700px) {
  .page-section {
    padding: 72px 0;
  }

  .hero-copy {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-benefits li,
  .hero-benefits li:first-child {
    justify-content: center;
  }

  .hero-benefits span {
    text-align: center;
  }

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

  .schedule-console {
    margin-right: auto;
    margin-left: auto;
  }

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

  .hero-slogan {
    font-size: 23px;
  }

  .wish-row {
    position: relative;
    padding: 15px 0;
    grid-template-columns: 40px 58px minmax(0, 1fr) 70px;
  }

  .wish-copy p {
    max-width: none;
  }

  .wish-heat {
    grid-row: 2;
    grid-column: 3 / span 2;
    margin-top: -18px;
  }

  .vote-button {
    grid-column: 4;
    grid-row: 1;
  }

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

  .gateway-main {
    min-height: 0;
  }

  .gateway-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gateway-steps li {
    align-content: start;
    grid-template-columns: 1fr;
    border-right: 1px solid #303641;
    border-bottom: 0;
  }

  .gateway-steps li:last-child {
    border-right: 0;
  }

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

  .footer-nav {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header .container {
    width: calc(100% - 20px);
  }

  .header-inner {
    gap: 6px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 7px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    border-radius: 7px;
  }

  .brand-copy strong {
    overflow: visible;
    max-width: none;
    font-size: 13px;
    text-overflow: clip;
  }

  .brand-copy small {
    overflow: visible;
    max-width: none;
    margin-top: 3px;
    font-size: 12px;
    text-overflow: clip;
  }

  .mobile-actions {
    flex: 0 0 auto;
    gap: 5px;
  }

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

  .menu-button {
    width: 32px;
    height: 32px;
  }

  .main-nav ul {
    width: calc(100% - 28px);
  }

  .hero-inner {
    padding: 54px 0 62px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 52px);
    white-space: normal;
  }

  .hero-slogan {
    font-size: 20px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-benefits li,
  .hero-benefits li:first-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #282d36;
  }

  .hero-benefits li:last-child {
    border-bottom: 0;
  }

  .hero-action {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .primary-button {
    width: 100%;
  }

  .schedule-console {
    padding: 18px 14px;
    box-shadow: 8px 10px 0 rgba(255, 196, 0, 0.1);
  }

  .console-heading > div strong {
    font-size: 18px;
  }

  .console-filter {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .console-filter > strong {
    padding-top: 0;
  }

  .console-filter button {
    flex: 1 1 auto;
  }

  .schedule-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .schedule-card > img {
    grid-row: 1 / span 2;
  }

  .list-button {
    grid-column: 2;
    width: max-content;
  }

  .section-heading h2,
  .download-heading h2 {
    font-size: 34px;
  }

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

  .wish-row {
    grid-template-columns: 32px 52px minmax(0, 1fr) 62px;
    gap: 8px;
  }

  .wish-row > img {
    width: 52px;
    height: 68px;
  }

  .wish-rank {
    font-size: 22px;
  }

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

  .wish-copy p {
    display: none;
  }

  .wish-copy span {
    margin-top: 6px;
    padding: 1px 4px;
  }

  .wish-copy span:last-child {
    display: none;
  }

  .wish-heat {
    grid-column: 3 / span 2;
  }

  .vote-button {
    min-height: 34px;
    padding: 0 5px;
  }

  .queue-lane {
    padding: 13px 10px;
  }

  .queue-card {
    grid-template-columns: 42px minmax(0, 1fr) 36px 20px;
    gap: 7px;
  }

  .queue-card > img {
    width: 42px;
    height: 56px;
  }

  .shots-grid {
    gap: 10px;
  }

  .shot-viewport {
    padding: 5px;
  }

  .shots-grid figcaption {
    padding: 12px 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-item summary {
    min-height: 72px;
    grid-template-columns: 39px minmax(0, 1fr) 32px;
  }

  .faq-item summary span {
    font-size: 14px;
  }

  .faq-item > div {
    padding: 0 38px 20px 45px;
  }

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

  .gateway-main {
    padding: 36px 24px;
  }

  .gateway-main > strong {
    font-size: 30px;
  }

  .gateway-steps {
    padding: 16px 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gateway-steps li {
    grid-template-columns: 43px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid #303641;
  }

  .footer-bottom {
    padding: 17px 0;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

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

@media (max-width: 360px) {
  .mobile-download {
    padding: 0 7px;
  }

  .schedule-card > div small {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
