* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  color: #0f172a;
  background: #f8fafc;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 64px;
  gap: 22px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  box-shadow: 0 10px 22px rgba(2, 132, 199, 0.25);
}

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

.nav-link,
.mobile-link {
  color: #334155;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.site-logo:hover {
  color: #0284c7;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.quick-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 190px;
  padding: 9px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.quick-search input:focus,
.search-page-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.header-search button,
.mobile-search button,
.quick-search button,
.search-page-form button {
  border: 0;
  border-radius: 10px;
  padding: 9px 14px;
  color: #ffffff;
  background: #0284c7;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.quick-search button:hover,
.search-page-form button:hover,
.primary-button:hover {
  background: #0369a1;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #334155;
  background: transparent;
  font-size: 28px;
}

.mobile-nav {
  display: none;
  padding: 16px;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.mobile-nav.is-open {
  display: grid;
  gap: 14px;
}

.mobile-search {
  display: flex;
  gap: 8px;
}

.mobile-search input {
  flex: 1;
  padding: 10px 12px;
}

.hero-carousel {
  position: relative;
  height: 540px;
  overflow: hidden;
  background: #0f172a;
}

.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.03);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1));
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 2;
  transform: translateX(-50%);
  color: #ffffff;
}

.hero-kicker,
.page-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 900;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 780px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-tags,
.detail-tags,
.movie-meta-light {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span,
.movie-meta-light span {
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.18);
}

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

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

.primary-button {
  color: #ffffff;
  background: #0284c7;
}

.ghost-button {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.ghost-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.22);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.52);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

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

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  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: 34px;
  background: #ffffff;
}

.quick-entry {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 18px;
  margin-top: 28px;
}

.quick-card,
.quick-search,
.filter-panel,
.search-panel,
.detail-card,
.side-sticky {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.quick-card {
  display: grid;
  gap: 4px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover,
.movie-card:hover,
.movie-row-card:hover,
.category-card:hover,
.ranking-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.quick-card strong {
  font-size: 20px;
  color: #0f172a;
}

.quick-card span {
  color: #64748b;
}

.hot-entry {
  color: #ffffff;
  background: linear-gradient(135deg, #0284c7, #d97706);
}

.hot-entry strong,
.hot-entry span {
  color: #ffffff;
}

.quick-search {
  display: flex;
  gap: 10px;
  padding: 18px;
}

.quick-search input {
  flex: 1;
  padding: 0 14px;
}

.content-section {
  margin-top: 52px;
}

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

.section-heading h2 {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
  font-weight: 900;
}

.section-heading a {
  color: #0284c7;
  font-weight: 800;
}

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

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

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

.movie-card,
.movie-row-card,
.category-card,
.ranking-page-card {
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card {
  display: block;
}

.movie-card-large {
  position: relative;
  min-height: 250px;
}

.movie-poster {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.wide-poster {
  aspect-ratio: 16 / 9;
  height: 100%;
}

.movie-poster img,
.category-covers img,
.ranking-item img,
.movie-row-card img,
.side-card img,
.ranking-page-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.movie-poster img,
.category-covers img,
.movie-row-card img,
.ranking-page-card img {
  transition: transform 0.45s ease;
}

.movie-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 700;
}

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

.movie-card h3,
.movie-overlay-copy h3,
.movie-row-card h3,
.side-card h3 {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}

.movie-card h3 {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card:hover h3,
.movie-row-card:hover h3,
.side-card:hover h3 {
  color: #0284c7;
}

.movie-card-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #64748b;
  font-size: 13px;
}

.movie-overlay-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
  color: #ffffff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.movie-overlay-copy h3 {
  color: #ffffff;
  font-size: 24px;
}

.movie-overlay-copy p {
  display: -webkit-box;
  margin: 8px 0 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-card {
  display: block;
}

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

.category-body {
  padding: 18px;
}

.category-body h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.category-body p {
  display: -webkit-box;
  min-height: 66px;
  margin: 0 0 14px;
  overflow: hidden;
  color: #64748b;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.category-body span {
  color: #0284c7;
  font-weight: 800;
}

.ranking-section {
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 48px 58px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: #f8fafc;
  transition: background 0.2s ease;
}

.ranking-item:hover {
  background: #e0f2fe;
}

.ranking-number {
  color: #d97706;
  font-size: 18px;
  font-weight: 900;
}

.ranking-item img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}

.ranking-title {
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-meta,
.row-meta,
.search-status {
  color: #64748b;
  font-size: 13px;
}

.year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.year-tab {
  border: 0;
  border-radius: 10px;
  padding: 10px 16px;
  color: #334155;
  background: #e2e8f0;
  font-weight: 800;
}

.year-tab.is-active {
  color: #ffffff;
  background: #d97706;
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.24);
}

.year-panel {
  display: none;
}

.year-panel.is-active {
  display: block;
}

.channel-section {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

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

.movie-row-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  min-height: 128px;
}

.movie-row-card img {
  min-height: 128px;
}

.movie-row-card div {
  padding: 16px 18px 16px 0;
}

.movie-row-card p {
  display: -webkit-box;
  margin: 8px 0 12px;
  overflow: hidden;
  color: #475569;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-main {
  padding-bottom: 58px;
}

.page-hero {
  display: grid;
  align-items: center;
  min-height: 260px;
  margin-top: 30px;
  padding: 44px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #075985 58%, #d97706);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.small-hero,
.category-hero,
.ranking-hero {
  min-height: 220px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  font-weight: 900;
}

.page-hero p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

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

.filter-panel,
.search-panel {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  padding: 0 14px;
}

.filter-panel input {
  flex: 1;
}

.search-page-form {
  display: flex;
  width: 100%;
  gap: 12px;
}

.search-page-form input {
  flex: 1;
  min-height: 48px;
  padding: 0 16px;
}

.search-page-form button {
  min-width: 104px;
}

.search-status {
  min-height: 24px;
  margin-bottom: 18px;
  font-weight: 700;
}

.ranking-page-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.ranking-page-card {
  display: grid;
  grid-template-columns: 70px 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px;
}

.rank-badge {
  color: #d97706;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.ranking-page-card img {
  width: 120px;
  height: 86px;
  border-radius: 12px;
}

.ranking-page-card h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.ranking-page-card p {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  color: #475569;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail-main {
  padding-top: 26px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 30px;
}

.detail-primary {
  display: grid;
  gap: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
}

.breadcrumb a {
  color: #0284c7;
  font-weight: 700;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.34);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding-left: 5px;
  border-radius: 999px;
  color: #ffffff;
  background: #0284c7;
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(2, 132, 199, 0.36);
}

.player-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.player-shell:hover .player-controls {
  opacity: 1;
}

.player-controls button {
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  font-weight: 700;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
}

.detail-one-line {
  margin: 0 0 22px;
  color: #0284c7;
  font-size: 19px;
  font-weight: 800;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.detail-meta-grid div {
  padding: 14px;
  border-radius: 14px;
  background: #f8fafc;
}

.detail-meta-grid span {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  font-size: 12px;
}

.detail-meta-grid strong {
  color: #0f172a;
}

.detail-tags {
  margin-bottom: 24px;
}

.detail-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #0369a1;
  background: #e0f2fe;
  font-size: 14px;
  font-weight: 700;
}

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

.detail-text h2,
.detail-side h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.detail-text p {
  margin: 0;
  color: #334155;
  line-height: 1.9;
}

.side-sticky {
  position: sticky;
  top: 90px;
  padding: 20px;
}

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

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

.side-card img {
  width: 92px;
  height: 72px;
  border-radius: 12px;
}

.side-card h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.side-card p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 13px;
}

.site-footer {
  margin-top: 70px;
  padding: 46px 0 22px;
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 38px;
}

.footer-logo {
  color: #ffffff;
}

.site-footer p {
  max-width: 430px;
  color: #94a3b8;
}

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

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

.footer-links a {
  color: #cbd5e1;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  text-align: center;
}

.is-hidden-by-filter {
  display: none !important;
}

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

  .menu-toggle {
    display: block;
  }

  .header-search {
    margin-left: auto;
  }

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

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

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

  .side-sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-search {
    display: none;
  }

  .hero-carousel {
    height: 520px;
  }

  .hero-copy {
    bottom: 68px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-arrow {
    display: none;
  }

  .quick-entry {
    grid-template-columns: 1fr;
  }

  .quick-search,
  .search-page-form,
  .filter-panel {
    flex-direction: column;
  }

  .quick-search input,
  .search-page-form input,
  .filter-panel input,
  .filter-panel select {
    min-height: 46px;
  }

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

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

  .ranking-item {
    grid-template-columns: 42px 52px 1fr;
  }

  .ranking-meta {
    display: none;
  }

  .movie-row-card {
    grid-template-columns: 120px 1fr;
  }

  .movie-row-card img {
    min-height: 120px;
  }

  .page-hero {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .ranking-page-card {
    grid-template-columns: 48px 86px 1fr;
    gap: 12px;
  }

  .ranking-page-card img {
    width: 86px;
    height: 72px;
  }

  .ranking-page-card h2 {
    font-size: 17px;
  }

  .ranking-page-card p {
    display: none;
  }

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

  .detail-card {
    padding: 22px;
  }

  .player-controls {
    opacity: 1;
  }
}

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

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

  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .hero-carousel {
    height: 500px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-tags span {
    padding: 5px 9px;
    font-size: 13px;
  }

  .content-section {
    margin-top: 40px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .compact-grid,
  .featured-grid,
  .category-grid,
  .wide-category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .movie-card h3 {
    font-size: 14px;
  }

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

  .category-covers {
    height: 108px;
  }

  .category-body {
    padding: 14px;
  }

  .category-body p {
    min-height: 0;
    -webkit-line-clamp: 2;
  }

  .movie-row-card {
    grid-template-columns: 98px 1fr;
    gap: 12px;
  }

  .movie-row-card img {
    min-height: 112px;
  }

  .movie-row-card div {
    padding: 12px 12px 12px 0;
  }

  .side-card {
    grid-template-columns: 82px 1fr;
  }

  .side-card img {
    width: 82px;
    height: 64px;
  }
}
