:root {
  --bg: #f9fafb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --amber: #f59e0b;
  --yellow: #facc15;
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
  --soft-shadow: 0 10px 25px rgba(31, 41, 55, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 237, 0.96));
  border-bottom: 1px solid rgba(251, 146, 60, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #111827;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.32);
  transition: transform 0.25s ease;
}

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

.brand-name {
  font-size: 22px;
  letter-spacing: 0.02em;
}

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

.nav-link {
  padding: 10px 15px;
  border-radius: 14px;
  color: #374151;
  font-weight: 650;
  transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--orange-dark);
  background: #fff7ed;
}

.nav-pill {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.25);
}

.nav-pill:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  cursor: pointer;
}

.mobile-nav {
  display: none;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 16px;
  gap: 10px;
  flex-wrap: wrap;
}

.mobile-nav a {
  padding: 10px 14px;
  border-radius: 12px;
  color: #374151;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.mobile-nav.is-open {
  display: flex;
}

.hero-section {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5 0%, #fff7ed 42%, #fef3c7 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}

.glow-one {
  width: 190px;
  height: 190px;
  top: 54px;
  left: 8%;
  background: #fb923c;
}

.glow-two {
  width: 240px;
  height: 240px;
  right: 8%;
  bottom: 30px;
  background: #facc15;
}

.glow-three {
  width: 180px;
  height: 180px;
  left: 52%;
  top: 28%;
  background: #fdba74;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  min-height: 540px;
  margin: 0 auto;
  padding: 46px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 660px;
  margin: 0 0 26px;
  color: #4b5563;
  font-size: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-search {
  width: min(100%, 640px);
  display: flex;
  gap: 12px;
  padding: 8px;
  margin-bottom: 22px;
  border: 1px solid rgba(251, 146, 60, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 18px;
  border-radius: 999px;
  background: transparent;
}

.hero-search button,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-search button,
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.28);
}

.btn-secondary {
  color: #374151;
  background: #ffffff;
  border: 1px solid var(--line);
}

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

.btn-primary:hover,
.btn-secondary:hover,
.hero-search button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hero-showcase {
  position: relative;
  min-height: 450px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 30px;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  pointer-events: none;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  transition: all 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.12) 55%, rgba(255, 255, 255, 0));
}

.hero-slide-content {
  position: relative;
  z-index: 1;
  display: block;
  padding: 28px;
  color: #ffffff;
}

.hero-slide-content strong {
  display: block;
  margin: 8px 0;
  font-size: 28px;
  line-height: 1.18;
}

.hero-slide-content em {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #fff7ed;
  background: rgba(249, 115, 22, 0.82);
}

.hero-dots {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

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

.hero-dot.is-active {
  width: 28px;
  background: #ffffff;
}

.content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
}

.amber-section {
  max-width: none;
  padding-left: max(20px, calc((100vw - 1180px) / 2 + 20px));
  padding-right: max(20px, calc((100vw - 1180px) / 2 + 20px));
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 6px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.category-card,
.collection-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  color: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: all 0.25s ease;
}

.collection-card {
  min-height: 260px;
}

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

.category-card::after,
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.48), rgba(15, 23, 42, 0.08));
}

.category-card > *,
.collection-card > * {
  position: relative;
  z-index: 1;
}

.category-card:hover,
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.category-card:hover img,
.collection-card:hover img {
  transform: scale(1.08);
}

.category-icon,
.collection-icon {
  display: block;
  margin-bottom: 10px;
  font-size: 34px;
}

.category-card strong,
.collection-card h2 {
  display: block;
  margin: 0 0 8px;
  font-size: 20px;
}

.category-card em,
.collection-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-style: normal;
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.tone-orange { background: linear-gradient(135deg, #fb923c, #f97316); }
.tone-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
.tone-yellow { background: linear-gradient(135deg, #eab308, #ca8a04); }
.tone-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.tone-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.tone-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.tone-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.tone-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
.tone-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.tone-rose { background: linear-gradient(135deg, #fb7185, #e11d48); }

.toolbar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.sticky-toolbar {
  position: sticky;
  top: 86px;
  z-index: 5;
}

.toolbar-card input,
.toolbar-card select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  outline: 0;
  color: var(--text);
  background: #ffffff;
}

.toolbar-card input {
  flex: 1;
  min-width: 160px;
}

.toolbar-card input:focus,
.toolbar-card select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.toolbar-card span {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: all 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #fef3c7);
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.55), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: all 0.25s ease;
}

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

.corner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.72);
}

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

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 50px;
  color: #111827;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.25s ease;
}

.movie-title:hover {
  color: var(--orange-dark);
}

.movie-card-body p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 44px;
  margin: 9px 0 14px;
  color: var(--muted);
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  color: #9a3412;
  font-size: 12px;
  font-weight: 700;
  background: #ffedd5;
}

.compact-card {
  display: grid;
  grid-template-columns: 44% 1fr;
}

.compact-card .poster-wrap {
  height: 100%;
  aspect-ratio: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 96px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: all 0.25s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.rank-number {
  color: var(--orange-dark);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-row img {
  width: 96px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
}

.rank-info strong {
  display: block;
  overflow: hidden;
  color: #111827;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-arrow {
  color: var(--orange);
  font-size: 28px;
}

.promo-panel,
.side-card,
.detail-card,
.quick-index {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.promo-panel {
  position: sticky;
  top: 92px;
  padding: 30px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
  color: #ffffff;
}

.promo-panel span {
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.promo-panel h2 {
  margin: 12px 0;
  font-size: 30px;
  line-height: 1.15;
}

.promo-panel p {
  opacity: 0.9;
}

.promo-panel .btn-primary {
  color: var(--orange-dark);
  background: #ffffff;
}

.page-hero {
  padding: 76px 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

.page-hero > div {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}

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

.page-hero .eyebrow {
  color: #fffbeb;
}

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

.quick-index {
  padding: 30px;
}

.quick-index h2 {
  margin: 0 0 16px;
}

.quick-index div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-index a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #9a3412;
  font-weight: 800;
  background: #ffedd5;
  transition: all 0.25s ease;
}

.quick-index a:hover {
  color: #ffffff;
  background: var(--orange);
}

.detail-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 70px;
}

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

.breadcrumb a:hover {
  color: var(--orange-dark);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #020617;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

.player-shell video,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.player-shell video {
  display: block;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: #ffffff;
  background: #020617;
  cursor: pointer;
}

.player-cover img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.64;
  transition: transform 0.35s ease;
}

.player-cover:hover img {
  transform: scale(1.04);
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.18), rgba(2, 6, 23, 0.78));
}

.player-play {
  position: relative;
  z-index: 1;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 110px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 34px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.42);
}

.player-cover strong {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.2;
  text-align: left;
}

.player-cover.is-hidden {
  display: none;
}

.player-message {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  padding: 12px 18px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(220, 38, 38, 0.88);
  transform: translate(-50%, -50%);
}

.detail-card {
  margin-top: 24px;
  padding: 28px;
}

.detail-title-row span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: var(--orange);
}

.detail-title-row h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.detail-meta,
.detail-actions,
.tag-list,
.prev-next {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-meta {
  margin: 18px 0 20px;
}

.detail-meta span,
.tag-list span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-weight: 700;
  font-size: 14px;
}

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

.detail-card h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.detail-card p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 17px;
}

.lead-text {
  color: #111827 !important;
  font-weight: 700;
}

.detail-card blockquote {
  margin: 0;
  padding: 22px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  color: #4b5563;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.detail-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 20px;
}

.side-card {
  padding: 20px;
}

.cover-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
}

.cover-card h2,
.side-card h2 {
  margin: 14px 0 8px;
}

.cover-card p {
  margin: 0;
  color: var(--muted);
}

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

.related-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.25s ease;
}

.related-item:hover {
  background: #fff7ed;
}

.related-item img {
  width: 92px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
}

.related-item strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.related-item em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.prev-next {
  margin-top: 18px;
}

.prev-next a {
  flex: 1;
  min-width: 240px;
  padding: 14px 18px;
  border-radius: 16px;
  color: #7c2d12;
  font-weight: 800;
  background: #ffedd5;
  transition: all 0.25s ease;
}

.prev-next a:hover {
  color: #ffffff;
  background: var(--orange);
}

.site-footer {
  color: #d1d5db;
  background: #111827;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.footer-inner p {
  max-width: 460px;
  margin: 0;
  color: #9ca3af;
}

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

.footer-links h3 {
  margin: 0 0 6px;
  color: #ffffff;
}

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

.footer-bottom {
  padding: 18px 20px;
  text-align: center;
  color: #9ca3af;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 1080px) {
  .hero-inner,
  .split-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 380px;
  }

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

  .promo-panel,
  .detail-side {
    position: static;
  }
}

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

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

  .brand-name {
    font-size: 18px;
  }

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

  .hero-inner {
    padding-top: 34px;
    gap: 28px;
  }

  .hero-search,
  .toolbar-card {
    align-items: stretch;
    flex-direction: column;
    border-radius: 22px;
  }

  .hero-search button,
  .toolbar-card input,
  .toolbar-card select {
    width: 100%;
  }

  .hero-showcase {
    min-height: 360px;
  }

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

  .compact-card {
    display: block;
  }

  .rank-row {
    grid-template-columns: 42px 78px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .rank-row img {
    width: 78px;
    height: 54px;
  }

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

@media (max-width: 520px) {
  .header-inner {
    height: 62px;
    padding: 0 14px;
  }

  .content-section,
  .detail-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-inner,
  .page-hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .movie-grid,
  .latest-grid,
  .category-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 330px;
  }

  .hero-slide-content {
    padding: 22px;
  }

  .detail-card {
    padding: 22px;
  }

  .player-play {
    width: 68px;
    height: 68px;
    font-size: 28px;
    margin-bottom: 86px;
  }
}
