@charset "UTF-8";

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

:root {
  --ink: #090d10;
  --ink-soft: #11171c;
  --panel: #171e25;
  --panel-light: #202934;
  --gold: #ffd83e;
  --gold-deep: #eba900;
  --cream: #f7f0df;
  --paper: #fffaf0;
  --red: #ff543f;
  --green: #42d69b;
  --muted: #96a0a8;
  --line: rgba(255, 255, 255, 0.14);
  --dark-text: #13171a;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

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

body,
button,
input {
  font-family: inherit;
}

button,
input {
  font-size: 16px;
}

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

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

button {
  color: inherit;
}

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

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

ul,
ol {
  list-style: none;
}

.container,
.header-inner {
  width: min(1200px, calc(100% - 40px));
  margin-inline: 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;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(9, 13, 16, 0.97);
  border-bottom: 1px solid rgba(255, 216, 62, 0.2);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.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: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 46px;
}

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

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

.brand small,
.footer-brand small {
  margin-top: 4px;
  color: #9ca5ac;
  font-size: 12px;
  white-space: nowrap;
}

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

.site-nav a {
  position: relative;
  display: block;
  padding-block: 28px 24px;
  color: #e7e9eb;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
}

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

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

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding-inline: 18px;
  color: #101418;
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  vertical-align: middle;
}

.icon::before {
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  content: "";
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.icon-menu { --icon-url: url("../icons/menu.svg"); }
.icon-grid { --icon-url: url("../icons/grid.svg"); }
.icon-star { --icon-url: url("../icons/star.svg"); }
.icon-calendar { --icon-url: url("../icons/calendar.svg"); }
.icon-download { --icon-url: url("../icons/download.svg"); }
.icon-arrow { --icon-url: url("../icons/arrow.svg"); }
.icon-shuffle { --icon-url: url("../icons/shuffle.svg"); }
.icon-plus { --icon-url: url("../icons/plus.svg"); }
.icon-globe { --icon-url: url("../icons/globe.svg"); }
.icon-avatar { --icon-url: url("../icons/avatar.svg"); }
.icon-ticket { --icon-url: url("../icons/ticket.svg"); }
.icon-top { --icon-url: url("../icons/top.svg"); }

.hero {
  position: relative;
  margin-top: var(--header-height);
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 32%, rgba(255, 216, 62, 0.12), transparent 28%),
    linear-gradient(105deg, #080b0e 0 53%, #12181d 53% 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: -160px;
  right: -120px;
  width: 460px;
  height: 460px;
  border: 90px solid rgba(255, 216, 62, 0.035);
  border-radius: 50%;
}

.hero::after {
  right: 0;
  bottom: 0;
  width: 38%;
  height: 1px;
  background: var(--gold);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 74px;
  align-items: center;
  padding-block: 72px;
}

.eyebrow,
.section-index,
.pass-copy > p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-copy h1 {
  margin-top: 10px;
  color: var(--gold);
  font-size: clamp(64px, 6.4vw, 104px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.02;
  white-space: nowrap;
}

.hero-copy h2 {
  margin-top: 16px;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.25;
}

.hero-description {
  max-width: 570px;
  margin-top: 24px;
  color: #c8ced3;
  font-size: 16px;
  line-height: 2;
}

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

.hero-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(255, 216, 62, 0.35);
  font-size: 14px;
  font-weight: 700;
}

.hero-points .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.hero-download {
  display: inline-flex;
  min-width: 220px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
  padding-inline: 24px;
  color: #111518;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-size: 17px;
  font-weight: 900;
}

.hero-download:hover {
  color: var(--gold);
  background: transparent;
}

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

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

.playlist-console {
  width: 100%;
  max-width: 580px;
  justify-self: end;
  padding: 24px;
  background: rgba(20, 27, 34, 0.94);
  border: 1px solid rgba(255, 216, 62, 0.33);
}

.console-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.console-heading p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.console-heading h2 {
  margin-top: 2px;
  font-size: 29px;
}

.console-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 7px;
  color: #b8c0c6;
  font-size: 12px;
}

.console-heading > span i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}

.console-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.console-tabs button,
.episode-list button,
.ranking-tabs button {
  min-height: 42px;
  padding: 8px 10px;
  color: #c9d0d5;
  background: var(--panel-light);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
}

.console-tabs button.is-active,
.console-tabs button:hover,
.episode-list button.is-active,
.episode-list button:hover {
  color: #111518;
  background: var(--gold);
}

.current-show {
  display: grid;
  min-height: 222px;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  margin-top: 18px;
  padding: 16px;
  background: #0d1216;
  border: 1px solid var(--line);
}

.current-show figure {
  width: 150px;
  height: 190px;
  overflow: hidden;
  background: #202831;
}

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

.show-copy {
  min-width: 0;
  align-self: center;
}

.show-copy > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.show-copy h3 {
  margin-top: 6px;
  font-size: 27px;
}

.show-copy > p {
  margin-top: 8px;
  color: #aeb7bd;
  font-size: 13px;
  line-height: 1.7;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  font-size: 12px;
}

.progress-track {
  height: 7px;
  margin-top: 7px;
  overflow: hidden;
  background: #2c3540;
}

.progress-track i {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gold);
}

.episode-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.episode-list button {
  min-height: 45px;
  border-color: rgba(255, 255, 255, 0.17);
}

.console-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.console-actions button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.swap-show {
  background: #242c36;
}

.follow-show {
  color: #111518;
  background: var(--gold);
}

.follow-show.is-added {
  color: #ffffff;
  background: #1c9a71;
}

.content-section {
  padding-block: 92px;
}

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

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
}

.section-heading > p {
  max-width: 480px;
  color: #aab2b8;
  font-size: 14px;
  text-align: right;
}

.schedule-section {
  padding-block: 70px 82px;
  background: #10161b;
  border-bottom: 1px solid var(--line);
}

.schedule-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 4px;
}

.schedule-line span {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  background: #56616a;
}

.schedule-line i {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  background: #ffffff;
  border: 4px solid #56616a;
  border-radius: 50%;
}

.schedule-line i:first-of-type {
  border-color: var(--gold);
}

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

.schedule-card {
  min-height: 230px;
  padding: 22px 20px;
  background: #171e24;
  border: 1px solid var(--line);
}

.schedule-card.is-active {
  border-color: rgba(255, 216, 62, 0.7);
}

.schedule-card time {
  display: block;
  font-size: 24px;
  font-weight: 900;
}

.status {
  display: inline-block;
  margin-top: 13px;
  padding: 4px 9px;
  color: #dbe0e4;
  background: #303942;
  font-size: 12px;
  font-weight: 700;
}

.status-live {
  color: #ffffff;
  background: var(--red);
}

.status-soon {
  color: #111518;
  background: var(--gold);
}

.schedule-card h3 {
  margin-top: 16px;
  font-size: 18px;
}

.schedule-card p,
.schedule-card small {
  display: block;
  margin-top: 7px;
  color: #9fa8ae;
  font-size: 12px;
}

.ranking-section {
  background: #0a0f12;
}

.ranking-heading {
  align-items: center;
}

.ranking-tabs {
  display: flex;
  gap: 8px;
}

.ranking-tabs button {
  min-width: 84px;
  background: transparent;
  border-color: #39434b;
}

.ranking-tabs button.is-active,
.ranking-tabs button:hover {
  color: #111518;
  background: var(--gold);
  border-color: var(--gold);
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
}

.rank-feature {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  background: linear-gradient(145deg, #181b1d, #282013);
  border: 1px solid rgba(255, 216, 62, 0.28);
}

.rank-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 216, 62, 0.08);
  border-right: 1px solid rgba(255, 216, 62, 0.2);
}

.rank-number span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.rank-number strong {
  color: var(--gold);
  font-size: 74px;
  line-height: 1;
}

.rank-copy {
  align-self: center;
  padding: 34px;
}

.rank-copy > span {
  color: var(--gold);
  font-size: 12px;
}

.rank-copy h3 {
  margin-top: 10px;
  font-size: 29px;
}

.rank-copy p {
  margin-top: 15px;
  color: #aeb7bd;
  font-size: 14px;
}

.rank-copy > div {
  display: flex;
  gap: 22px;
  margin-top: 30px;
}

.rank-copy b {
  color: var(--red);
}

.rank-copy em {
  color: var(--gold);
  font-style: normal;
}

.rank-list {
  background: #11171c;
  border: 1px solid var(--line);
}

.rank-list li {
  display: grid;
  min-height: 47px;
  grid-template-columns: 58px minmax(0, 1fr) 55px 84px;
  align-items: center;
  gap: 10px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--line);
}

.rank-list li:last-child {
  border-bottom: 0;
}

.rank-list b {
  color: #d3d8dc;
  font-size: 20px;
}

.rank-list span {
  min-width: 0;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-list em,
.rank-list strong {
  font-size: 12px;
  font-style: normal;
  text-align: right;
}

.rank-list em.up {
  color: var(--red);
}

.rank-list em.down {
  color: var(--green);
}

.rank-list strong {
  color: var(--gold);
}

.screens-section {
  color: var(--dark-text);
  background: var(--cream);
}

.screens-section .section-index {
  color: #8b6600;
}

.screens-section .section-heading > p {
  color: #5d6368;
}

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

.screen-grid figure {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #cfc7b8;
}

.screen-image {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #ffffff;
}

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

.screen-grid figcaption {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border-top: 1px solid #cfc7b8;
}

.screen-grid figcaption b {
  color: #9b7200;
  font-size: 18px;
}

.screen-grid figcaption span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

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

.screen-grid figcaption small {
  margin-top: 3px;
  color: #777168;
  font-size: 12px;
}

.faq-section {
  color: var(--dark-text);
  background: #fffdf8;
}

.faq-section .section-index {
  color: #8b6600;
}

.faq-section .section-heading > p {
  color: #64696d;
}

.faq-list {
  border-top: 1px solid #262b2e;
}

.faq-list details {
  border-bottom: 1px solid #d8d3c9;
}

.faq-list summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 54px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding-inline: 20px;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary b {
  color: #9c7200;
  font-size: 13px;
}

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

.faq-list summary > span {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  background: #202427;
  content: "";
}

.faq-list summary > span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary > span::after {
  transform: rotate(0);
}

.faq-list details > p {
  padding: 0 74px 24px 86px;
  color: #5f6569;
  font-size: 14px;
}

.faq-list .official-site {
  margin-top: 28px;
  border: 1px solid #22272a;
}

.official-site summary {
  grid-template-columns: 28px minmax(0, 1fr) 24px;
}

.official-site .icon {
  color: #9c7200;
}

.official-site p a {
  color: #795900;
  word-break: break-all;
}

.reviews-section {
  background: #11171c;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.review-card {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  padding: 24px;
  background: #1a2229;
  border-top: 3px solid var(--gold);
}

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

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

.review-user .icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  padding: 9px;
  place-items: center;
  color: #12171b;
  background: var(--gold);
  border-radius: 50%;
}

.review-user .icon::before {
  width: 22px;
  height: 22px;
}

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

.review-rating {
  color: var(--gold);
  white-space: nowrap;
}

.review-rating i {
  margin-left: 2px;
  color: var(--gold);
  font-style: normal;
}

.review-card > p {
  margin-top: 23px;
  color: #d2d7da;
  font-size: 14px;
  line-height: 1.9;
}

.review-card time {
  margin-top: auto;
  padding-top: 20px;
  color: #929ba2;
  font-size: 12px;
  text-align: right;
}

.download-section {
  padding-block: 78px;
  color: var(--dark-text);
  background: #0b1014;
}

.download-pass {
  position: relative;
  display: grid;
  min-height: 190px;
  grid-template-columns: 160px minmax(0, 1fr) 230px 72px;
  overflow: hidden;
  background: #f9e7b5;
  border: 1px solid #f2cd6d;
}

.download-pass::before,
.download-pass::after {
  position: absolute;
  z-index: 2;
  left: 144px;
  width: 30px;
  height: 30px;
  background: #0b1014;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.download-pass::before {
  top: -15px;
}

.download-pass::after {
  bottom: -15px;
}

.pass-stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-right: 1px dashed rgba(0, 0, 0, 0.34);
}

.pass-stub span {
  color: #8c6500;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.pass-stub strong {
  font-size: 12px;
  letter-spacing: 0.15em;
}

.pass-stub .icon {
  margin-top: 8px;
  color: #8c6500;
}

.pass-copy {
  align-self: center;
  padding: 32px 42px;
}

.pass-copy > p {
  color: #8c6500;
  font-size: 12px;
}

.pass-copy h2 {
  margin-top: 8px;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.25;
}

.pass-copy > span {
  display: block;
  margin-top: 10px;
  color: #655d4e;
  font-size: 13px;
}

.pass-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #111518;
  background: var(--gold);
  border-left: 1px solid #e2c35e;
  font-size: 17px;
  font-weight: 900;
}

.pass-action:hover {
  color: #ffffff;
  background: #141a1f;
}

.pass-code {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4px;
  padding: 28px 16px;
  background: #f3daa0;
  border-left: 1px dashed rgba(0, 0, 0, 0.32);
}

.pass-code i {
  width: 3px;
  background: #202427;
}

.pass-code i:nth-child(2n) {
  width: 6px;
}

.site-footer {
  color: #ffffff;
  background: #080b0d;
}

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

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

.footer-nav a {
  color: #c6ccd0;
  font-size: 13px;
}

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

.footer-copyright {
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  color: #8e979e;
  font-size: 12px;
  text-align: center;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  place-items: center;
  color: #111518;
  background: var(--gold);
  border: 1px solid #111518;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

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

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 38px;
  }

  .hero-copy h1 {
    font-size: 68px;
  }

  .current-show {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .current-show figure {
    width: 125px;
  }

  .download-pass {
    grid-template-columns: 135px minmax(0, 1fr) 200px 52px;
  }

  .download-pass::before,
  .download-pass::after {
    left: 119px;
  }
}

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

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

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

  .brand img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    max-width: 150px;
    overflow: visible;
    white-space: nowrap;
  }

  .mobile-actions {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: 0;
    overflow: hidden;
    background: #0b1014;
    border-bottom: 1px solid rgba(255, 216, 62, 0.24);
    opacity: 0;
    visibility: hidden;
  }

  .site-nav.is-open {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    width: min(100% - 28px, 720px);
    margin: 0 auto;
    padding-block: 8px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .hero {
    background: #090d10;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-block: 62px;
  }

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

  .hero-copy h1 {
    font-size: clamp(54px, 14vw, 78px);
    white-space: normal;
  }

  .hero-description {
    margin-inline: auto;
  }

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

  .hero-download {
    margin-inline: auto;
  }

  .playlist-console {
    max-width: 640px;
    justify-self: center;
  }

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

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

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

  .schedule-line {
    display: none;
  }

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

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

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

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

  .download-pass::before,
  .download-pass::after {
    left: 104px;
  }

  .pass-copy {
    padding: 28px 32px;
  }

  .pass-action {
    min-height: 72px;
    grid-column: 1 / -1;
    border-top: 1px dashed rgba(0, 0, 0, 0.28);
    border-left: 0;
  }

  .pass-code {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

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

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand small {
    max-width: 132px;
    font-size: 12px;
  }

  .mobile-download {
    min-height: 40px;
    padding-inline: 13px;
  }

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

  .hero-layout {
    padding-block: 48px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 16vw, 66px);
  }

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

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

  .hero-points {
    gap: 8px;
  }

  .hero-points span {
    min-height: 39px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .playlist-console {
    padding: 16px;
  }

  .console-heading h2 {
    font-size: 24px;
  }

  .console-tabs {
    gap: 6px;
  }

  .console-tabs button {
    min-height: 39px;
    padding-inline: 5px;
    font-size: 12px;
  }

  .current-show {
    min-height: 0;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
    padding: 12px;
  }

  .current-show figure {
    width: 96px;
    height: 150px;
  }

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

  .show-copy > p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .progress-meta {
    margin-top: 12px;
  }

  .episode-list {
    gap: 5px;
  }

  .episode-list button {
    min-height: 39px;
    padding-inline: 3px;
    font-size: 12px;
  }

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

  .content-section {
    padding-block: 64px;
  }

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

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

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

  .schedule-card {
    min-height: 0;
  }

  .ranking-heading {
    align-items: stretch;
  }

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

  .ranking-tabs button {
    min-width: 0;
  }

  .rank-feature {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 280px;
  }

  .rank-number strong {
    font-size: 50px;
  }

  .rank-copy {
    padding: 22px;
  }

  .rank-copy h3 {
    font-size: 23px;
  }

  .rank-list li {
    min-height: 53px;
    grid-template-columns: 40px minmax(0, 1fr) 38px 60px;
    gap: 6px;
    padding-inline: 10px;
  }

  .rank-list b {
    font-size: 16px;
  }

  .rank-list span {
    font-size: 12px;
  }

  .screen-grid {
    gap: 10px;
  }

  .screen-grid figcaption {
    min-height: 80px;
    align-items: flex-start;
    gap: 8px;
    padding: 11px 9px;
  }

  .screen-grid figcaption b {
    font-size: 14px;
  }

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

  .screen-grid figcaption small {
    font-size: 12px;
    line-height: 1.45;
  }

  .faq-list summary {
    min-height: 70px;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
    gap: 8px;
    padding-inline: 10px;
  }

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

  .faq-list details > p {
    padding: 0 28px 22px 54px;
    font-size: 13px;
  }

  .official-site summary {
    grid-template-columns: 24px minmax(0, 1fr) 18px;
  }

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

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

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

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

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

  .pass-stub {
    min-height: 92px;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.34);
  }

  .pass-stub span {
    font-size: 42px;
  }

  .pass-stub .icon {
    margin-top: 0;
  }

  .pass-copy {
    padding: 28px 20px;
    text-align: center;
  }

  .pass-copy h2 {
    font-size: 26px;
  }

  .footer-main {
    padding-block: 34px;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: center;
    gap: 18px;
  }

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

@media (max-width: 390px) {
  .brand small {
    max-width: 105px;
  }

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

  .current-show {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .current-show figure {
    width: 82px;
    height: 138px;
  }

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

@media (hover: none) and (pointer: coarse) {
  a:active,
  button:active,
  summary:active {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
