:root {
  --bg: #f9fafb;
  --panel: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f3f4f6;
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --cyan: #0891b2;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.10);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.25);
  font-size: 16px;
}

.brand-copy,
.footer-brand span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong,
.footer-brand strong {
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

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

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  padding: 10px 14px;
  color: #374151;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover,
.desktop-nav > a.is-active {
  color: var(--primary);
  background: #ecfdf5;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 210px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a,
.mobile-nav a,
.site-footer a {
  padding: 10px 12px;
  border-radius: 12px;
  color: #4b5563;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-menu a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--primary);
  background: #ecfdf5;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #f3f4f6;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #374151;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.hero {
  position: relative;
  height: min(720px, 72vh);
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.52), rgba(2, 6, 23, 0.08));
}

.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

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

.hero-chip,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #ffffff;
  background: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  color: var(--primary-dark);
  background: #ccfbf1;
}

.hero h1,
.hero h2 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero p {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.ghost-button,
.home-search button,
.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button,
.home-search button,
.search-form button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 14px 28px rgba(13, 148, 136, 0.25);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.primary-button:hover,
.ghost-button:hover,
.home-search button:hover,
.search-form button:hover {
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.featured-bridge {
  position: relative;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  margin: -72px auto 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 190px;
  padding: 18px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.featured-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 22px;
}

.featured-card span {
  color: var(--primary);
  font-weight: 800;
}

.featured-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(24px, 3vw, 36px);
}

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

.featured-card strong {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #111827;
  border-radius: 999px;
}

.section,
.filter-panel,
.detail-content,
.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 70px 0;
}

.white-section {
  width: 100%;
  max-width: none;
  padding: 70px max(16px, calc((100% - 1180px) / 2));
  background: #ffffff;
}

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

.section-heading h2,
.page-hero h1,
.content-card h2,
.related-block h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-heading a {
  color: var(--primary);
  font-weight: 800;
}

.search-lead {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  align-items: center;
  gap: 30px;
  padding-bottom: 30px;
}

.search-lead p,
.page-hero p {
  color: var(--muted);
  line-height: 1.8;
}

.home-search,
.search-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.home-search input,
.search-form input,
.filter-search input,
.select-label select {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.home-search input,
.search-form input {
  padding: 0 16px;
}

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

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

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

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

.movie-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e5e7eb;
}

.movie-card.large .card-cover {
  aspect-ratio: 16 / 9;
}

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

.movie-card a:hover .card-cover img,
.horizontal-card a:hover img,
.category-card a:hover img {
  transform: scale(1.08);
}

.card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.52));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card a:hover .card-cover::after {
  opacity: 1;
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.75);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-type,
.rank-badge {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.72);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.rank-badge {
  left: 12px;
  right: auto;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.card-body {
  padding: 18px;
}

.card-body h3,
.horizontal-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card a:hover h3,
.horizontal-card a:hover h3 {
  color: var(--primary);
}

.card-body p,
.horizontal-body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.card-meta,
.horizontal-body div,
.detail-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.card-meta span,
.detail-meta-line span {
  padding: 5px 9px;
  background: #f3f4f6;
  border-radius: 999px;
}

.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.card-tags span,
.detail-tags span {
  padding: 5px 9px;
  color: var(--primary-dark);
  background: #ccfbf1;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

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

.horizontal-card a {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.horizontal-cover {
  position: relative;
  height: 145px;
  overflow: hidden;
  background: #e5e7eb;
}

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

.horizontal-cover span {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-radius: 999px;
  font-weight: 850;
}

.horizontal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 18px 18px 0;
}

.page-main {
  min-height: 70vh;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 10px;
}

.page-hero.compact {
  padding-top: 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 700;
}

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

.category-card a {
  display: block;
  overflow: hidden;
  min-height: 300px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 140px;
  overflow: hidden;
  background: #e5e7eb;
}

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

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

.category-card h2 {
  margin: 0 0 10px;
}

.category-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.filter-panel {
  margin-top: 32px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.filter-search {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.filter-search input,
.select-label select {
  min-height: 48px;
  padding: 0 16px;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.select-label {
  display: grid;
  gap: 6px;
  min-width: 210px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 12px;
  padding: 10px 0;
}

.filter-row strong {
  padding-top: 8px;
}

.filter-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-row button {
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
  cursor: pointer;
}

.filter-row button.is-active,
.filter-row button:hover {
  color: #ffffff;
  background: var(--primary);
}

.empty-state {
  display: none;
  margin: 20px 0;
  padding: 32px;
  color: var(--muted);
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.empty-state.is-visible {
  display: block;
}

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

.search-form {
  max-width: 720px;
  margin-bottom: 18px;
}

.search-meta {
  min-height: 24px;
  margin-bottom: 18px;
  color: var(--muted);
}

.detail-main {
  background: #f8fafc;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #020617;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  filter: blur(10px);
  transform: scale(1.08);
}

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

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.72));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 52px;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
}

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

.detail-info h1 {
  margin: 20px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.detail-info .lead {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.8;
}

.detail-info .primary-button {
  margin-top: 24px;
}

.detail-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.76);
}

.detail-hero .breadcrumb a {
  color: #99f6e4;
}

.player-section {
  padding: 44px 0 20px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #020617;
  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.58));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-play {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  font-size: 34px;
  transform: translateX(3px);
}

.detail-content {
  padding: 28px 0 80px;
}

.content-card {
  margin-bottom: 24px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.content-card p {
  margin: 16px 0 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.related-block {
  padding-top: 34px;
}

.site-footer {
  margin-top: 60px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-top: 1px solid var(--line);
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.site-footer p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  padding-left: 0;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

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

  .menu-toggle {
    display: block;
  }

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

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

  .featured-card {
    grid-template-columns: 240px 1fr;
  }

  .featured-card strong {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: 66px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

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

  .hero-copy {
    padding-top: 34px;
  }

  .hero-arrow {
    display: none;
  }

  .hero h1,
  .hero h2 {
    font-size: 42px;
  }

  .featured-bridge {
    margin-top: -44px;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card img {
    height: 210px;
  }

  .search-lead,
  .detail-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-search,
  .search-form,
  .filter-search {
    flex-direction: column;
    border-radius: 24px;
  }

  .home-search button,
  .search-form button {
    width: 100%;
  }

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

  .section {
    padding: 48px 0;
  }

  .white-section {
    padding: 48px 16px;
  }

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

  .card-body {
    padding: 13px;
  }

  .card-body h3 {
    font-size: 16px;
  }

  .card-body p,
  .card-tags {
    display: none;
  }

  .horizontal-card a {
    grid-template-columns: 120px 1fr;
  }

  .horizontal-cover {
    height: 118px;
  }

  .horizontal-body {
    padding: 12px 12px 12px 0;
  }

  .horizontal-body p {
    display: none;
  }

  .page-hero {
    padding-top: 40px;
  }

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

  .detail-poster {
    max-width: 230px;
  }

  .detail-info h1 {
    font-size: 40px;
  }

  .player-play {
    width: 70px;
    height: 70px;
  }

  .content-card {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .four-col,
  .three-col,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .mobile-nav.is-open {
    grid-template-columns: 1fr;
  }

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

  .hero h1,
  .hero h2 {
    font-size: 36px;
  }

  .detail-info h1 {
    font-size: 34px;
  }
}
