:root {
  --mist-950: #071521;
  --mist-900: #102a43;
  --mist-850: #18344f;
  --mist-800: #243b53;
  --mist-700: #334e68;
  --mist-600: #486581;
  --mist-500: #627d98;
  --mist-400: #829ab1;
  --mist-300: #9fb3c8;
  --mist-200: #bcccdc;
  --mist-100: #d9e2ec;
  --swamp-700: #164b51;
  --swamp-600: #20656a;
  --swamp-500: #2d8285;
  --swamp-400: #4aa2a5;
  --swamp-300: #7bb8ba;
  --gold: #f6c85f;
  --danger: #ff6b6b;
  --text: #f8fafc;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(45, 130, 133, 0.32), transparent 34rem), var(--mist-900);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  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: 100;
  background: rgba(16, 42, 67, 0.9);
  border-bottom: 1px solid rgba(188, 204, 220, 0.12);
  backdrop-filter: blur(18px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--swamp-400), var(--swamp-700));
  box-shadow: 0 10px 24px rgba(45, 130, 133, 0.35);
  font-weight: 900;
}

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

.brand-text strong {
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--mist-400);
  font-size: 12px;
}

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

.nav-link {
  color: var(--mist-200);
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: 14px;
  background: rgba(36, 59, 83, 0.96);
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  color: var(--mist-200);
  border-radius: 10px;
  font-size: 14px;
}

.dropdown-panel a:hover {
  color: #ffffff;
  background: rgba(72, 101, 129, 0.72);
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-search {
  display: flex;
  align-items: center;
  width: min(330px, 28vw);
  border: 1px solid rgba(188, 204, 220, 0.14);
  border-radius: 14px;
  background: rgba(36, 59, 83, 0.72);
  overflow: hidden;
}

.top-search input,
.hero-search input,
.filter-panel input,
.filter-panel select,
.mobile-panel input {
  width: 100%;
  min-width: 0;
  color: #ffffff;
  border: 0;
  outline: 0;
  background: transparent;
}

.top-search input {
  padding: 10px 12px;
}

.top-search input::placeholder,
.hero-search input::placeholder,
.filter-panel input::placeholder,
.mobile-panel input::placeholder {
  color: var(--mist-400);
}

.top-search button {
  flex: 0 0 auto;
  align-self: stretch;
  padding: 0 16px;
  color: #ffffff;
  border: 0;
  background: var(--swamp-600);
  transition: background 0.2s ease;
}

.top-search button:hover {
  background: var(--swamp-500);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  color: #ffffff;
  border: 1px solid rgba(188, 204, 220, 0.16);
  border-radius: 12px;
  background: rgba(36, 59, 83, 0.86);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid rgba(188, 204, 220, 0.14);
  border-radius: 16px;
  background: rgba(36, 59, 83, 0.95);
}

.mobile-panel a {
  display: block;
  padding: 10px 12px;
  color: var(--mist-200);
  border-radius: 10px;
}

.mobile-panel a:hover {
  color: #ffffff;
  background: rgba(72, 101, 129, 0.65);
}

.mobile-panel form {
  display: flex;
  margin-top: 10px;
  border-radius: 12px;
  background: rgba(16, 42, 67, 0.8);
  overflow: hidden;
}

.mobile-panel input {
  padding: 10px 12px;
}

.mobile-panel button {
  color: #ffffff;
  border: 0;
  padding: 0 14px;
  background: var(--swamp-600);
}

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

.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--mist-900);
}

.hero-track,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--mist-900), rgba(16, 42, 67, 0.64), rgba(16, 42, 67, 0.14));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 92px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  color: #ffffff;
  border-radius: 999px;
  background: rgba(32, 101, 106, 0.86);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1,
.page-hero h1,
.detail-intro h1 {
  max-width: 780px;
  margin: 18px 0 16px;
  color: #ffffff;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p,
.page-hero p,
.detail-intro p {
  max-width: 720px;
  margin: 0 0 18px;
  color: var(--mist-200);
  font-size: 18px;
}

.hero-meta,
.detail-meta-line {
  color: var(--mist-300);
  font-size: 15px;
}

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

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

.primary-button {
  color: #ffffff;
  background: var(--swamp-500);
  box-shadow: 0 14px 30px rgba(45, 130, 133, 0.28);
}

.primary-button:hover {
  background: var(--swamp-600);
  transform: translateY(-2px);
}

.ghost-button,
.section-more {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.ghost-button:hover,
.section-more:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.45);
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  font-size: 34px;
  line-height: 1;
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

.hero-control:hover {
  background: rgba(45, 130, 133, 0.8);
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: #ffffff;
}

.page-stack {
  display: grid;
  gap: 34px;
  padding: 44px 0 70px;
}

.content-section {
  padding: 28px;
  border: 1px solid rgba(188, 204, 220, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(16, 42, 67, 0.45);
  box-shadow: var(--shadow-soft);
}

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

.section-title-row h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.section-title-row p {
  margin: 0;
  color: var(--mist-400);
}

.section-more {
  min-height: 38px;
  padding: 0 15px;
  font-size: 14px;
}

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

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

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  background: var(--mist-800);
  box-shadow: var(--shadow-card);
}

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

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

.card-badge,
.card-year,
.rank-number {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-badge {
  left: 10px;
  top: 10px;
  max-width: calc(100% - 20px);
  padding: 4px 9px;
  color: #ffffff;
  background: rgba(32, 101, 106, 0.86);
  backdrop-filter: blur(8px);
}

.card-year {
  right: 10px;
  top: 10px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.rank-number {
  left: 10px;
  bottom: 10px;
  min-width: 34px;
  height: 28px;
  color: var(--mist-950);
  background: var(--gold);
}

.card-mask {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .card-mask {
  opacity: 1;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(45, 130, 133, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-meta,
.card-tags {
  display: block;
  color: var(--mist-400);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-tags {
  color: var(--swamp-300);
}

.compact-card .card-cover {
  aspect-ratio: 16 / 10;
}

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

.category-card {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
  background: var(--mist-800);
  box-shadow: var(--shadow-card);
}

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

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.95), rgba(16, 42, 67, 0.35));
}

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

.category-card span {
  align-self: end;
  padding: 20px;
}

.category-card strong,
.category-card em,
.category-card small {
  display: block;
}

.category-card strong {
  color: #ffffff;
  font-size: 22px;
}

.category-card em {
  margin: 7px 0;
  color: var(--mist-200);
  font-style: normal;
  font-size: 14px;
}

.category-card small,
.category-card small a {
  color: var(--swamp-300);
}

.ranking-panel {
  background: linear-gradient(135deg, rgba(32, 101, 106, 0.22), rgba(16, 42, 67, 0.7));
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(36, 59, 83, 0.7);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ranking-row:hover {
  background: rgba(72, 101, 129, 0.72);
  transform: translateY(-2px);
}

.ranking-row span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--mist-950);
  border-radius: 12px;
  background: var(--gold);
  font-weight: 900;
}

.ranking-row strong,
.ranking-row em {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ranking-row strong {
  color: #ffffff;
  font-size: 16px;
}

.ranking-row em {
  display: block;
  color: var(--mist-400);
  font-style: normal;
  font-size: 13px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 68px;
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(32, 101, 106, 0.42));
  isolation: isolate;
}

.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--page-hero-image, var(--detail-backdrop));
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  filter: blur(3px);
  transform: scale(1.03);
}

.page-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, var(--mist-900), rgba(16, 42, 67, 0.58));
}

.slim-hero {
  padding: 76px 0 58px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--mist-300);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--swamp-300);
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(188, 204, 220, 0.1);
  border-radius: 18px;
  background: rgba(36, 59, 83, 0.58);
}

.category-poster {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 3 / 4;
  background: var(--mist-800);
}

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

.category-overview-card h2 {
  margin: 0 0 8px;
  color: #ffffff;
}

.category-overview-card p {
  margin: 0 0 12px;
  color: var(--mist-300);
}

.category-overview-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-overview-card li + li {
  margin-top: 6px;
}

.category-overview-card li a {
  color: var(--swamp-300);
}

.filter-panel {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-panel input,
.filter-panel select,
.hero-search input {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: 12px;
  background: rgba(36, 59, 83, 0.74);
}

.filter-panel select {
  flex: 0 0 180px;
  color: #ffffff;
}

.filter-panel option {
  color: #102a43;
}

.hero-search {
  display: flex;
  gap: 12px;
  width: min(680px, 100%);
  margin-top: 26px;
}

.hero-search button {
  border: 0;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 40px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

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

.detail-layout {
  padding-top: 34px;
}

.watch-section {
  padding: 24px;
  border: 1px solid rgba(188, 204, 220, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(7, 21, 33, 0.62);
  box-shadow: var(--shadow-soft);
}

.watch-section h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  background: #000000;
}

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

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #ffffff;
  border: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-start span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(45, 130, 133, 0.92);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
  font-size: 28px;
}

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

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

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

.movie-article,
.related-sidebar {
  padding: 26px;
  border: 1px solid rgba(188, 204, 220, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(16, 42, 67, 0.58);
}

.movie-article h2,
.related-sidebar h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 24px;
}

.movie-article h2:not(:first-child) {
  margin-top: 28px;
}

.movie-article p {
  margin: 0;
  color: var(--mist-200);
  font-size: 16px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  padding: 12px;
  border-radius: 12px;
  background: rgba(36, 59, 83, 0.75);
}

.info-list span,
.info-list strong {
  display: block;
}

.info-list span {
  color: var(--mist-400);
  font-size: 13px;
}

.info-list strong {
  color: #ffffff;
  margin-top: 4px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tag-cloud a {
  padding: 7px 12px;
  color: var(--mist-100);
  border-radius: 999px;
  background: rgba(51, 78, 104, 0.86);
}

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

.related-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.related-cover {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  background: var(--mist-800);
}

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

.related-card strong,
.related-card small,
.related-card em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card strong {
  color: #ffffff;
  white-space: nowrap;
}

.related-card small {
  color: var(--mist-400);
  font-size: 12px;
}

.related-card em {
  color: var(--mist-300);
  font-style: normal;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.site-footer {
  border-top: 1px solid rgba(188, 204, 220, 0.1);
  background: rgba(7, 21, 33, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 44px 0;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  color: var(--mist-400);
  margin: 0;
}

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

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

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

.site-footer a {
  color: var(--mist-400);
}

.site-footer a:hover {
  color: var(--swamp-300);
}

.footer-bottom {
  padding: 16px;
  color: var(--mist-400);
  text-align: center;
  border-top: 1px solid rgba(188, 204, 220, 0.08);
}

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

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

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

  .hero-slider {
    height: 560px;
  }

  .movie-grid,
  .category-grid,
  .ranking-list,
  .category-overview-grid,
  .footer-grid,
  .detail-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero-grid {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 24px;
  }

  .related-sidebar {
    grid-column: 1 / -1;
  }
}

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

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

  .brand-text small {
    display: none;
  }

  .hero-slider {
    height: 520px;
  }

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

  .hero-control {
    display: none;
  }

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

  .content-section,
  .watch-section,
  .movie-article,
  .related-sidebar {
    padding: 18px;
    border-radius: 18px;
  }

  .section-title-row,
  .filter-panel,
  .hero-search {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-panel select {
    flex-basis: auto;
  }

  .movie-grid,
  .category-grid,
  .ranking-list,
  .category-overview-grid,
  .footer-grid,
  .detail-main-grid,
  .info-list {
    grid-template-columns: 1fr;
  }

  .category-overview-card,
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .category-poster,
  .detail-poster {
    max-width: 260px;
  }

  .related-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }
}
