:root {
  --primary: #0f766e;
  --primary-dark: #115e59;
  --primary-light: #14b8a6;
  --secondary: #d97706;
  --accent: #0891b2;
  --neutral-50: #fafafa;
  --neutral-100: #f4f4f5;
  --neutral-200: #e4e4e7;
  --neutral-300: #d4d4d8;
  --neutral-500: #71717a;
  --neutral-600: #52525b;
  --neutral-700: #3f3f46;
  --neutral-900: #18181b;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.11);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--neutral-900);
  background: var(--neutral-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section-padding {
  padding: 64px 0;
}

.bg-white {
  background: var(--white);
}

.bg-neutral {
  background: var(--neutral-50);
}

.bg-gradient {
  background: linear-gradient(135deg, #0f766e 0%, #0891b2 100%);
}

.heading-2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.light-title {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.teal {
  color: var(--primary);
}

.eyebrow.light {
  color: #ccfbf1;
}

.card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 118, 110, 0.24);
}

.btn-primary,
.btn-glass,
.btn-text,
.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  padding: 12px 22px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 12px 22px;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.28);
}

.btn-text,
.more-link {
  color: var(--primary);
  padding: 8px 0;
}

.btn-text {
  color: #ccfbf1;
}

.more-link.light {
  color: #ccfbf1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.28);
}

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

.brand-text strong,
.footer-brand span:last-child {
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.brand-text small {
  margin-top: 2px;
  color: var(--neutral-500);
  font-size: 0.76rem;
}

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

.nav-link {
  position: relative;
  color: var(--neutral-700);
  font-weight: 750;
  padding: 24px 0;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search,
.mobile-search {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  background: var(--white);
}

.header-search input,
.mobile-search input {
  width: 230px;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px 12px;
  color: var(--neutral-900);
  background: transparent;
}

.header-search button,
.mobile-search button {
  border: 0;
  color: var(--white);
  background: var(--primary);
  padding: 10px 14px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 10px;
  background: var(--neutral-100);
  padding: 10px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--neutral-900);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding: 16px;
  background: var(--white);
}

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

.mobile-search {
  margin: 0 auto 12px;
  width: min(520px, 100%);
}

.mobile-search input {
  flex: 1;
  width: auto;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin: 0 auto;
  width: min(520px, 100%);
}

.mobile-link {
  border-radius: 12px;
  color: var(--neutral-700);
  font-weight: 800;
  padding: 12px 14px;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--primary);
  background: var(--neutral-100);
}

.hero-slider {
  position: relative;
  min-height: min(760px, 72vh);
  overflow: hidden;
  background: var(--neutral-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.12)), linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: min(760px, 72vh);
  padding-top: 96px;
  padding-bottom: 72px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-copy p {
  margin: 0 0 24px;
  color: #e4e4e7;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
}

.hero-tags,
.tag-row,
.detail-tags,
.hero-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags a,
.hero-mini-links a {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.32);
  font-size: 2rem;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.54);
}

.hero-arrow.prev {
  left: 18px;
}

.hero-arrow.next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dots button.active {
  background: var(--primary-light);
}

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

.focus-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.focus-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 26px;
  background: var(--neutral-900);
  box-shadow: var(--shadow-lg);
}

.focus-card a,
.focus-card img,
.focus-gradient {
  position: absolute;
  inset: 0;
}

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

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

.focus-gradient {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.18));
}

.focus-text {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  color: var(--white);
}

.focus-text strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 900;
}

.focus-text em {
  display: block;
  margin-top: 8px;
  color: #d4d4d8;
  font-style: normal;
}

.focus-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.focus-copy h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.focus-copy p {
  color: var(--neutral-600);
  margin: 0 0 24px;
}

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

.movie-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--shadow-md);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
}

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

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

.poster-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  font-size: 2.3rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
}

.movie-info {
  padding: 16px;
}

.movie-info h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 900;
}

.movie-info h2 a:hover,
.ranking-card h2 a:hover {
  color: var(--primary);
}

.movie-info p {
  display: -webkit-box;
  min-height: 3.15em;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--neutral-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--neutral-500);
  font-size: 0.84rem;
}

.movie-meta span,
.movie-meta a {
  border-radius: 8px;
  background: var(--neutral-100);
  padding: 3px 8px;
}

.tag-row {
  margin-top: 12px;
}

.tag-row span {
  color: var(--neutral-700);
  background: var(--neutral-100);
  padding: 4px 9px;
}

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

.category-tile {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 22px;
  box-shadow: 0 22px 50px rgba(15, 118, 110, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 118, 110, 0.26);
}

.category-tile span {
  font-size: 1.35rem;
  font-weight: 900;
}

.category-tile em {
  margin-top: 8px;
  color: #ccfbf1;
  font-style: normal;
  font-size: 0.92rem;
}

.category-card {
  overflow: hidden;
}

.category-card a {
  display: grid;
  grid-template-rows: 180px auto;
  height: 100%;
}

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

.category-card div {
  padding: 20px;
}

.category-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.category-card p {
  color: var(--neutral-600);
  margin: 0 0 16px;
}

.category-card span {
  color: var(--primary);
  font-weight: 900;
}

.horizontal-strip {
  display: grid;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.small-card {
  display: grid;
  min-width: 270px;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  background: var(--white);
}

.small-poster {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

.small-body {
  padding: 14px;
}

.small-body strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 900;
}

.small-body em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--neutral-600);
  font-size: 0.9rem;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.rank-row:hover {
  background: rgba(255, 255, 255, 0.22);
}

.rank-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ccfbf1;
  color: var(--primary-dark);
  font-weight: 950;
}

.rank-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: #ccfbf1;
  font-style: normal;
}

.page-hero {
  color: var(--white);
  background: radial-gradient(circle at 16% 16%, rgba(20, 184, 166, 0.42), transparent 30%), linear-gradient(135deg, #0f766e, #0891b2);
  padding: 84px 0 76px;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #ccfbf1;
  font-size: 1.12rem;
}

.hero-mini-links {
  margin-top: 24px;
}

.filter-panel {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
  padding: 24px;
}

.filter-panel.slim {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.filter-panel h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
}

.filter-panel p {
  margin: 0;
  color: var(--neutral-600);
}

.filter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 14px;
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--neutral-600);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  outline: 0;
  background: var(--white);
  padding: 12px 14px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.16);
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.filter-actions span {
  color: var(--neutral-600);
  font-weight: 800;
}

.filter-actions button {
  border: 0;
  border-radius: 10px;
  background: var(--neutral-100);
  padding: 8px 12px;
  font-weight: 900;
}

.filter-actions button.active,
.filter-actions button:hover {
  color: var(--white);
  background: var(--primary);
}

.all-grid.list-view {
  display: grid;
  grid-template-columns: 1fr;
}

.all-grid.list-view .movie-card {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
}

.all-grid.list-view .movie-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.ranking-list {
  display: grid;
  gap: 16px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 18px;
}

.ranking-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

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

.ranking-poster span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--white);
  background: var(--primary);
  font-weight: 950;
}

.ranking-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.ranking-card p {
  color: var(--neutral-600);
}

.player-section {
  background: #020617;
  padding: 22px 0 36px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  color: #d4d4d8;
  font-size: 0.95rem;
}

.breadcrumb a:hover {
  color: #5eead4;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.18));
}

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

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(15, 118, 110, 0.92);
  font-size: 2.5rem;
  box-shadow: 0 24px 60px rgba(15, 118, 110, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-overlay:hover .play-circle {
  background: var(--primary-dark);
  transform: scale(1.06);
}

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

.detail-main,
.detail-side {
  display: grid;
  align-content: start;
  gap: 22px;
}

.detail-card,
.side-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.detail-card h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.detail-card p {
  margin: 0;
  color: var(--neutral-700);
}

.detail-card .lead-text {
  margin: 20px 0 24px;
  color: var(--neutral-900);
  font-size: 1.12rem;
  font-weight: 750;
}

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

.detail-meta span,
.detail-meta a {
  border-radius: 999px;
  background: #ccfbf1;
  color: var(--primary-dark);
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 900;
}

.detail-tags a {
  color: var(--neutral-700);
  background: var(--neutral-100);
}

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

.side-list .small-card {
  min-width: 0;
}

.side-cta {
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

.side-cta p {
  color: var(--neutral-600);
  margin: 0 0 18px;
}

.site-footer {
  color: #d4d4d8;
  background: var(--neutral-900);
}

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

.footer-brand span:last-child {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #a1a1aa;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

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

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

.footer-bottom {
  border-top: 1px solid #27272a;
  color: #71717a;
  text-align: center;
  padding: 22px 16px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-search {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

@media (max-width: 820px) {
  .section-padding {
    padding: 44px 0;
  }

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

  .hero-arrow {
    display: none;
  }

  .hero-actions,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .filter-grid,
  .filter-panel.slim,
  .ranking-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .all-grid.list-view .movie-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container-custom {
    width: min(100% - 24px, 1280px);
  }

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

  .hero-content {
    padding-bottom: 58px;
  }

  .btn-primary,
  .btn-glass {
    width: 100%;
  }

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

  .rank-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .rank-row em {
    grid-column: 2;
  }

  .detail-card,
  .side-card,
  .filter-panel,
  .focus-copy {
    padding: 20px;
  }

  .play-circle {
    width: 74px;
    height: 74px;
    font-size: 2rem;
  }
}
