:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 4px 10px rgba(120, 53, 15, 0.08);
  --shadow-md: 0 10px 30px rgba(120, 53, 15, 0.12);
  --shadow-lg: 0 25px 60px rgba(120, 53, 15, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-800);
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50) 48%, #fff9db);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.94), rgba(254, 243, 199, 0.94));
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--orange-600));
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(234, 88, 12, 0.26);
}

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

.brand-text strong {
  color: var(--amber-800);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--amber-600);
  font-size: 12px;
  margin-top: 3px;
}

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

.nav-link,
.mobile-link {
  color: var(--amber-700);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--orange-600);
}

.search-mini {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 290px;
}

.search-mini input,
.mobile-search input,
.big-search input,
.search-page-form input,
.filter-panel input {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 999px;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gray-800);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-mini input:focus,
.mobile-search input:focus,
.big-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.search-mini input {
  height: 42px;
  padding: 0 88px 0 18px;
}

.search-mini button {
  position: absolute;
  right: 4px;
  height: 34px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange-600);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--amber-800);
  background: var(--amber-100);
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(217, 119, 6, 0.12);
}

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

.mobile-panel-inner {
  padding: 16px 0 20px;
}

.mobile-search {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-search input {
  height: 42px;
  padding: 0 16px;
}

.mobile-search button,
.big-search button,
.search-page-form button {
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--orange-600);
  padding: 0 18px;
  font-weight: 800;
}

.mobile-nav {
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--gray-900);
}

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

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

.hero-bg,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 42%, rgba(252, 211, 77, 0.24), transparent 36%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(120, 53, 15, 0.74) 48%, rgba(17, 24, 39, 0.42)),
    linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.84));
}

.hero-content {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 340px;
  align-items: center;
  gap: 56px;
  color: #fff;
  padding: 78px 0 92px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 14px;
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-heading h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 7vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.detail-heading p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

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

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

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-600));
  box-shadow: 0 18px 34px rgba(234, 88, 12, 0.32);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.btn.light {
  color: var(--orange-600);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.hero-poster {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

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

.hero-poster span,
.play-hover,
.wide-cover span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-poster:hover span,
.poster-link:hover .play-hover,
.wide-cover:hover span {
  opacity: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 36px;
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  font-size: 32px;
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

.section {
  padding: 52px 0;
}

.search-hero-card {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 28px;
  align-items: center;
  margin-top: -48px;
  position: relative;
  z-index: 8;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.search-hero-card h2 {
  margin: 0 0 6px;
  color: var(--amber-800);
  font-size: 28px;
}

.search-hero-card p {
  margin: 0;
  color: var(--gray-500);
}

.big-search,
.search-page-form {
  display: flex;
  gap: 10px;
}

.big-search input,
.search-page-form input {
  height: 52px;
  padding: 0 18px;
}

.big-search button,
.search-page-form button {
  min-width: 112px;
}

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

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-100));
  box-shadow: var(--shadow-sm);
}

.section-heading h2 {
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
}

.section-more {
  color: var(--orange-600);
  font-weight: 900;
}

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

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

.category-tile {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-900);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(120, 53, 15, 0.86));
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.1);
}

.category-tile span,
.category-tile small {
  position: absolute;
  left: 18px;
  right: 18px;
  color: #fff;
}

.category-tile span {
  bottom: 48px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile small {
  bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

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

.catalogue-grid {
  align-items: stretch;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5.6;
  overflow: hidden;
  background: var(--amber-100);
}

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

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

.duration-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.movie-info {
  padding: 16px;
}

.movie-meta,
.wide-top,
.detail-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--amber-700);
  font-size: 12px;
  font-weight: 900;
}

.movie-meta span,
.wide-top span,
.detail-stats span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--amber-100);
}

.movie-card h2,
.wide-card h2 {
  margin: 12px 0 8px;
  color: var(--gray-900);
  font-size: 18px;
  line-height: 1.25;
}

.movie-card h2 a:hover,
.wide-card h2 a:hover {
  color: var(--orange-600);
}

.movie-card p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-list span {
  color: var(--amber-800);
  background: var(--amber-100);
}

.feature-band {
  margin: 44px 0;
  padding: 56px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600), var(--amber-600));
}

.feature-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.feature-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 5vw, 44px);
}

.feature-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

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

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

.wide-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.wide-cover {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
  background: var(--amber-100);
}

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

.wide-body p {
  margin: 0;
  color: var(--gray-500);
}

.rank-num {
  color: #fff !important;
  background: var(--orange-600) !important;
}

.page-hero {
  padding: 74px 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(252, 211, 77, 0.28), transparent 32%),
    linear-gradient(135deg, var(--amber-800), var(--orange-600), var(--amber-600));
}

.page-hero h1 {
  margin-bottom: 12px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.filter-panel label {
  color: var(--amber-800);
  font-weight: 900;
}

.filter-panel input {
  height: 48px;
  padding: 0 18px;
}

.search-page-box {
  padding-top: 34px;
}

.search-page-form {
  max-width: 760px;
  margin: 0 auto 32px;
}

.detail-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--gray-900);
}

.detail-hero-inner {
  position: relative;
  padding: 42px 0 58px;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(120, 53, 15, 0.72)), linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.84));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.detail-heading {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: end;
}

.detail-cover {
  width: 260px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.detail-stats {
  margin-top: 24px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 42px 0 70px;
}

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

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  z-index: 3;
}

.player-overlay span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-600));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.36);
  font-size: 34px;
  padding-left: 5px;
}

.player-overlay.is-hidden {
  display: none;
}

.detail-block,
.side-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.detail-block h2,
.side-card h2 {
  margin: 0 0 14px;
  color: var(--amber-800);
  font-size: 24px;
}

.detail-block p {
  margin: 0 0 14px;
  color: var(--gray-700);
}

.detail-block p:last-child {
  margin-bottom: 0;
}

.side-card {
  margin-top: 0;
  margin-bottom: 24px;
}

.side-card dl {
  margin: 0;
}

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.side-card dl div:last-child {
  border-bottom: 0;
}

.side-card dt {
  color: var(--gray-500);
}

.side-card dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 800;
  text-align: right;
}

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

.movie-card.compact {
  display: grid;
  grid-template-columns: 92px 1fr;
  border-radius: 16px;
}

.movie-card.compact .poster-link {
  aspect-ratio: 4 / 5.6;
}

.movie-card.compact .movie-info {
  padding: 10px 12px;
}

.movie-card.compact h2 {
  margin: 6px 0;
  font-size: 15px;
}

.movie-card.compact p,
.movie-card.compact .tag-list,
.movie-card.compact .duration-badge,
.movie-card.compact .play-hover {
  display: none;
}

.site-footer {
  color: var(--amber-100);
  background: linear-gradient(135deg, #78350f, #7c2d12, #92400e);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

.footer-brand {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff7ed;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

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

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

@media (max-width: 900px) {
  .main-nav,
  .search-mini {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 28px;
  }

  .hero-poster {
    display: none;
  }

  .search-hero-card,
  .feature-inner,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-heading {
    grid-template-columns: 150px 1fr;
    align-items: center;
  }

  .detail-cover {
    width: 150px;
  }
}

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

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

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero p,
  .page-hero p,
  .detail-heading p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .big-search,
  .search-page-form,
  .mobile-search {
    flex-direction: column;
  }

  .big-search button,
  .search-page-form button,
  .mobile-search button {
    min-height: 44px;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .category-tile {
    min-height: 150px;
  }

  .movie-info {
    padding: 12px;
  }

  .movie-card h2 {
    font-size: 16px;
  }

  .movie-meta {
    font-size: 11px;
  }

  .wide-card {
    grid-template-columns: 112px 1fr;
    padding: 12px;
  }

  .wide-top {
    gap: 5px;
  }

  .wide-card h2 {
    font-size: 16px;
  }

  .wide-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

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

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

  .detail-cover {
    width: 180px;
  }

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

  .player-overlay span {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }
}

@media (max-width: 430px) {
  .category-grid,
  .category-grid.large,
  .movie-grid {
    grid-template-columns: 1fr;
  }
}
