:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-900: #7c2d12;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(120, 53, 15, 0.12);
  --shadow-card: 0 8px 22px rgba(31, 41, 55, 0.12);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--amber-50), #ffffff 420px);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  box-shadow: 0 8px 30px rgba(146, 64, 14, 0.12);
  backdrop-filter: blur(12px);
}

.nav-bar {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-name {
  font-size: 1.45rem;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-600));
  -webkit-background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.35);
  font-size: 0.95rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.primary-nav a {
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--amber-600);
}

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

.nav-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  border: 2px solid var(--amber-200);
  border-radius: 999px;
  background: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.nav-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.18);
}

.nav-search button,
.mobile-search button,
.btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.nav-search button,
.mobile-search button,
.btn.primary {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.26);
}

.nav-search button,
.mobile-search button {
  padding: 10px 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.3);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.btn.ghost.amber {
  color: var(--amber-700);
  background: rgba(255, 251, 235, 0.9);
  border-color: var(--amber-200);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--amber-100);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--amber-200);
  padding: 14px 16px 18px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-panel nav a {
  font-weight: 700;
  color: var(--gray-700);
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
}

.hero-carousel {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: var(--gray-900);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 48%, rgba(0, 0, 0, 0.08));
}

.hero-content {
  color: var(--white);
  max-width: 720px;
}

.hero-kicker,
.page-hero span,
.cover-badge,
.featured-card span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--white);
  background: var(--amber-500);
  border-radius: 999px;
  padding: 5px 13px;
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-content h1 {
  margin: 16px 0 16px;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 680px;
  color: #f3f4f6;
  font-size: 1.08rem;
  margin: 0 0 18px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 22px;
}

.hero-tags span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.9rem;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

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

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -42px;
  position: relative;
  z-index: 5;
}

.quick-panel a {
  display: grid;
  gap: 6px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-panel a:hover,
.category-tile:hover,
.movie-card:hover,
.category-card:hover,
.ranking-row:hover {
  transform: translateY(-4px);
}

.quick-panel strong {
  color: var(--gray-900);
  font-size: 1.08rem;
}

.quick-panel span {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.section-block {
  margin-top: 56px;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--gray-600);
}

.section-heading a {
  flex: none;
  color: var(--amber-600);
  font-weight: 800;
}

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

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

.movie-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  box-shadow: 0 18px 42px rgba(31, 41, 55, 0.18);
}

.movie-card a {
  display: block;
  height: 100%;
}

.card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-100), var(--orange-500));
}

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

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

.cover-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.play-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.movie-card:hover .play-circle {
  opacity: 1;
  color: var(--white);
  background: var(--amber-500);
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0 0 9px;
  color: var(--gray-900);
  font-size: 1rem;
  line-height: 1.36;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body p {
  margin: 0 0 13px;
  min-height: 44px;
  color: var(--gray-600);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.82rem;
}

.card-meta span {
  border-radius: 999px;
  padding: 3px 8px;
  background: var(--gray-100);
}

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

.category-tile {
  position: relative;
  min-height: 190px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.76));
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.35s ease;
}

.category-tile span,
.category-tile strong {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.category-tile span {
  bottom: 58px;
  font-size: 1.18rem;
  font-weight: 900;
}

.category-tile strong {
  bottom: 18px;
  color: #fffbeb;
  font-weight: 500;
  font-size: 0.9rem;
}

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 24px;
}

.featured-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-900);
  box-shadow: var(--shadow-soft);
}

.featured-card a {
  position: relative;
  display: block;
  min-height: 440px;
  color: var(--white);
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.45s ease;
}

.featured-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82));
}

.featured-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.featured-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.12;
}

.featured-card p {
  color: #f3f4f6;
  margin: 0;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-item {
  display: grid;
  grid-template-columns: auto 76px 1fr;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.08);
}

.rank-list.slim .rank-item {
  grid-template-columns: 70px 1fr;
}

.rank-list.slim .rank-number {
  display: none;
}

.rank-number {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-weight: 900;
}

.rank-item img {
  width: 76px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.rank-info {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray-900);
}

.rank-info em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray-500);
  font-style: normal;
  font-size: 0.86rem;
}

.page-shell {
  padding-bottom: 28px;
}

.page-hero {
  margin-top: 34px;
  border-radius: var(--radius-xl);
  padding: clamp(34px, 6vw, 64px);
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.72), transparent 34%), linear-gradient(135deg, #92400e, #f97316 58%, #f59e0b);
  box-shadow: var(--shadow-soft);
}

.page-hero.small-hero,
.page-hero.category-hero {
  min-height: 250px;
}

.page-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff7ed;
}

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

.category-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card h2 {
  margin: 0 0 8px;
  color: var(--gray-900);
}

.category-card p {
  margin: 0;
  color: var(--gray-600);
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-samples a {
  color: var(--amber-700);
  background: var(--amber-100);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.86rem;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 180px;
  gap: 12px;
  margin-bottom: 22px;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 16px;
}

.empty-state {
  display: none;
  margin-top: 20px;
  padding: 24px;
  border-radius: var(--radius-lg);
  color: var(--gray-600);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.empty-state.show {
  display: block;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
}

.side-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  border-radius: var(--radius-lg);
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #fff7ed);
  box-shadow: var(--shadow-card);
}

.side-panel h2 {
  margin: 0 0 16px;
}

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

.ranking-row {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 56px 150px 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px;
}

.ranking-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  font-weight: 900;
}

.ranking-row img {
  width: 150px;
  height: 86px;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-body {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.ranking-body strong {
  color: var(--gray-900);
  font-size: 1.08rem;
}

.ranking-body em {
  color: var(--gray-600);
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-body small {
  color: var(--gray-500);
}

.detail-page {
  background: #ffffff;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--gray-900);
}

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  transform: scale(1.04);
  opacity: 0.48;
}

.detail-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.46)), linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
}

.detail-hero-inner {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  gap: 42px;
  color: var(--white);
  padding: 54px 0;
}

.detail-poster {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  background: var(--amber-100);
}

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

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: #fde68a;
  font-weight: 700;
}

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.detail-line {
  max-width: 760px;
  color: #f3f4f6;
  font-size: 1.08rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 6px 12px;
}

.player-section {
  scroll-margin-top: 92px;
}

.player-shell {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000000;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--white);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-overlay span {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding-left: 4px;
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 18px 50px rgba(249, 115, 22, 0.36);
}

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

.article-section {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.detail-article {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 5vw, 42px);
  background: linear-gradient(180deg, #ffffff, #fff7ed);
  box-shadow: var(--shadow-card);
}

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

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

.detail-article p {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.02rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--amber-100);
}

.info-list strong {
  color: var(--amber-700);
}

.site-footer {
  margin-top: 72px;
  color: #fffbeb;
  background: linear-gradient(90deg, #78350f, var(--orange-900));
}

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

.footer-brand {
  color: var(--white);
  font-size: 1.2rem;
}

.site-footer p {
  color: #fde68a;
  margin: 14px 0 0;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #fde68a;
  transition: color 0.25s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(253, 230, 138, 0.26);
  padding: 18px 16px;
  text-align: center;
  color: #fde68a;
  font-size: 0.92rem;
}

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

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

  .quick-panel,
  .movie-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-layout,
  .two-column,
  .detail-hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

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

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

  .nav-bar {
    height: 62px;
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero-carousel {
    height: 560px;
  }

  .hero-overlay {
    align-items: end;
    padding-bottom: 72px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
  }

  .quick-panel,
  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .filter-panel {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    margin-top: 18px;
  }

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

  .ranking-row a {
    grid-template-columns: 42px 92px 1fr;
    gap: 10px;
    padding: 10px;
  }

  .ranking-row img {
    width: 92px;
    height: 62px;
  }

  .ranking-body em {
    display: none;
  }

  .detail-hero,
  .detail-hero-inner {
    min-height: auto;
  }

  .detail-hero-inner {
    padding: 34px 0;
    gap: 26px;
  }

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

  .player-overlay span {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
  }

  .footer-grid {
    padding: 34px 0;
  }
}
