:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --green-50: #f0fdf4;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --blue-700: #1d4ed8;
  --purple-700: #7e22ce;
  --shadow-sm: 0 8px 24px rgba(41, 37, 36, 0.08);
  --shadow-md: 0 16px 40px rgba(41, 37, 36, 0.14);
  --shadow-lg: 0 28px 80px rgba(41, 37, 36, 0.22);
  --radius-lg: 18px;
  --radius-xl: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--stone-800);
  background: linear-gradient(180deg, var(--stone-50) 0%, rgba(255, 251, 235, 0.72) 48%, var(--stone-100) 100%);
}

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: 100;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.96), rgba(250, 250, 249, 0.94), rgba(240, 253, 244, 0.96));
  border-bottom: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: 0 8px 28px rgba(41, 37, 36, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1280px;
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark,
.footer-logo span {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-600), var(--green-700));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.24);
}

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

.brand-mark {
  transition: transform 0.28s ease;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--amber-800), var(--green-800));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.mobile-link {
  position: relative;
  color: var(--stone-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--amber-600);
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--amber-700);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-search,
.mobile-search,
.intro-search,
.page-search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(217, 119, 6, 0.28);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.header-search input,
.mobile-search input,
.intro-search input,
.page-search input {
  border: 0;
  outline: 0;
  min-width: 210px;
  padding: 10px 12px 10px 16px;
  background: transparent;
  color: var(--stone-800);
}

.header-search button,
.mobile-search button,
.intro-search button,
.page-search button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  color: #fff;
  background: var(--amber-600);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-search button:hover,
.mobile-search button:hover,
.intro-search button:hover,
.page-search button:hover {
  background: var(--amber-700);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--stone-700);
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  border-top: 1px solid rgba(217, 119, 6, 0.18);
  padding: 16px 24px 22px;
}

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

.hero-slider {
  position: relative;
  height: min(76vh, 720px);
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--stone-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1.12);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(245, 158, 11, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.62) 45%, rgba(28, 25, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.08) 54%);
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 92px;
  width: min(680px, calc(100vw - 48px));
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--amber-200);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content h2 {
  margin: 0 0 16px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
}

.hero-desc {
  margin: 0 0 22px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #fff;
  background: var(--amber-600);
  box-shadow: 0 16px 34px rgba(217, 119, 6, 0.34);
}

.primary-btn:hover {
  background: var(--amber-700);
  transform: translateY(-2px);
}

.ghost-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(0, 0, 0, 0.34);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.54);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

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

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

.intro-band,
.page-main,
.content-section {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.intro-band {
  margin-top: -48px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.94), rgba(240, 253, 244, 0.92));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(217, 119, 6, 0.16);
}

.intro-band h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}

.intro-band p,
.page-hero p {
  margin: 0;
  color: var(--stone-600);
  line-height: 1.8;
}

.content-section {
  margin-top: 58px;
}

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

.section-title span {
  width: 7px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--amber-600), var(--green-700));
}

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

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

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

.wide-list {
  display: grid;
  gap: 16px;
}

.movie-card {
  min-width: 0;
}

.movie-card-feature {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.movie-card-feature .movie-poster {
  height: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: inherit;
}

.movie-card-feature .movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.12));
}

.movie-card-feature .movie-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
  color: #fff;
}

.movie-card-feature h3 a {
  color: #fff;
  font-size: 26px;
}

.movie-card-feature .movie-meta {
  color: rgba(255, 255, 255, 0.8);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--stone-200), var(--amber-100));
  box-shadow: var(--shadow-sm);
}

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

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

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(217, 119, 6, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-600), var(--green-700));
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.movie-card h3 a {
  color: var(--stone-800);
  transition: color 0.2s ease;
}

.movie-card h3 a:hover,
.movie-card:hover h3 a {
  color: var(--amber-700);
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--stone-600);
  font-size: 14px;
}

.movie-meta span + span::before {
  content: "·";
  margin-right: 7px;
  color: var(--stone-300);
}

.movie-card-wide,
.movie-card-ranking {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card-wide:hover,
.movie-card-ranking:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.movie-card-wide .movie-poster,
.movie-card-ranking .movie-poster {
  margin-bottom: 0;
  border-radius: 14px;
}

.movie-card-wide p,
.movie-card-ranking p {
  margin: 10px 0 0;
  color: var(--stone-600);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.ranking-panel {
  position: sticky;
  top: 104px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #fff, rgba(255, 251, 235, 0.82));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.panel-head h2 {
  margin: 0;
  font-size: 24px;
}

.panel-head a {
  color: var(--amber-700);
  font-weight: 800;
}

.ranking-list,
.rank-table {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-list li + li {
  border-top: 1px solid var(--stone-200);
}

.ranking-list a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 13px 0;
  align-items: center;
}

.ranking-list span,
.rank-no {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  color: var(--amber-800);
  font-weight: 900;
}

.ranking-list strong {
  color: var(--stone-800);
  line-height: 1.35;
}

.ranking-list em {
  grid-column: 2;
  color: var(--stone-500);
  font-size: 13px;
  font-style: normal;
}

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

.category-tile,
.category-card-large a {
  position: relative;
  display: block;
  min-height: 152px;
  padding: 22px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(240, 253, 244, 0.92));
  border: 1px solid rgba(217, 119, 6, 0.16);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile::before,
.category-card-large a::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.11);
}

.category-tile:hover,
.category-card-large a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-tile span,
.category-card-large span {
  position: relative;
  color: var(--amber-700);
  font-weight: 900;
}

.category-tile p,
.category-card-large p {
  position: relative;
  margin: 12px 0 0;
  color: var(--stone-600);
  line-height: 1.7;
}

.category-card-large h2 {
  position: relative;
  margin: 10px 0 0;
  font-size: 26px;
}

.page-main {
  padding-top: 38px;
  padding-bottom: 30px;
}

.page-hero {
  padding: 46px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 18%, rgba(22, 163, 74, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(240, 253, 244, 0.88));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(217, 119, 6, 0.14);
}

.small-hero h1,
.category-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.05em;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--stone-600);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--amber-700);
  font-weight: 700;
}

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

.filter-pill {
  border: 1px solid rgba(217, 119, 6, 0.24);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--stone-700);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.filter-pill:hover,
.filter-pill.is-active {
  color: #fff;
  background: var(--amber-600);
  transform: translateY(-1px);
}

.search-board {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(140px, 180px));
  gap: 12px;
}

.search-board input,
.search-board select {
  width: 100%;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 999px;
  padding: 13px 16px;
  color: var(--stone-700);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
}

.search-board input:focus,
.search-board select:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

.search-status {
  min-height: 26px;
  margin-top: 16px !important;
  color: var(--amber-800) !important;
  font-weight: 700;
}

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

.rank-row a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rank-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: var(--stone-500);
  font-style: normal;
  font-size: 14px;
}

.player-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(217, 119, 6, 0.12);
}

.player-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

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

.player-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.player-overlay:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.player-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.24), transparent 24%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.player-overlay.is-hidden {
  display: none;
  pointer-events: none;
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  color: #fff;
  background: var(--amber-600);
  font-size: 34px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.movie-detail-body {
  padding: 32px;
}

.movie-detail-body h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.one-line {
  margin: 0 0 26px;
  color: var(--stone-600);
  font-size: 19px;
  line-height: 1.8;
}

.detail-tags span {
  color: var(--stone-700);
  background: var(--amber-100);
  border-color: rgba(217, 119, 6, 0.18);
  backdrop-filter: none;
}

.detail-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: start;
}

.detail-cover {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

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

.detail-info dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.detail-info dl div {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-50), var(--green-50));
  border: 1px solid rgba(217, 119, 6, 0.1);
}

.detail-info dt {
  margin-bottom: 6px;
  color: var(--stone-500);
  font-size: 13px;
}

.detail-info dd {
  margin: 0;
  color: var(--stone-800);
  font-weight: 800;
}

.detail-info section {
  padding-top: 22px;
  border-top: 1px solid var(--stone-200);
}

.detail-info section + section {
  margin-top: 22px;
}

.detail-info h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.detail-info p {
  margin: 0;
  color: var(--stone-700);
  line-height: 1.92;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  margin-top: 80px;
  background: linear-gradient(180deg, var(--stone-100), var(--stone-200));
  border-top: 1px solid rgba(217, 119, 6, 0.14);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--stone-800);
  font-size: 18px;
}

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

.footer-logo span {
  width: 34px;
  height: 34px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--stone-600);
  line-height: 1.8;
}

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

.footer-grid a:hover {
  color: var(--amber-700);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--stone-300);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

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

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .ranking-panel {
    position: static;
  }

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

  .detail-info dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-slider {
    min-height: 560px;
    height: 68vh;
  }

  .hero-content {
    bottom: 78px;
  }

  .hero-arrow {
    display: none;
  }

  .intro-band {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .intro-search,
  .page-search {
    width: 100%;
  }

  .intro-search input,
  .page-search input {
    min-width: 0;
    width: 100%;
  }

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

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

  .search-board {
    grid-template-columns: 1fr;
  }

  .rank-row a {
    grid-template-columns: 38px 1fr;
  }

  .rank-row em {
    grid-column: 2;
  }

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

  .detail-cover {
    max-width: 280px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 66px;
    padding: 0 16px;
  }

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

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

  .hero-slider {
    min-height: 540px;
  }

  .hero-content {
    left: 18px;
    width: calc(100vw - 36px);
  }

  .hero-content h2 {
    font-size: 38px;
  }

  .intro-band,
  .page-main,
  .content-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero {
    padding: 30px 20px;
  }

  .movie-grid {
    gap: 14px;
  }

  .movie-card h3 {
    font-size: 15px;
  }

  .movie-card-wide,
  .movie-card-ranking {
    grid-template-columns: 92px 1fr;
    padding: 12px;
  }

  .movie-detail-body {
    padding: 22px 16px;
  }

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

  .footer-bottom {
    display: block;
  }
}
