:root {
  --night-950: #0f1115;
  --night-900: #171a21;
  --night-850: #1a1c23;
  --night-800: #242730;
  --night-700: #30333d;
  --warm-50: #faf8f3;
  --warm-100: #f4ead8;
  --warm-200: #e7dbc0;
  --warm-300: #d8c299;
  --warm-400: #bca678;
  --maple-400: #fcafa5;
  --maple-500: #f88171;
  --maple-600: #dc3a26;
  --maple-800: #7f281d;
  --maple-900: #431712;
  --shadow-strong: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.28);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 8%, rgba(220, 58, 38, 0.18), transparent 34rem),
    radial-gradient(circle at 84% 12%, rgba(252, 175, 165, 0.08), transparent 28rem),
    var(--night-950);
  color: var(--warm-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background: var(--maple-600);
  color: #fff;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

main {
  min-height: 65vh;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 26, 33, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: min(1440px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--warm-50);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-logo:hover {
  color: var(--maple-400);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--maple-600), var(--maple-900));
  color: #fff;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(220, 58, 38, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link,
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  height: 68px;
  color: var(--warm-300);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown > a:hover {
  color: var(--maple-400);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: -16px;
  top: calc(100% - 5px);
  width: 176px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(23, 26, 33, 0.98);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--warm-300);
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: var(--night-800);
  color: var(--maple-400);
}

.nav-search {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.nav-search input,
.big-search input {
  width: 240px;
  padding: 10px 14px;
  border: 1px solid var(--night-700);
  border-radius: 12px;
  outline: 0;
  background: var(--night-800);
  color: var(--warm-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.big-search input:focus {
  border-color: var(--maple-600);
  box-shadow: 0 0 0 4px rgba(220, 58, 38, 0.18);
}

.nav-search button {
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--maple-600);
  color: #fff;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--warm-50);
  font-size: 24px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--night-900);
}

.mobile-panel.is-open {
  display: grid;
  gap: 12px;
  padding: 16px 24px 20px;
}

.mobile-panel a {
  color: var(--warm-300);
  font-weight: 700;
}

.page-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.home-shell {
  padding-top: 28px;
}

.animate-fade-in {
  animation: fadeIn 0.55s ease both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: min(80vh, 760px);
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--night-900);
  box-shadow: var(--shadow-strong);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.95s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.gradient-overlay,
.wide-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 17, 21, 0.95), rgba(15, 17, 21, 0.45), rgba(15, 17, 21, 0.15)),
    linear-gradient(0deg, rgba(15, 17, 21, 0.92), transparent 56%);
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(760px, 100%);
  padding: 48px;
  z-index: 2;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--maple-600), #b92f1c);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(220, 58, 38, 0.28);
}

.hero-content h1 {
  margin: 22px 0 12px;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.text-shadow {
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.68);
}

.hero-content p {
  max-width: 680px;
  margin: 0;
  color: var(--warm-200);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.64);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(59, 61, 68, 0.88);
  color: var(--warm-300);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 650;
}

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

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

.btn-primary {
  background: var(--maple-600);
  color: #fff;
  box-shadow: 0 12px 26px rgba(220, 58, 38, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--maple-500);
  box-shadow: 0 18px 34px rgba(220, 58, 38, 0.4);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(23, 26, 33, 0.7);
  color: var(--warm-100);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(252, 175, 165, 0.5);
  color: var(--maple-400);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(23, 26, 33, 0.8);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover {
  background: var(--night-800);
  transform: translateY(-50%) scale(1.06);
}

.hero-prev {
  left: 20px;
  transform: translateY(-50%);
}

.hero-next {
  right: 20px;
  transform: translateY(-50%);
}

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

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(244, 234, 216, 0.46);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--maple-500);
}

.section-block {
  padding: 48px 0;
}

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

.section-title {
  margin: 0;
  color: var(--warm-50);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-subtitle {
  margin: 10px 0 0;
  color: var(--warm-400);
  font-size: 17px;
}

.section-link {
  color: var(--maple-400);
  font-weight: 800;
}

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

.category-card,
.category-overview-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--night-800), var(--night-900));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.category-card {
  min-height: 148px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(252, 175, 165, 0.24);
  background: linear-gradient(135deg, var(--maple-900), var(--night-900));
}

.category-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(220, 58, 38, 0.16);
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-glow {
  transform: scale(1.45);
}

.category-card-title,
.category-card-desc,
.category-card-meta {
  position: relative;
  z-index: 1;
  display: block;
}

.category-card-title {
  color: var(--warm-50);
  font-size: 19px;
  font-weight: 850;
}

.category-card-desc {
  margin-top: 8px;
  color: var(--warm-300);
  font-size: 14px;
  line-height: 1.6;
}

.category-card-meta {
  margin-top: 14px;
  color: var(--maple-400);
  font-size: 13px;
  font-weight: 800;
}

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

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

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--night-850);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(252, 175, 165, 0.24);
  box-shadow: var(--shadow-strong);
}

.video-card-link,
.video-cover-wrap,
.video-card-content {
  display: block;
}

.video-cover-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--night-800);
}

.video-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-card:hover .video-card-cover {
  transform: scale(1.08);
  opacity: 0.82;
}

.video-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--warm-200);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.video-card-content {
  padding: 16px;
}

.video-card-title {
  display: -webkit-box;
  min-height: 50px;
  color: var(--warm-50);
  overflow: hidden;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 850;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.video-card:hover .video-card-title {
  color: var(--maple-400);
}

.video-card-description {
  display: -webkit-box;
  min-height: 44px;
  margin-top: 8px;
  overflow: hidden;
  color: var(--warm-300);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: var(--warm-400);
  font-size: 13px;
  font-weight: 750;
}

.video-card-large .video-cover-wrap {
  aspect-ratio: 21 / 10;
}

.video-card-large .video-card-title {
  font-size: 21px;
}

.scroll-section {
  position: relative;
}

.scroll-actions {
  display: flex;
  gap: 10px;
}

.scroll-actions button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--night-800);
  color: var(--warm-50);
  font-size: 28px;
  line-height: 1;
}

.movie-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 0 18px;
  scroll-behavior: smooth;
}

.scrollbar-hide {
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scroll-item {
  flex: 0 0 320px;
}

.wide-feature {
  padding: 30px 0;
}

.wide-feature a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

.wide-feature img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.wide-feature-content {
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 1;
  width: min(700px, calc(100% - 84px));
}

.wide-feature-content strong,
.wide-feature-content em {
  display: block;
}

.wide-feature-content strong {
  margin-top: 18px;
  color: var(--warm-50);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  font-style: normal;
  font-weight: 950;
}

.wide-feature-content em {
  display: -webkit-box;
  margin-top: 14px;
  overflow: hidden;
  color: var(--warm-200);
  font-size: 17px;
  line-height: 1.7;
  font-style: normal;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.rank-grid,
.ranking-list {
  display: grid;
  gap: 14px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 48px 92px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(26, 28, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 175, 165, 0.24);
}

.rank-number {
  color: var(--maple-500);
  font-size: 24px;
  font-weight: 950;
}

.rank-item img {
  width: 92px;
  height: 58px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--warm-50);
  font-size: 15px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rank-info em {
  margin-top: 4px;
  color: var(--warm-400);
  font-size: 12px;
  font-style: normal;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(220, 58, 38, 0.24), rgba(23, 26, 33, 0.78)),
    var(--night-900);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-soft);
}

.compact-hero {
  padding: 48px;
}

.compact-hero h1 {
  margin: 18px 0 12px;
  color: var(--warm-50);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.compact-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--warm-200);
  font-size: 18px;
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--warm-400);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--maple-400);
}

.category-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.category-overview-link {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 170px;
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 12px;
}

.category-preview img {
  width: 100%;
  height: 146px;
  border-radius: 12px;
  object-fit: cover;
}

.category-overview-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.category-overview-body strong {
  color: var(--warm-50);
  font-size: 25px;
  font-weight: 900;
}

.category-overview-body em {
  margin-top: 10px;
  color: var(--warm-300);
  font-style: normal;
  line-height: 1.7;
}

.category-overview-body span {
  margin-top: 16px;
  color: var(--maple-400);
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

.player-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 0;
  background: #000;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

.player-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--maple-600);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 46px rgba(220, 58, 38, 0.44);
}

.detail-article,
.poster-card,
.side-box {
  border-radius: 24px;
  background: rgba(26, 28, 35, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.detail-article {
  margin-top: 24px;
  padding: 30px;
}

.detail-title-row h1 {
  margin: 18px 0 0;
  color: var(--warm-50);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-lead {
  margin: 20px 0 0;
  color: var(--warm-200);
  font-size: 19px;
  line-height: 1.8;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.detail-article h2 {
  margin: 30px 0 12px;
  color: var(--warm-50);
  font-size: 24px;
}

.detail-article p {
  color: var(--warm-300);
  font-size: 16px;
  line-height: 1.9;
}

.poster-card {
  overflow: hidden;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.meta-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  color: var(--warm-400);
}

.meta-list strong {
  max-width: 220px;
  color: var(--warm-100);
  text-align: right;
}

.side-box {
  margin-top: 22px;
  padding: 22px;
}

.side-box h2 {
  margin: 0 0 16px;
  color: var(--warm-50);
  font-size: 21px;
}

.side-rec-list {
  display: grid;
  gap: 14px;
}

.side-rec {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 12px;
  align-items: center;
}

.side-rec img {
  width: 118px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.side-rec strong,
.side-rec em {
  display: block;
}

.side-rec strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--warm-50);
  font-size: 14px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-rec:hover strong {
  color: var(--maple-400);
}

.side-rec em {
  margin-top: 4px;
  color: var(--warm-400);
  font-size: 12px;
  font-style: normal;
}

.big-search {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.big-search input {
  width: min(560px, 100%);
  min-height: 52px;
}

.search-results:empty::before {
  content: "暂无匹配影片";
  color: var(--warm-300);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--night-900);
}

.footer-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 30px;
  padding: 44px 0;
}

.footer-brand p {
  max-width: 560px;
  color: var(--warm-300);
  line-height: 1.8;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--warm-50);
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: var(--maple-400);
}

.site-footer li,
.footer-bottom {
  color: var(--warm-400);
}

.footer-bottom {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .category-grid,
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rank-grid,
  .ranking-list {
    grid-template-columns: 1fr;
  }

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

  .detail-side {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 22px;
  }

  .side-box {
    margin-top: 0;
  }
}

@media (max-width: 920px) {
  .nav-links,
  .nav-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-slider {
    min-height: 620px;
    border-radius: 22px;
  }

  .hero-content {
    padding: 28px;
  }

  .hero-nav {
    display: none;
  }

  .category-grid,
  .movie-grid,
  .featured-grid,
  .category-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-overview-link {
    grid-template-columns: 1fr;
  }

  .detail-side {
    display: block;
  }

  .side-box {
    margin-top: 22px;
  }

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

@media (max-width: 620px) {
  .nav-inner,
  .page-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1440px);
  }

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

  .hero-slider {
    min-height: 560px;
  }

  .hero-content {
    padding: 22px;
  }

  .hero-actions,
  .big-search {
    flex-direction: column;
  }

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

  .category-grid,
  .movie-grid,
  .featured-grid,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .scroll-item {
    flex-basis: 280px;
  }

  .compact-hero {
    padding: 30px 22px;
  }

  .wide-feature a {
    min-height: 360px;
  }

  .wide-feature img {
    height: 420px;
  }

  .wide-feature-content {
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }

  .rank-item {
    grid-template-columns: 40px 86px 1fr;
  }

  .detail-article {
    padding: 22px;
  }

  .player-button {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}
