:root {
  color-scheme: light;
  --bg: #fffaf0;
  --surface: #ffffff;
  --soft: #fff7ed;
  --text: #1f2937;
  --muted: #6b7280;
  --line: rgba(245, 158, 11, 0.22);
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --secondary: #ea580c;
  --gold: #facc15;
  --shadow: 0 22px 48px rgba(146, 64, 14, 0.14);
  --shadow-soft: 0 12px 32px rgba(146, 64, 14, 0.10);
  --radius: 22px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: var(--max);
  height: 66px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 10px 26px rgba(234, 88, 12, 0.28);
}

.brand-text {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  color: #4b5563;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #92400e;
}

.mobile-nav {
  display: none;
  padding: 10px 22px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  color: var(--primary-dark);
  background: rgba(245, 158, 11, 0.12);
}

main,
.page-main {
  padding-top: 66px;
}

.hero-carousel {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 44%, #fef3c7 100%);
}

.hero-carousel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, 0));
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.48;
  animation: float-glow 9s ease-in-out infinite alternate;
}

.hero-glow.one {
  width: 280px;
  height: 280px;
  top: 16%;
  left: 7%;
  background: rgba(245, 158, 11, 0.24);
}

.hero-glow.two {
  width: 360px;
  height: 360px;
  right: -80px;
  bottom: 6%;
  background: rgba(234, 88, 12, 0.20);
  animation-delay: 1.5s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: 92vh;
  margin: 0 auto;
  padding: 64px 22px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 48px;
  animation: hero-fade 0.55s ease both;
}

.hero-slide.is-active {
  display: grid;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #92400e;
  background: rgba(245, 158, 11, 0.14);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  background: linear-gradient(90deg, #d97706, #ea580c, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: #4b5563;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
}

.hero-tags,
.tag-row,
.detail-tags,
.hot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-tags a,
.hot-tags a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #92400e;
  background: #fff7ed;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.primary-btn,
.ghost-btn,
.cta-band a,
.hero-search button,
.section-more,
.category-card em,
.category-overview-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn,
.cta-band a,
.hero-search button {
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 28px rgba(234, 88, 12, 0.24);
}

.ghost-btn {
  padding: 0 24px;
  color: var(--primary-dark);
  background: #ffffff;
  border: 2px solid rgba(245, 158, 11, 0.58);
}

.primary-btn:hover,
.ghost-btn:hover,
.cta-band a:hover,
.hero-search button:hover,
.section-more:hover,
.category-card:hover em,
.category-overview-card:hover em {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(146, 64, 14, 0.18);
}

.hero-poster {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 72px rgba(120, 53, 15, 0.26);
  transform: rotate(1.2deg);
}

.hero-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02) 62%);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-play,
.play-icon,
.player-start {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.90);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  font-size: 2.1rem;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-controls button {
  border: 0;
  cursor: pointer;
}

.hero-controls > button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #92400e;
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.6rem;
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(146, 64, 14, 0.26);
}

.hero-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.hero-search {
  max-width: 660px;
  margin-top: 24px;
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--text);
}

.content-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 22px;
}

.compact-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.soft-section {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

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

.section-head h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.1;
}

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

.section-more {
  flex: 0 0 auto;
  padding: 0 18px;
  color: var(--primary-dark);
  background: #fff7ed;
  border: 1px solid var(--line);
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  height: 250px;
  overflow: hidden;
  background: #fef3c7;
}

.movie-card.featured .poster-link {
  height: 360px;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.02) 68%);
  opacity: 0.72;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

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

.year-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.year-badge {
  left: 12px;
  bottom: 12px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.56);
}

.rank-badge {
  top: 12px;
  left: 12px;
  color: #78350f;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 9px;
}

.card-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  color: #92400e;
  background: rgba(245, 158, 11, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
}

.card-body h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--primary-dark);
}

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

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

.category-card,
.category-overview-card {
  display: block;
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.category-card:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #ffffff, #fff7ed);
}

.category-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
}

.category-card h2,
.category-overview-card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.category-card p,
.category-overview-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-card em,
.category-overview-card em {
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  font-style: normal;
  font-size: 0.86rem;
}

.category-samples {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  color: #92400e;
  font-size: 0.84rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
}

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

.compact-card {
  display: grid;
  grid-template-columns: auto 76px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.09);
  transition: transform 0.2s ease, background 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  background: #ffffff;
}

.compact-rank {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #78350f;
  background: #fde68a;
  font-weight: 900;
}

.compact-card img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  background: #fef3c7;
}

.compact-info {
  min-width: 0;
}

.compact-info strong,
.compact-info em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-info strong {
  color: #111827;
}

.compact-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

.cta-band {
  padding: 82px 22px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.cta-band p {
  margin: 0 0 28px;
  opacity: 0.92;
  font-size: 1.15rem;
}

.cta-band a {
  padding: 0 28px;
  color: var(--primary-dark);
  background: #ffffff;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 22px 58px;
  text-align: center;
  background: linear-gradient(135deg, #fff7ed, #fffbeb, #fef3c7);
}

.page-hero h1 {
  max-width: 850px;
  margin: 18px auto 14px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  background: linear-gradient(90deg, #d97706, #ea580c, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero p {
  max-width: 780px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 1.1rem;
}

.hot-tags {
  justify-content: center;
  max-width: 900px;
  margin: 26px auto 0;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(140px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-bar label {
  display: grid;
  gap: 6px;
}

.filter-bar span {
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 900;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(245, 158, 11, 0.30);
  border-radius: 13px;
  outline: 0;
  background: #fffaf0;
  color: var(--text);
}

.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.empty-result {
  margin: 40px 0;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  border-radius: var(--radius);
  background: #fff7ed;
}

.movie-card.is-hidden,
.compact-card.is-hidden {
  display: none;
}

.ranking-hero {
  padding-bottom: 84px;
}

.podium-grid {
  max-width: 940px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.podium-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border-radius: 28px;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.podium-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08));
}

.podium-card strong,
.podium-card em,
.podium-number {
  position: relative;
  z-index: 2;
}

.podium-card strong {
  font-size: 1.2rem;
}

.podium-card em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 0.9rem;
}

.podium-number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #78350f;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-weight: 900;
}

.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.watch-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 22px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.watch-main {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

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

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000000;
}

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

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

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(255, 255, 255, 0.52);
  font-size: 2rem;
}

.player-toolbar {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.player-shell:hover .player-toolbar,
.player-shell.is-playing .player-toolbar {
  opacity: 1;
  pointer-events: auto;
}

.player-toolbar button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.detail-article {
  margin-top: 24px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.detail-article h1 {
  margin: 18px 0 12px;
  color: #111827;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.lead-text {
  color: #4b5563;
  font-size: 1.12rem;
}

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

.detail-meta span {
  padding: 7px 10px;
  border-radius: 12px;
  color: #92400e;
  background: #fff7ed;
  font-weight: 800;
  font-size: 0.88rem;
}

.detail-article h2,
.detail-side h2,
.footer-column h2 {
  margin: 28px 0 10px;
  color: #111827;
  font-size: 1.28rem;
}

.detail-article p {
  margin: 0 0 16px;
  color: #374151;
}

.detail-side {
  position: sticky;
  top: 92px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff7ed, #ffffff);
  box-shadow: var(--shadow-soft);
}

.mini-list .compact-card {
  grid-template-columns: auto 64px 1fr;
}

.mini-list .compact-card img {
  width: 64px;
  height: 52px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #78350f, #9a3412);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(250, 204, 21, 0.18), transparent 34%);
}

.footer-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand p,
.footer-column a,
.footer-column span {
  color: #ffedd5;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-column h2 {
  margin-top: 0;
  color: #fde68a;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  position: relative;
  padding: 16px 22px 22px;
  text-align: center;
  color: #fed7aa;
  border-top: 1px solid rgba(255, 237, 213, 0.18);
}

@keyframes hero-fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-glow {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(28px, -22px, 0) rotate(8deg);
  }
}

@media (max-width: 1080px) {
  .movie-grid,
  .dense-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .split-section,
  .watch-layout {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

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

  .menu-button {
    display: block;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 390px;
  }

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

  .filter-search {
    grid-column: 1 / -1;
  }

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

@media (max-width: 620px) {
  .nav-wrap {
    padding: 0 16px;
  }

  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-search {
    border-radius: 20px;
    flex-direction: column;
    padding: 10px;
  }

  .hero-search input,
  .hero-search button {
    min-height: 46px;
  }

  .hero-copy h1 {
    font-size: 3.1rem;
  }

  .movie-grid,
  .featured-grid,
  .dense-grid,
  .ranking-grid,
  .category-grid,
  .category-overview-grid,
  .podium-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    display: grid;
  }

  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .watch-layout,
  .breadcrumb {
    padding-left: 16px;
    padding-right: 16px;
  }

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