:root {
  --canyon-50: #faf8f5;
  --canyon-100: #f5f0e8;
  --canyon-200: #e8dbc8;
  --canyon-300: #d9c3a3;
  --canyon-500: #b8895a;
  --canyon-700: #8a5c3f;
  --canyon-800: #6f4934;
  --canyon-900: #4b3124;
  --earth-600: #6d5b4a;
  --earth-700: #56483c;
  --earth-800: #3d3028;
  --earth-900: #2b211c;
  --forest-50: #f4f7f4;
  --forest-100: #e5eae5;
  --forest-600: #5c735f;
  --forest-700: #4a5e4d;
  --gold-100: #fff7e6;
  --gold-300: #ffd86f;
  --gold-400: #ffc94a;
  --gold-500: #ffb41e;
  --gold-600: #f09200;
  --sand-50: #fdfcfa;
  --sand-100: #faf7f0;
  --sand-200: #f5eedd;
  --sand-700: #b88a51;
  --shadow: 0 4px 6px -1px rgba(138, 92, 63, 0.1), 0 2px 4px -1px rgba(138, 92, 63, 0.06);
  --shadow-lg: 0 16px 36px rgba(75, 49, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--earth-800);
  background: linear-gradient(135deg, var(--canyon-50), #ffffff 45%, var(--sand-50));
}

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: 50;
  color: #ffffff;
  background: linear-gradient(90deg, var(--canyon-800), var(--earth-800));
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 180, 30, 0.32);
}

.brand-name {
  font-size: clamp(20px, 2vw, 26px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.nav-link,
.mobile-link {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.header-search {
  position: relative;
  width: min(270px, 24vw);
}

.header-search input,
.mobile-search input,
.search-page-form input,
.filter-control input,
.filter-control select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 11px 44px 11px 16px;
  transition: border 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.header-search input:focus,
.mobile-search input:focus {
  border-color: var(--gold-400);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 4px rgba(255, 201, 74, 0.18);
}

.header-search button {
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.menu-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
}

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

.mobile-search {
  display: flex;
  gap: 10px;
}

.mobile-search input {
  padding-right: 16px;
}

.mobile-search button,
.search-page-form button {
  border: 0;
  color: #ffffff;
  background: var(--gold-500);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}

.hero-carousel {
  position: relative;
  height: min(70vh, 620px);
  min-height: 500px;
  overflow: hidden;
  background: #000000;
}

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

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48) 45%, rgba(0, 0, 0, 0.16)), linear-gradient(90deg, rgba(43, 33, 28, 0.82), rgba(43, 33, 28, 0.14));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 92px;
  color: #ffffff;
}

.hero-kicker,
.page-hero span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 14px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-600));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-content h1,
.hero-content h2 {
  margin: 18px 0 12px;
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-movie-title {
  margin-top: 0 !important;
  font-size: clamp(28px, 4vw, 46px) !important;
}

.hero-content p {
  max-width: 780px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-tags,
.detail-meta,
.movie-meta,
.rank-info div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.detail-meta span,
.rank-info div span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.detail-meta span,
.rank-info div span {
  color: var(--earth-700);
  background: var(--sand-100);
}

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

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  box-shadow: 0 18px 34px rgba(240, 146, 0, 0.28);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.44);
  border-radius: 999px;
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 24px;
  transform: translateY(-50%);
}

.hero-next {
  right: 24px;
  transform: translateY(-50%);
}

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

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

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

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

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

.section-heading > div {
  position: relative;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.section-heading h2,
.page-hero h1,
.detail-content h1 {
  margin: 0;
  color: var(--canyon-900);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--earth-600);
  line-height: 1.75;
}

.section-more {
  color: var(--gold-600);
  font-weight: 800;
}

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

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

.horizontal-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x proximity;
}

.movie-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  color: var(--canyon-900);
  background: #ffffff;
  border: 1px solid rgba(232, 219, 200, 0.68);
  border-radius: 18px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-lg);
}

.poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--canyon-200), var(--sand-200));
}

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

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

.year-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.56);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.12));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-layer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #ffffff;
  background: var(--gold-500);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
}

.movie-card:hover .play-layer {
  opacity: 1;
}

.movie-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.movie-card-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--canyon-900);
  font-size: 17px;
  line-height: 1.42;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-card-body strong {
  color: var(--gold-600);
}

.movie-line {
  display: -webkit-box;
  overflow: hidden;
  min-height: 46px;
  color: var(--earth-600);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta {
  margin-top: auto;
  justify-content: space-between;
  color: var(--earth-600);
  font-size: 13px;
}

.movie-meta span:first-child {
  color: var(--forest-700);
  background: var(--forest-100);
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 700;
}

.movie-card-compact .movie-card-body {
  padding: 12px;
}

.movie-card-compact .movie-line {
  display: none;
}

.movie-card-compact .movie-meta span:nth-child(2) {
  display: none;
}

.category-zone {
  padding: 34px;
  background: linear-gradient(135deg, var(--forest-50), var(--canyon-50));
  border-radius: 26px;
}

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

.category-preview {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 219, 200, 0.72);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.category-preview-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.category-preview-title h3 {
  margin: 0;
  color: var(--canyon-900);
  font-size: 23px;
}

.category-preview-title a {
  color: var(--gold-600);
  font-weight: 800;
}

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

.ranking-zone {
  padding: 34px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--canyon-900), var(--earth-900));
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.ranking-zone .section-heading h2,
.ranking-zone .section-heading p {
  color: #ffffff;
}

.ranking-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-num {
  color: var(--gold-300);
  font-weight: 900;
}

.ranking-list a {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-list span:last-child {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.year-list {
  display: grid;
  gap: 38px;
}

.year-row {
  padding-left: 24px;
  border-left: 4px solid var(--gold-500);
}

.year-row:nth-child(2) {
  border-color: var(--canyon-500);
}

.year-row:nth-child(3) {
  border-color: var(--earth-600);
}

.year-row h3 {
  margin: 0 0 18px;
  color: var(--canyon-800);
  font-size: 26px;
}

.page-main {
  padding-top: 34px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 34px;
  padding: 46px;
  background: linear-gradient(135deg, rgba(255, 247, 230, 0.92), rgba(250, 248, 245, 0.96)), radial-gradient(circle at 80% 20%, rgba(255, 201, 74, 0.34), transparent 36%);
  border: 1px solid rgba(232, 219, 200, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.small-hero {
  padding-block: 42px;
}

.page-hero h1 {
  margin-top: 18px;
}

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

.category-tile {
  padding: 26px;
  background: #ffffff;
  border: 1px solid rgba(232, 219, 200, 0.82);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.category-tile h2 {
  margin: 0 0 12px;
  color: var(--canyon-900);
}

.category-tile p {
  margin: 0 0 16px;
  color: var(--earth-600);
  line-height: 1.72;
}

.category-links {
  display: grid;
  gap: 9px;
}

.category-links a {
  overflow: hidden;
  color: var(--gold-600);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-panel,
.search-page-panel {
  display: flex;
  gap: 16px;
  align-items: end;
  margin-bottom: 28px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(232, 219, 200, 0.82);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.filter-control {
  display: grid;
  flex: 1;
  gap: 8px;
}

.filter-control label {
  color: var(--canyon-800);
  font-weight: 800;
}

.filter-control input,
.filter-control select,
.search-page-form input {
  color: var(--earth-800);
  background: var(--sand-50);
  border-color: var(--canyon-200);
  border-radius: 14px;
  padding: 12px 14px;
}

.page-grid {
  padding-bottom: 30px;
}

.search-page-form {
  display: flex;
  width: 100%;
  gap: 14px;
}

.search-page-form input {
  flex: 1;
}

.search-status {
  min-height: 28px;
  margin-bottom: 18px;
  color: var(--earth-600);
  font-weight: 700;
}

.rank-grid {
  display: grid;
  gap: 18px;
}

.rank-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(232, 219, 200, 0.82);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.rank-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--canyon-200);
}

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

.rank-cover span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 999px;
  font-weight: 900;
}

.rank-info {
  padding: 20px;
}

.rank-info h2 {
  margin: 0 0 10px;
  color: var(--canyon-900);
  font-size: 22px;
}

.rank-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--earth-600);
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(290px, 0.9fr);
  gap: 28px;
}

.player-card,
.detail-content,
.side-card {
  background: #ffffff;
  border: 1px solid rgba(232, 219, 200, 0.82);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
  padding: 0;
  background: #000000;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000000;
  cursor: pointer;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.video-start {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.52));
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.video-start.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-start span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  padding-left: 5px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 999px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
  font-size: 38px;
}

.player-controls {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.video-shell:hover .player-controls,
.player-controls:focus-within {
  opacity: 1;
  pointer-events: auto;
}

.player-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 0;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.58);
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.player-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.82);
  text-align: center;
  padding: 24px;
}

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

.detail-content h1 {
  margin-bottom: 18px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 28px;
}

.tag-cloud span {
  padding: 7px 12px;
  color: var(--canyon-700);
  background: linear-gradient(90deg, var(--gold-100), var(--canyon-100));
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.detail-content section {
  padding-top: 24px;
  border-top: 1px solid var(--canyon-200);
}

.detail-content section + section {
  margin-top: 24px;
}

.detail-content h2,
.side-card h2 {
  margin: 0 0 12px;
  color: var(--canyon-900);
  font-size: 24px;
}

.detail-content p {
  margin: 0;
  color: var(--earth-700);
  font-size: 17px;
  line-height: 1.9;
}

.detail-side {
  min-width: 0;
}

.sticky-card {
  position: sticky;
  top: 96px;
}

.side-card {
  overflow: hidden;
  padding: 20px;
}

.side-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--canyon-200);
}

.side-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.side-card dt {
  color: var(--earth-600);
  font-size: 13px;
}

.side-card dd {
  margin: 0;
  color: var(--canyon-900);
  font-weight: 800;
}

.side-card dd a {
  color: var(--gold-600);
}

.related-block {
  margin-bottom: 60px;
}

.site-footer {
  margin-top: 70px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--canyon-900), var(--earth-900));
}

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

.footer-brand {
  font-size: 22px;
  margin-bottom: 14px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--gold-300);
  font-size: 18px;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 12px;
    font-size: 14px;
  }

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

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-carousel {
    min-height: 540px;
    height: 74vh;
  }

  .hero-content {
    padding-bottom: 82px;
  }

  .hero-arrow {
    display: none;
  }

  .category-preview-grid,
  .ranking-list,
  .footer-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .rank-card {
    grid-template-columns: 150px 1fr;
  }
}

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

  .header-inner {
    min-height: 66px;
  }

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

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

  .hero-carousel {
    min-height: 580px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .section-heading {
    display: block;
  }

  .section-more {
    display: inline-flex;
    margin-top: 12px;
  }

  .movie-grid,
  .movie-grid.four,
  .mini-grid,
  .category-tile-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-row {
    grid-auto-columns: 82%;
  }

  .category-zone,
  .ranking-zone,
  .page-hero {
    padding: 24px;
    border-radius: 22px;
  }

  .filter-panel,
  .search-page-form,
  .search-page-panel {
    display: grid;
  }

  .rank-card {
    grid-template-columns: 1fr;
  }

  .detail-content,
  .side-card {
    padding: 20px;
  }

  .video-start span {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
