:root {
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #ea580c;
  --ink: #111827;
  --muted: #6b7280;
  --line: #f3d9a4;
  --bg: #fff8ed;
  --card: #ffffff;
  --soft: #fffbeb;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 38%, #fffaf0 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 22px rgba(245, 158, 11, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--amber-dark), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
}

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

.nav-link,
.mobile-nav-link {
  font-weight: 700;
  color: #374151;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff3d4;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--amber-dark);
}

.mobile-nav {
  display: none;
  padding: 12px 24px 18px;
  border-top: 1px solid rgba(245, 158, 11, 0.24);
  background: #ffffff;
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--amber-dark);
  background: #fff7df;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: #111827;
}

.hero-stage {
  position: relative;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 96px 24px 210px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
  color: #ffffff;
}

.hero-label,
.section-kicker,
.detail-category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #92400e;
  background: #fef3c7;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 24px 0 18px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.hero-tags,
.movie-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tags span,
.movie-tags span,
.detail-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #7c2d12;
  background: #ffedd5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.34);
}

.button-secondary {
  color: #92400e;
  background: #fef3c7;
}

.button-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 154px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-arrow,
.hero-dot,
.hero-thumb {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

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

.hero-thumbs {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 32px;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.hero-thumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border-radius: 18px;
  color: #ffffff;
  text-align: left;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  opacity: 0.74;
}

.hero-thumb.active {
  opacity: 1;
  background: rgba(245, 158, 11, 0.9);
}

.hero-thumb img {
  width: 64px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-thumb span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 13px;
  font-weight: 800;
}

.hero-search {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 86px;
  width: min(560px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-search input,
.search-control input,
.advanced-filter input,
.advanced-filter select {
  width: 100%;
  border: 1px solid rgba(245, 158, 11, 0.24);
  border-radius: 14px;
  padding: 13px 14px;
  color: #111827;
  background: #ffffff;
  outline: none;
}

.hero-search button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 13px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  cursor: pointer;
}

.content-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px;
}

.soft-panel {
  max-width: none;
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.soft-panel > * {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1f2937;
}

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

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

.movie-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.62));
}

.movie-badge {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(245, 158, 11, 0.92);
}

.movie-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.9);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

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

.movie-info {
  padding: 18px;
}

.movie-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.movie-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f9fafb;
}

.movie-tags {
  margin-top: 12px;
}

.section-more {
  margin-top: 34px;
  text-align: center;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile:hover img {
  transform: scale(1.08);
}

.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(17, 24, 39, 0.88));
}

.category-tile strong,
.category-tile em {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  color: #ffffff;
}

.category-tile strong {
  bottom: 54px;
  font-size: 24px;
}

.category-tile em {
  bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
}

.split-section {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 32px;
  align-items: start;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 46px 78px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.06);
}

.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-item img {
  width: 78px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-text {
  min-width: 0;
}

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

.rank-text strong {
  font-size: 16px;
}

.rank-text em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.notice-card {
  position: sticky;
  top: 104px;
  padding: 34px;
  border-radius: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #292524 58%, #78350f);
  box-shadow: var(--shadow);
}

.notice-card span {
  color: #fbbf24;
  font-weight: 900;
}

.notice-card h2 {
  margin: 12px 0;
  font-size: 34px;
  line-height: 1.1;
}

.notice-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.page-hero {
  max-width: 1280px;
  margin: 34px auto 0;
  padding: 64px 24px;
}

.page-hero > div {
  overflow: hidden;
  border-radius: 34px;
  padding: 58px;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #92400e 58%, #f59e0b);
  box-shadow: var(--shadow);
}

.page-hero span {
  color: #fbbf24;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  margin: 12px 0 14px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.75;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.category-overview-image img {
  width: 180px;
  height: 150px;
  border-radius: 20px;
  object-fit: cover;
}

.category-overview-card h2 {
  margin: 4px 0 8px;
  font-size: 24px;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.65;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.inline-links a,
.chip-link {
  padding: 7px 10px;
  border-radius: 999px;
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
  background: #fef3c7;
}

.text-link {
  color: var(--amber-dark);
  font-weight: 900;
}

.filter-panel,
.advanced-filter {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  padding: 20px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.search-control span,
.advanced-filter span {
  display: block;
  margin-bottom: 8px;
  color: #92400e;
  font-weight: 900;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.advanced-filter {
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  align-items: end;
}

.breadcrumbs {
  max-width: 1280px;
  margin: 28px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #92400e;
  font-weight: 800;
}

.detail-hero {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 40px 24px 68px;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  margin: 18px 0 16px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.detail-one-line {
  max-width: 780px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.8;
}

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

.detail-meta-grid span {
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.07);
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

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

.detail-main,
.detail-side {
  display: grid;
  gap: 24px;
}

.player-card,
.article-block,
.side-card {
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.player-card {
  overflow: hidden;
}

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

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(17, 24, 39, 0.28), rgba(0, 0, 0, 0.82));
  cursor: pointer;
}

.player-start.hidden {
  display: none;
}

.player-start span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 34px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.36);
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 13px;
  text-align: center;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(8px);
}

.player-status.hidden {
  display: none;
}

.article-block {
  padding: 30px;
}

.article-block h2,
.side-card h2 {
  margin: 0 0 18px;
  font-size: 26px;
}

.article-block p {
  margin: 0 0 16px;
  color: #374151;
  font-size: 17px;
  line-height: 1.95;
}

.side-card {
  padding: 24px;
}

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

.side-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.side-card dt {
  color: var(--muted);
  font-weight: 800;
}

.side-card dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

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

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

.ranking-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 16px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.07);
}

.ranking-cover {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.ranking-cover span {
  position: absolute;
  z-index: 2;
  left: 12px;
  top: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

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

.ranking-card h2 {
  margin: 6px 0 10px;
  font-size: 24px;
}

.ranking-card p {
  color: var(--muted);
  line-height: 1.7;
}

.sitemap-layout {
  column-count: 3;
  column-gap: 24px;
}

.sitemap-group {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.07);
}

.sitemap-group h2 {
  margin: 0 0 12px;
  color: #92400e;
}

.sitemap-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-group a {
  color: #374151;
  font-size: 14px;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937 58%, #111827);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 24px;
}

.footer-logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 360px;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 18px;
}

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

.site-footer a {
  color: #9ca3af;
}

.site-footer a:hover {
  color: #fbbf24;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 14px;
}

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

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

  .advanced-filter,
  .detail-layout,
  .split-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .notice-card {
    position: static;
  }

  .detail-hero {
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero-stage {
    min-height: 760px;
  }

  .hero-slide {
    padding-top: 126px;
    padding-bottom: 210px;
  }

  .hero-thumbs {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-thumb:not(.active) {
    display: none;
  }

  .hero-controls {
    bottom: 124px;
  }

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

  .category-overview-card,
  .ranking-card,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .category-overview-image img {
    width: 100%;
    height: 220px;
  }

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

  .sitemap-layout {
    column-count: 2;
  }
}

@media (max-width: 560px) {
  .header-inner {
    padding: 12px 16px;
  }

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

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-search {
    top: 76px;
  }

  .hero-search input {
    min-width: 0;
  }

  .hero-search button {
    padding: 0 14px;
  }

  .content-section,
  .page-hero,
  .detail-hero,
  .breadcrumbs {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-hero > div {
    padding: 36px 24px;
    border-radius: 26px;
  }

  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    gap: 14px;
  }

  .sitemap-layout {
    column-count: 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}
