:root {
  --site-bg: #fff7ed;
  --paper: #ffffff;
  --paper-soft: #fffaf4;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #fed7aa;
  --primary: #f97316;
  --primary-dark: #ea580c;
  --amber: #f59e0b;
  --shadow: 0 24px 70px rgba(234, 88, 12, 0.16);
  --soft-shadow: 0 16px 45px rgba(17, 24, 39, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(251, 146, 60, 0.20), transparent 28rem),
    radial-gradient(circle at 92% 6%, rgba(245, 158, 11, 0.16), transparent 26rem),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fffaf4 100%);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.92);
  border-bottom: 1px solid rgba(254, 215, 170, 0.9);
  box-shadow: 0 10px 35px rgba(234, 88, 12, 0.10);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

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

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--primary));
  box-shadow: 0 12px 25px rgba(249, 115, 22, 0.35);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: translateY(-2px) scale(1.05);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong,
.footer-logo strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  background: linear-gradient(90deg, #b45309, var(--primary-dark), #d97706);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

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

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(320px, 28vw);
  padding: 6px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.nav-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 7px 8px;
  color: var(--text);
  background: transparent;
}

.nav-search button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--amber));
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: #ffedd5;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary-dark);
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 54px 0 72px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 237, 213, 0.9), rgba(255, 247, 237, 0.3)),
    radial-gradient(circle at 84% 12%, rgba(249, 115, 22, 0.22), transparent 32rem);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: linear-gradient(90deg, #ffedd5, #fef3c7);
  font-size: 14px;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #b45309, var(--primary-dark), #d97706);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy h1 strong {
  display: block;
  color: #111827;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--amber));
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
}

.btn-soft {
  color: var(--primary-dark);
  background: #ffffff;
  border-color: #fed7aa;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.20);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-stats span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.hero-stats strong {
  display: block;
  color: var(--primary-dark);
  font-size: 24px;
  line-height: 1;
}

.hero-feature {
  position: relative;
  min-height: 520px;
}

.hero-feature::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(245, 158, 11, 0.12));
  filter: blur(18px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.featured-card {
  position: relative;
  display: block;
  height: 500px;
  overflow: hidden;
  border-radius: 32px;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--shadow);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.7s ease;
}

.featured-card:hover img {
  transform: scale(1.08);
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.38) 36%, rgba(17, 24, 39, 0.88));
}

.featured-copy {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 12px;
  padding: 30px;
}

.featured-copy h2,
.featured-copy h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.1;
}

.featured-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

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

.featured-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  font-size: 12px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  z-index: 4;
  left: 30px;
  top: 30px;
  display: flex;
  gap: 8px;
}

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

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

.section {
  padding: 64px 0;
}

.section-soft {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 213, 0.64));
}

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

.section-title {
  display: grid;
  gap: 5px;
}

.section-title h2,
.page-banner h1,
.detail-title {
  margin: 0;
  color: #111827;
  letter-spacing: -0.04em;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.section-title p,
.page-banner p {
  margin: 0;
  color: var(--muted);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(254, 215, 170, 0.95);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 26px 60px rgba(234, 88, 12, 0.16);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  background: linear-gradient(135deg, #fed7aa, #ffedd5);
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(17, 24, 39, 0.74));
  opacity: 0.75;
}

.poster-play {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.94);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  z-index: 3;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--amber));
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.25);
}

.movie-card-body {
  display: grid;
  gap: 9px;
  padding: 15px;
}

.movie-card h3 {
  margin: 0;
  color: #111827;
  font-size: 18px;
  line-height: 1.3;
}

.movie-card h3 a:hover,
.ranking-copy h3 a:hover {
  color: var(--primary-dark);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9ca3af;
  font-size: 12px;
}

.movie-meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fff7ed;
}

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

.tag-row span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

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

.category-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(254, 215, 170, 0.9);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ffffff, #fff7ed);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(234, 88, 12, 0.14);
}

.category-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
}

.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--amber));
  font-size: 20px;
  font-weight: 900;
}

.category-card h3 {
  margin: 0;
  font-size: 22px;
}

.category-card p,
.category-card small {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(234, 88, 12, 0.94), rgba(245, 158, 11, 0.88)),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.22), transparent 28rem);
}

.page-banner h1 {
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(34px, 6vw, 58px);
}

.page-banner p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.page-banner .eyebrow {
  color: #9a3412;
  background: rgba(255, 255, 255, 0.82);
}

.search-panel {
  display: grid;
  gap: 16px;
  margin: 34px 0;
  padding: 20px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.search-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 2px solid #fed7aa;
  border-radius: 16px;
  outline: 0;
  color: var(--text);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-panel input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-pill {
  border: 2px solid #fed7aa;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  color: #4b5563;
  background: #ffffff;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, var(--primary), var(--amber));
  transform: translateY(-1px);
}

.filter-pill span {
  opacity: 0.72;
}

.result-line {
  margin: 0;
  color: var(--muted);
}

.result-line strong {
  color: var(--primary-dark);
}

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

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.ranking-thumb {
  overflow: hidden;
  border-radius: 16px;
  background: #ffedd5;
}

.ranking-thumb img {
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: cover;
}

.ranking-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.ranking-num {
  width: fit-content;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.ranking-copy h3,
.ranking-copy p {
  margin: 0;
}

.ranking-copy p {
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0;
  color: #ffffff;
  background: #111827;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.38;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(1.08);
  transform: scale(1.05);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.68), rgba(17, 24, 39, 0.92)),
    linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.18));
}

.detail-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: #ffedd5;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

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

.detail-copy {
  display: grid;
  gap: 18px;
}

.detail-title {
  color: #ffffff;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.06;
}

.detail-intro {
  max-width: 880px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.player-section {
  padding: 46px 0 34px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 85px rgba(17, 24, 39, 0.22);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.20), rgba(0, 0, 0, 0.54));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-shell.is-playing .player-cover,
.player-shell.is-ready .player-cover {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--amber));
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.38);
  font-size: 24px;
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.52);
  font-size: 13px;
  pointer-events: none;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding-bottom: 36px;
}

.content-card,
.side-card {
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.content-card {
  padding: 28px;
}

.content-card h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #111827;
}

.content-card p {
  margin: 0 0 20px;
  color: #4b5563;
  font-size: 16px;
}

.info-table {
  display: grid;
  gap: 10px;
}

.info-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #fed7aa;
}

.info-row strong {
  color: #9a3412;
}

.side-card {
  padding: 20px;
  height: fit-content;
}

.side-links {
  display: grid;
  gap: 10px;
}

.side-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #fff7ed;
  color: #4b5563;
  font-weight: 700;
}

.side-links a:hover {
  color: var(--primary-dark);
  background: #ffedd5;
}

.related-section {
  padding: 24px 0 70px;
}

.empty-state {
  display: none;
  padding: 56px 20px;
  text-align: center;
  border: 1px dashed #fed7aa;
  border-radius: var(--radius-md);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
}

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

.site-footer {
  border-top: 1px solid #fed7aa;
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
}

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

.footer-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #111827;
}

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

.footer-links a {
  color: #6b7280;
}

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

.footer-bottom {
  padding: 18px 16px 28px;
  color: #9a3412;
  text-align: center;
  font-size: 14px;
}

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

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

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

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

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 68px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-section {
    padding: 36px 0 46px;
  }

  .hero-grid {
    gap: 28px;
  }

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

  .hero-feature {
    min-height: 430px;
  }

  .featured-card {
    height: 410px;
  }

  .section {
    padding: 44px 0;
  }

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

  .card-grid,
  .card-grid--compact,
  .category-grid,
  .ranking-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ranking-item {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .detail-layout {
    gap: 22px;
  }

  .detail-hero {
    padding: 36px 0;
  }

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

  .content-card {
    padding: 20px;
  }

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