:root {
  --bg: #fff7ed;
  --bg-soft: #fffbeb;
  --text: #231608;
  --muted: #7c5b36;
  --brand: #ea580c;
  --brand-dark: #b45309;
  --brand-soft: #fed7aa;
  --line: rgba(180, 83, 9, 0.16);
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 45px rgba(146, 64, 14, 0.18);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(251, 146, 60, 0.28), transparent 30rem),
    linear-gradient(135deg, #fff7ed 0%, #fffbeb 52%, #fff7ed 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(217, 119, 6, 0.96), rgba(249, 115, 22, 0.96));
  box-shadow: 0 10px 30px rgba(154, 52, 18, 0.24);
  backdrop-filter: blur(16px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #b45309;
  background: linear-gradient(135deg, #fff7ed, #fde68a);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.logo-text {
  font-size: 20px;
}

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

.desktop-nav a,
.mobile-nav a {
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: #7c2d12;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: #431407;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(67, 20, 7, 0.92) 0%, rgba(124, 45, 18, 0.66) 42%, rgba(15, 23, 42, 0.16) 100%),
    linear-gradient(0deg, rgba(67, 20, 7, 0.72), transparent 42%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1.05fr 360px;
  align-items: center;
  gap: 56px;
  padding-top: 28px;
}

.hero-copy {
  color: #fff;
  max-width: 760px;
}

.hero-label,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffedd5;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 6vw, 66px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 247, 237, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.card-tags span,
.detail-tags a {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff7ed;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  color: #7c2d12;
  background: linear-gradient(135deg, #fff7ed, #facc15);
  box-shadow: 0 12px 24px rgba(250, 204, 21, 0.28);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn.small {
  min-height: 36px;
  padding: 0 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-control.prev {
  left: 24px;
}

.hero-control.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 28px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-dots button.is-active {
  background: #facc15;
}

.search-shell {
  position: relative;
  z-index: 10;
  margin-top: -36px;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.search-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-size: 24px;
}

.search-box input,
.page-filter input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font-size: 16px;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  max-height: 430px;
  overflow: auto;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.search-result-item:hover {
  background: #fff7ed;
}

.search-result-item img {
  width: 66px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.search-result-item strong {
  display: block;
  margin-bottom: 4px;
}

.search-result-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

.soft-section {
  background: rgba(255, 255, 255, 0.34);
}

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

.section-kicker {
  color: var(--brand-dark);
  background: #ffedd5;
  border-color: var(--line);
}

.section-heading h2 {
  margin: 10px 0 8px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-link {
  color: var(--brand-dark);
  font-weight: 800;
}

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

.category-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(194, 65, 12, 0.14);
}

.category-card .category-main {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 20px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 7rem),
    linear-gradient(135deg, #f59e0b, #ea580c 55%, #9a3412);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card .category-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(194, 65, 12, 0.26);
}

.category-card span {
  font-size: 22px;
  font-weight: 900;
}

.category-card strong {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.category-preview {
  display: grid;
  gap: 6px;
  padding: 14px 18px 18px;
}

.category-preview a {
  overflow: hidden;
  color: #9a3412;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-preview a:hover {
  color: var(--brand);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
  align-items: start;
}

.movie-grid {
  display: grid;
  gap: 20px;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(180, 83, 9, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(180, 83, 9, 0.2);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  background: #451a03;
}

.card-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.movie-card:hover .card-cover img {
  transform: scale(1.06);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.58));
}

.card-year,
.card-play {
  position: absolute;
  z-index: 2;
}

.card-year {
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #7c2d12;
  background: #fef3c7;
  font-weight: 900;
  font-size: 12px;
}

.card-play {
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(234, 88, 12, 0.86);
}

.card-body {
  padding: 16px;
}

.card-tags {
  margin-bottom: 10px;
}

.card-tags span {
  color: var(--brand-dark);
  background: #ffedd5;
  border-color: var(--line);
  padding: 4px 8px;
  font-size: 12px;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
}

.card-body h3 a:hover {
  color: var(--brand);
}

.card-body p {
  margin: 0;
  min-height: 48px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: #9a3412;
  font-size: 13px;
}

.card-foot span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-panel {
  position: sticky;
  top: 92px;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.rank-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #b45309);
  font-weight: 900;
}

.rank-head a {
  font-size: 13px;
  color: #ffedd5;
}

.rank-panel ol {
  margin: 0;
  padding: 10px;
  list-style: none;
}

.rank-panel li a {
  display: grid;
  grid-template-columns: 38px 58px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 16px;
}

.rank-panel li a:hover {
  background: #fff7ed;
}

.rank-num {
  color: var(--brand-dark);
  font-weight: 900;
}

.rank-panel img {
  width: 58px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.rank-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.rank-panel em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
}

.page-hero {
  position: relative;
  padding: 86px 0;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(253, 186, 116, 0.36), transparent 22rem),
    linear-gradient(135deg, #7c2d12, #ea580c 60%, #f59e0b);
  overflow: hidden;
}

.compact-hero {
  padding: 64px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: rgba(255, 247, 237, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #fff;
}

.page-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(180, 83, 9, 0.1);
}

.page-filter span {
  white-space: nowrap;
  color: var(--muted);
  font-size: 14px;
}

.category-overview-grid {
  display: grid;
  gap: 22px;
}

.category-overview-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(180, 83, 9, 0.1);
}

.category-overview-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.category-overview-head span {
  color: var(--muted);
}

.category-overview-head h2 {
  margin: 6px 0 0;
  font-size: 28px;
}

.category-mini-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-mini-list a {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border-radius: 16px;
  background: #fff7ed;
}

.category-mini-list img {
  width: 72px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
}

.category-mini-list span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.ranking-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 58px 92px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(180, 83, 9, 0.08);
}

.ranking-row a:hover {
  background: #fff7ed;
}

.ranking-number {
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.ranking-row img {
  width: 92px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.ranking-main strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}

.ranking-main em,
.ranking-meta {
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
}

.detail-page {
  background: #fff7ed;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  padding: 46px 0 70px;
  color: #fff;
  overflow: hidden;
  background: #431407;
}

.detail-bg {
  position: absolute;
  inset: 0;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: blur(12px) saturate(1.2);
  transform: scale(1.08);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 20, 7, 0.95), rgba(124, 45, 18, 0.7));
}

.detail-layout {
  position: relative;
  z-index: 2;
}

.detail-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 38px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 26px 66px rgba(0, 0, 0, 0.32);
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 820px;
  color: rgba(255, 247, 237, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.detail-meta div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.detail-meta dt {
  color: rgba(255, 237, 213, 0.76);
  font-size: 13px;
}

.detail-meta dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.detail-tags a {
  background: rgba(255, 255, 255, 0.14);
}

.detail-player-section {
  margin-top: -120px;
  padding-top: 0;
  position: relative;
  z-index: 5;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #020617;
  box-shadow: 0 30px 80px rgba(67, 20, 7, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff;
  border: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.68));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-overlay span {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #7c2d12;
  background: linear-gradient(135deg, #fff7ed, #facc15);
  box-shadow: 0 18px 40px rgba(250, 204, 21, 0.26);
  font-size: 34px;
}

.player-overlay strong {
  font-size: 20px;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.content-card {
  padding: 28px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(180, 83, 9, 0.1);
}

.content-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.content-card p {
  margin: 0;
  color: #5b3921;
  line-height: 2;
  font-size: 16px;
}

.site-footer {
  padding: 46px 0;
  color: #ffedd5;
  background: linear-gradient(135deg, #431407, #7c2d12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-logo {
  margin-bottom: 10px;
  font-size: 22px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 237, 213, 0.78);
  line-height: 1.8;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

[data-movie-card].is-hidden {
  display: none;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr 260px;
    gap: 28px;
  }

  .category-grid,
  .home-grid,
  .listing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }

  .category-mini-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    height: 64px;
  }

  .logo-text {
    font-size: 18px;
  }

  .hero {
    height: 660px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .hero-poster {
    display: none;
  }

  .hero-control {
    display: none;
  }

  .hero-copy p,
  .page-hero p,
  .detail-one-line {
    font-size: 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 12px;
  }

  .category-grid,
  .home-grid,
  .listing-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

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

  .ranking-row a {
    grid-template-columns: 44px 74px 1fr;
  }

  .ranking-meta {
    display: none;
  }

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

  .detail-cover {
    width: min(260px, 72vw);
  }

  .detail-meta {
    grid-template-columns: 1fr 1fr;
  }

  .detail-player-section {
    margin-top: -70px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}
