:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --orange-500: #f97316;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 8px 18px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 50px rgba(15, 23, 42, 0.18);
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-800);
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", 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 {
  border: 0;
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  color: var(--white);
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  border-radius: 12px;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.28);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-3deg);
}

.brand-title {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fcd34d, #fdba74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--slate-300);
  font-size: 12px;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  color: var(--slate-200);
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
  background: var(--amber-500);
  transform: translateY(-1px);
}

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

.header-search input,
.filter-input,
.filter-select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--slate-800);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.header-search input {
  width: 190px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(71, 85, 105, 0.92);
}

.header-search input::placeholder {
  color: var(--slate-300);
}

.icon-button,
.search-button,
.hero-arrow {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--amber-500);
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-button {
  width: 42px;
  height: 42px;
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--slate-700);
}

.icon-button:hover,
.search-button:hover,
.hero-arrow:hover {
  background: var(--amber-600);
  transform: translateY(-1px);
}

.mobile-panel {
  display: none;
  padding: 0 0 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

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

.mobile-panel .main-nav,
.mobile-panel .header-search {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mobile-panel .header-search input {
  width: 100%;
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 540px;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.55) 48%, rgba(2, 6, 23, 0.18));
}

.hero-glow {
  position: absolute;
  inset: auto -12% -35% auto;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3), transparent 62%);
  pointer-events: none;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 7px 12px;
  color: var(--amber-400);
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(251, 191, 36, 0.32);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.hero-text {
  max-width: 700px;
  margin: 0 0 24px;
  color: var(--slate-200);
  font-size: clamp(16px, 2vw, 21px);
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.meta-row {
  margin-bottom: 24px;
}

.badge,
.soft-badge,
.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.badge {
  color: var(--white);
  background: var(--amber-500);
}

.soft-badge {
  color: var(--slate-600);
  background: var(--slate-100);
}

.hero .soft-badge {
  color: var(--white);
  background: rgba(51, 65, 85, 0.82);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--white);
  background: var(--amber-500);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.28);
}

.btn-primary:hover {
  background: var(--amber-600);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(245, 158, 11, 0.34);
}

.btn-ghost {
  color: var(--white);
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(226, 232, 240, 0.24);
}

.btn-ghost:hover {
  background: rgba(30, 41, 59, 0.92);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(-50%);
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.04);
}

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

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.page-hero {
  color: var(--white);
  background: linear-gradient(90deg, var(--slate-900), var(--slate-700), var(--slate-900));
  padding: 54px 0;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--slate-300);
  font-size: 18px;
}

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

.section-stack {
  display: grid;
  gap: 74px;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--slate-800);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.section-title::before {
  content: "";
  width: 6px;
  height: 34px;
  background: var(--amber-500);
  border-radius: 999px;
}

.section-desc {
  margin: 8px 0 0;
  color: var(--slate-500);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-700);
  font-weight: 850;
}

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

.featured-card {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-900);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transform: translateZ(0);
}

.featured-card img,
.poster-wrap img,
.wide-thumb img,
.reco-thumb img,
.rank-thumb img,
.detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover img,
.movie-card:hover img,
.list-card:hover img,
.recommend-card:hover img,
.ranking-card:hover img {
  transform: scale(1.1);
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.25), transparent);
}

.featured-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 24px;
}

.featured-info h3,
.movie-info h3,
.list-info h3,
.recommend-card h3,
.ranking-card h3 {
  margin: 0;
  font-weight: 850;
}

.featured-info h3 {
  margin: 10px 0 8px;
  font-size: 25px;
  line-height: 1.18;
}

.featured-info p,
.movie-info p,
.list-info p,
.recommend-card p,
.ranking-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.featured-info p,
.movie-info p,
.recommend-card p {
  -webkit-line-clamp: 2;
}

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

.movie-card {
  display: block;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--slate-200);
}

.year-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 8px;
  color: var(--white);
  background: rgba(2, 6, 23, 0.72);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.play-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: var(--white);
  background: rgba(245, 158, 11, 0.95);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.movie-card:hover .play-chip {
  opacity: 1;
  transform: translateY(0);
}

.movie-info {
  padding: 15px;
}

.movie-info h3 {
  display: -webkit-box;
  min-height: 44px;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--slate-800);
  font-size: 16px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-info h3 {
  color: var(--amber-600);
}

.movie-info p {
  min-height: 42px;
  margin: 0 0 12px;
  color: var(--slate-500);
  font-size: 13px;
  -webkit-line-clamp: 2;
}

.tag-row {
  gap: 7px;
}

.tag {
  display: inline-flex;
  max-width: 100%;
  padding: 4px 7px;
  overflow: hidden;
  color: var(--slate-600);
  background: var(--slate-100);
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.update-panel {
  padding: 34px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  border-radius: var(--radius-2xl);
}

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

.list-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.list-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.wide-thumb {
  flex: 0 0 140px;
  width: 140px;
  height: 86px;
  overflow: hidden;
  background: var(--slate-200);
  border-radius: 13px;
}

.list-info {
  min-width: 0;
  flex: 1;
}

.list-info h3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
  color: var(--slate-800);
}

.list-info p {
  margin: 0 0 8px;
  color: var(--slate-500);
  font-size: 14px;
  -webkit-line-clamp: 2;
}

.horizontal-scroll {
  overflow-x: auto;
  padding: 3px 0 18px;
}

.horizontal-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

.recommend-card {
  width: 260px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recommend-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.reco-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--slate-200);
}

.reco-body {
  padding: 15px;
}

.reco-body h3 {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: var(--slate-800);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.category-card {
  display: grid;
  min-height: 210px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.category-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  border-radius: 16px;
  font-weight: 950;
}

.category-card h2,
.category-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.category-card p {
  margin: 0;
  color: var(--slate-300);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 180px));
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.filter-input,
.filter-select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
}

.empty-state {
  display: none;
  padding: 42px;
  color: var(--slate-500);
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

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

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.ranking-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.rank-index {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  border-radius: 14px;
  font-weight: 950;
}

.rank-thumb {
  flex: 0 0 92px;
  width: 92px;
  height: 126px;
  overflow: hidden;
  background: var(--slate-200);
  border-radius: 14px;
}

.ranking-card h3 {
  display: -webkit-box;
  overflow: hidden;
  color: var(--slate-800);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ranking-card p {
  margin: 8px 0 10px;
  color: var(--slate-500);
  font-size: 13px;
  -webkit-line-clamp: 2;
}

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

.player-card {
  overflow: hidden;
  background: var(--slate-900);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--slate-950);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(2, 6, 23, 0.35);
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}

.play-overlay:hover {
  background: rgba(2, 6, 23, 0.18);
}

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

.play-button {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: var(--white);
  background: var(--amber-500);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.38);
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-overlay:hover .play-button {
  background: var(--amber-600);
  transform: scale(1.06);
}

.content-card,
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
}

.content-card {
  margin-top: 26px;
  padding: 30px;
}

.content-card h1 {
  margin: 0 0 14px;
  color: var(--slate-800);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.content-card h2,
.sidebar-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 12px;
  color: var(--slate-800);
  font-size: 22px;
  font-weight: 900;
}

.content-card h2::before,
.sidebar-card h2::before {
  content: "";
  width: 5px;
  height: 26px;
  background: var(--amber-500);
  border-radius: 999px;
}

.content-card p {
  margin: 0 0 12px;
  color: var(--slate-600);
}

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

.breadcrumb a:hover {
  color: var(--amber-400);
}

.sidebar-card {
  position: sticky;
  top: 100px;
  padding: 20px;
}

.detail-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--slate-200);
  border-radius: 18px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-100);
  font-size: 14px;
}

.info-row strong {
  color: var(--slate-800);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.site-footer {
  margin-top: 60px;
  color: var(--slate-300);
  background: var(--slate-900);
}

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

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer p,
.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li {
  list-style: none;
  margin-top: 8px;
}

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

.footer-bottom {
  padding: 18px 0;
  color: var(--slate-400);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 14px;
}

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

  .icon-button {
    display: inline-grid;
  }

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

  .sidebar-card {
    position: static;
  }

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

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

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

  .header-inner {
    min-height: 68px;
  }

  .brand-title {
    font-size: 20px;
  }

  .brand-subtitle {
    display: none;
  }

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

  .hero-content {
    padding: 34px 0 62px;
  }

  .hero-arrow {
    display: none;
  }

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

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

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

  .movie-info {
    padding: 12px;
  }

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

  .wide-thumb {
    flex-basis: 106px;
    width: 106px;
    height: 72px;
  }

  .list-card {
    gap: 12px;
  }

  .update-panel,
  .content-card {
    padding: 20px;
  }

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