:root {
  --bg: #fffaf2;
  --bg-soft: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --white: #ffffff;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --shadow: 0 20px 60px rgba(146, 64, 14, 0.14);
  --shadow-soft: 0 12px 34px rgba(146, 64, 14, 0.10);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.16), transparent 30rem),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fffaf2 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid rgba(251, 191, 36, 0.24);
  box-shadow: 0 12px 36px rgba(146, 64, 14, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.32);
  transform: translateZ(0);
}

.brand:hover .brand-mark {
  transform: scale(1.06);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  background: linear-gradient(90deg, #b45309, #ea580c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

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

.nav-link,
.mobile-nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4b5563;
  font-weight: 700;
  transition: all 0.22s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #92400e;
  background: rgba(251, 191, 36, 0.18);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(251, 191, 36, 0.16);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #92400e;
  border-radius: 999px;
}

.mobile-nav-panel {
  display: none;
  padding: 12px 16px 18px;
  background: var(--white);
  border-top: 1px solid rgba(251, 191, 36, 0.24);
}

.mobile-nav-panel.is-open {
  display: block;
}

.mobile-nav-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
}

.mobile-nav-cats a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #92400e;
  background: #fff7ed;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  color: var(--white);
  background: linear-gradient(135deg, #f59e0b 0%, #fb923c 50%, #d97706 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(8px);
  animation: pulseGlow 5s ease-in-out infinite;
}

.hero::before {
  width: 340px;
  height: 340px;
  top: 54px;
  left: 5%;
}

.hero::after {
  width: 460px;
  height: 460px;
  right: -80px;
  bottom: -110px;
  animation-delay: 1.2s;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.85;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0 70px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 44px;
}

.hero-slide.is-active {
  display: grid;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

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

.hero h1 span {
  display: block;
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero p {
  margin: 0 0 30px;
  max-width: 640px;
  font-size: clamp(17px, 2.3vw, 23px);
  color: rgba(255, 255, 255, 0.91);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.button-primary {
  color: #92400e;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(146, 64, 14, 0.20);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat {
  min-width: 126px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-stat strong {
  display: block;
  font-size: 26px;
  line-height: 1.1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(120, 53, 15, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(146, 64, 14, 0.2), transparent 50%);
}

.hero-card-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.hero-card-info h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.hero-card-info p {
  margin: 0;
  font-size: 14px;
}

.hero-controls {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.hero-control {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  font-size: 22px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--white);
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 44px 0;
}

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

.section-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #b45309;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.section-heading p {
  margin: 10px 0 0;
  max-width: 700px;
  color: var(--muted);
}

.section-more {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-weight: 800;
}

.filter-panel {
  margin-bottom: 30px;
  padding: 18px;
  border: 1px solid rgba(251, 191, 36, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.filter-panel label {
  display: grid;
  gap: 7px;
  color: #92400e;
  font-size: 13px;
  font-weight: 800;
}

.filter-search {
  margin-bottom: 14px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #fed7aa;
  border-radius: 14px;
  outline: none;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.filter-reset {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber), var(--orange));
  cursor: pointer;
  font-weight: 900;
}

.filter-result {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

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

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

.movie-card {
  min-width: 0;
}

.movie-card.is-hidden,
.horizontal-card.is-hidden {
  display: none;
}

.movie-card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.movie-poster {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card-link:hover .movie-poster img {
  transform: scale(1.1);
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.66) 100%);
}

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(245, 158, 11, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  left: auto;
  right: 12px;
  background: rgba(220, 38, 38, 0.9);
}

.play-hover {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%) scale(0.86);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(245, 158, 11, 0.92);
  opacity: 0;
  transition: all 0.25s ease;
}

.movie-card-link:hover .play-hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-card-body {
  padding: 18px;
}

.movie-card-body h3 {
  margin: 0 0 8px;
  min-height: 54px;
  font-size: 19px;
  line-height: 1.42;
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #78716c;
  font-size: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 28px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

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

.category-card {
  position: relative;
  display: block;
  min-height: 178px;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #7c2d12;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  border: 1px solid rgba(251, 191, 36, 0.34);
  box-shadow: var(--shadow-soft);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 146px;
  height: 146px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.22);
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.category-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.category-card span {
  position: relative;
  z-index: 1;
  color: #b45309;
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.panel {
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.panel-inner {
  padding: 22px;
}

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

.horizontal-card a {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.horizontal-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.horizontal-thumb {
  position: relative;
  min-height: 96px;
  overflow: hidden;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
}

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

.horizontal-thumb span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.horizontal-card a:hover .horizontal-thumb span {
  opacity: 1;
}

.horizontal-info {
  padding: 14px 14px 14px 0;
  min-width: 0;
}

.horizontal-title-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.horizontal-rank {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.horizontal-info h3 {
  margin: 0;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-info p {
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb {
  width: min(var(--container), calc(100% - 32px));
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: #b45309;
  font-weight: 800;
}

.detail-hero {
  padding: 38px 0 64px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.detail-cover {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  box-shadow: var(--shadow);
}

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

.detail-content h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-desc {
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-weight: 800;
}

.player-shell {
  margin: 26px 0;
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: var(--shadow);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, #374151, #111827 70%);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111827;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.56)),
    radial-gradient(circle at center, rgba(245, 158, 11, 0.24), transparent 34%);
}

.player-overlay-inner {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.player-play-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.32);
  font-size: 30px;
}

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

.player-overlay small {
  color: rgba(255, 255, 255, 0.78);
}

.player-shell.is-playing .player-overlay {
  display: none;
}

.player-message {
  padding: 12px 16px;
  color: #fde68a;
  background: #1f2937;
  font-size: 13px;
}

.article-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.article-block {
  padding: 22px;
  border: 1px solid rgba(251, 191, 36, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.article-block h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.article-block p {
  margin: 0;
  color: #4b5563;
}

.category-preview {
  display: grid;
  gap: 36px;
}

.category-preview-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(251, 191, 36, 0.28);
  box-shadow: var(--shadow-soft);
}

.category-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

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

.category-preview-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.category-preview-head a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-weight: 900;
}

.site-footer {
  margin-top: 60px;
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 34px;
  padding: 48px 0;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
}

.site-footer p {
  max-width: 520px;
  color: #9ca3af;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #d1d5db;
}

.site-footer a:hover {
  color: #fbbf24;
}

.footer-cats {
  columns: 2;
}

.empty-state {
  display: none;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  border-radius: var(--radius-lg);
  background: #fff7ed;
}

.pagination-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

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

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

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

  .detail-cover {
    position: relative;
    top: auto;
    max-width: 420px;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 52px 0 46px;
  }

  .hero-slide,
  .hero-slide.is-active {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-card {
    height: 360px;
  }

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

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

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

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

@media (max-width: 560px) {
  .header-inner {
    height: 66px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading,
  .category-preview-head {
    display: block;
  }

  .section-more,
  .category-preview-head a {
    display: inline-flex;
    margin-top: 14px;
  }

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

  .movie-card-body h3,
  .movie-card-body p {
    min-height: auto;
  }

  .horizontal-card a {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .horizontal-thumb {
    min-height: 90px;
  }

  .detail-content h1 {
    font-size: 36px;
  }

  .detail-desc {
    font-size: 16px;
  }

  .player-play-icon {
    width: 64px;
    height: 64px;
  }
}
