:root {
  --teal-900: #134e4a;
  --teal-800: #115e59;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-100: #ccfbf1;
  --cyan-50: #ecfeff;
  --neutral-950: #0a0a0a;
  --neutral-900: #171717;
  --neutral-800: #262626;
  --neutral-700: #404040;
  --neutral-600: #525252;
  --neutral-500: #737373;
  --neutral-300: #d4d4d4;
  --neutral-200: #e5e5e5;
  --neutral-100: #f5f5f5;
  --neutral-50: #fafafa;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
  --shadow-md: 0 10px 30px rgba(15, 118, 110, .12);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--neutral-50);
  color: var(--neutral-900);
  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;
}

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

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

.heading-2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.heading-3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
}

.card {
  border: 1px solid rgba(229, 229, 229, .85);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card:hover {
  border-color: rgba(13, 148, 136, .38);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.btn-primary {
  background: var(--teal-700);
  color: var(--white);
}

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

.btn-ghost {
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .28);
}

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

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-700), #0891b2);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(13, 148, 136, .26);
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  position: relative;
  color: var(--neutral-700);
  font-weight: 650;
  transition: color .2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 99px;
  background: var(--teal-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--teal-700);
}

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

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

.nav-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--neutral-900);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.nav-search input {
  width: 230px;
  padding: 10px 12px;
}

.nav-search button,
.mobile-search button,
.filter-bar button {
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: var(--teal-700);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, .16);
}

.menu-button {
  display: none;
  border: 0;
  border-radius: 12px;
  padding: 9px 12px;
  background: var(--neutral-100);
  color: var(--neutral-900);
  cursor: pointer;
}

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

.mobile-panel.is-open {
  display: grid;
  gap: 10px;
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 14px auto 4px;
  width: min(100%, 720px);
}

.mobile-search input {
  padding: 11px 12px;
}

.mobile-link {
  width: min(100%, 720px);
  margin: 0 auto;
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--neutral-700);
  font-weight: 700;
}

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

.hero-carousel {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
  background: var(--neutral-950);
}

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

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(13, 148, 136, .34), transparent 28%),
    linear-gradient(to top, rgba(0, 0, 0, .86), rgba(0, 0, 0, .46), rgba(0, 0, 0, .18));
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 54px 0 72px;
  color: var(--white);
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 99px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .12);
  color: #d1faf4;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 7vw, 72px);
  line-height: .98;
  letter-spacing: -.05em;
}

.hero-copy p {
  display: -webkit-box;
  max-width: 680px;
  margin: 0 0 28px;
  overflow: hidden;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 22px);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  background: rgba(0, 0, 0, .32);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, .52);
  transform: translateY(-50%) scale(1.05);
}

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

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

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 32px;
}

.feature-big {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 28px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.feature-big img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform .5s ease;
}

.feature-big:hover img {
  transform: scale(1.05);
}

.feature-big span {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, .86), rgba(0, 0, 0, .34), transparent);
}

.feature-big strong {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.feature-big em,
.movie-info em,
.latest-text em,
.scroll-card em {
  font-style: normal;
}

.site-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.site-intro p {
  margin: 0 0 18px;
  color: var(--neutral-700);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0 28px;
}

.stat-box {
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(135deg, var(--teal-100), var(--cyan-50));
}

.stat-box strong {
  display: block;
  color: var(--teal-800);
  font-size: 28px;
  line-height: 1;
}

.stat-box span {
  color: var(--neutral-600);
  font-size: 13px;
}

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

.category-tile {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff, #f0fdfa);
}

.category-tile strong {
  color: var(--teal-800);
  font-size: 22px;
}

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

.category-tile span {
  color: var(--teal-700);
  font-weight: 800;
}

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

.movie-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--neutral-800), var(--teal-900));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .58), transparent 70%);
  opacity: 0;
  transition: opacity .25s ease;
}

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

.play-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(15, 118, 110, .92);
  color: var(--white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.86);
  transition: opacity .25s ease, transform .25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-width: 34px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(15, 118, 110, .94);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.movie-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.movie-info strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 8px;
  color: var(--neutral-900);
  font-size: 17px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s ease;
}

.movie-card:hover .movie-info strong {
  color: var(--teal-700);
}

.movie-info em {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: var(--neutral-600);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--neutral-600);
  font-size: 13px;
}

.movie-meta b {
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--teal-100);
  color: var(--teal-800);
}

.movie-meta i {
  font-style: normal;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span {
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-size: 12px;
}

.scroll-section {
  background: var(--white);
}

.scroll-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
}

.scroll-card {
  display: grid;
  flex: 0 0 290px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.scroll-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.scroll-card span {
  padding: 15px;
}

.scroll-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--neutral-900);
}

.scroll-card em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--neutral-600);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.latest-item {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 16px;
}

.latest-cover {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: var(--neutral-800);
}

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

.latest-item:hover .latest-cover img {
  transform: scale(1.06);
}

.latest-cover i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .34);
  color: var(--white);
  font-style: normal;
  opacity: 0;
  transition: opacity .2s ease;
}

.latest-item:hover .latest-cover i {
  opacity: 1;
}

.latest-text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.25;
  transition: color .2s ease;
}

.latest-item:hover .latest-text strong {
  color: var(--teal-700);
}

.latest-text em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--neutral-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.latest-meta {
  color: var(--neutral-500);
  font-weight: 700;
  white-space: nowrap;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 8%, rgba(34, 211, 238, .28), transparent 26%),
    linear-gradient(135deg, var(--teal-800), #0e7490);
  color: var(--white);
}

.page-hero .container-custom {
  padding-top: 58px;
  padding-bottom: 58px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

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

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 180px 180px auto;
  gap: 12px;
  margin: 28px 0;
}

.filter-bar input,
.filter-bar select {
  min-height: 46px;
  padding: 0 13px;
}

.filter-bar button {
  min-height: 46px;
  cursor: pointer;
}

.empty-state {
  display: none;
  border-radius: 18px;
  padding: 34px;
  background: var(--white);
  color: var(--neutral-600);
  text-align: center;
}

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

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

.category-panel {
  overflow: hidden;
  padding: 24px;
}

.category-panel h2 {
  margin: 0 0 10px;
  color: var(--teal-800);
}

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

.mini-links {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.mini-links a {
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  padding: 10px 12px;
  background: var(--neutral-50);
  color: var(--neutral-700);
}

.mini-links a:hover {
  color: var(--teal-700);
  background: #f0fdfa;
}

.video-stage {
  background: var(--neutral-950);
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: #000000;
  box-shadow: var(--shadow-lg);
}

.video-player {
  width: 100%;
  max-height: 74vh;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.play-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, .24);
  color: var(--white);
  cursor: pointer;
  transition: opacity .2s ease, visibility .2s ease;
}

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

.play-cover span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(15, 118, 110, .92);
  box-shadow: 0 0 0 16px rgba(15, 118, 110, .16);
  font-size: 34px;
  transition: transform .2s ease;
}

.play-cover:hover span {
  transform: scale(1.08);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  padding-top: 42px;
  padding-bottom: 64px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--neutral-600);
  font-size: 14px;
}

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

.detail-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.detail-lead {
  margin: 0 0 22px;
  color: var(--neutral-700);
  font-size: 19px;
}

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

.detail-meta span {
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-weight: 700;
}

.detail-section {
  margin-top: 28px;
  padding: 26px;
}

.detail-section h2 {
  margin: 0 0 12px;
  color: var(--neutral-900);
}

.detail-section p {
  margin: 0;
  color: var(--neutral-700);
  font-size: 17px;
}

.side-cover {
  overflow: hidden;
  margin-bottom: 20px;
}

.side-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

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

.related-item img {
  width: 112px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  object-fit: cover;
  background: var(--neutral-800);
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 4px;
  color: var(--neutral-900);
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color .2s ease;
}

.related-item:hover strong {
  color: var(--teal-700);
}

.related-item em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--neutral-600);
  font-size: 13px;
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-top: 46px;
  padding-bottom: 36px;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.site-footer p {
  margin: 0;
  color: var(--neutral-300);
}

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

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

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

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: 18px 0;
  color: var(--neutral-500);
  text-align: center;
}

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

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

  .menu-button {
    display: inline-flex;
  }

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

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

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

  .detail-side {
    order: -1;
  }
}

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

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

  .hero-carousel {
    min-height: 68vh;
  }

  .hero-content {
    padding: 42px 0 68px;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

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

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

  .brand-text small {
    display: none;
  }

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

  .movie-info {
    padding: 13px;
  }

  .movie-info strong {
    font-size: 15px;
  }

  .movie-info em,
  .tag-row {
    display: none;
  }

  .category-strip,
  .category-overview {
    grid-template-columns: 1fr;
  }

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

  .latest-item {
    grid-template-columns: 1fr;
  }

  .latest-meta {
    white-space: normal;
  }

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

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

  .detail-section {
    padding: 20px;
  }
}
