:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --emerald-500: #10b981;
  --yellow-500: #eab308;
  --red-500: #ef4444;
  --text-main: #111827;
  --text-muted: #64748b;
  --card: #ffffff;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-md: 0 14px 35px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 25px 70px rgba(15, 23, 42, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4ff 42%, #f8fafc 100%);
}

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: 100;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-950));
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.28);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), #60a5fa);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: #dbeafe;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(59, 130, 246, 0.24);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
}

.hero-carousel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--slate-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-slide.image-missing img {
  opacity: 0;
}

.hero-slide.image-missing {
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.5), transparent 32%),
    linear-gradient(135deg, #020617, #1e293b 55%, #0f172a);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.52) 48%, rgba(2, 6, 23, 0.12)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.68), rgba(2, 6, 23, 0.08));
}

.hero-content {
  position: absolute;
  left: max(32px, calc((100vw - 1180px) / 2));
  bottom: 96px;
  width: min(720px, calc(100% - 64px));
  color: #fff;
}

.hero-kicker,
.watch-kicker,
.category-kind {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-600);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 22px 0 16px;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-content p {
  max-width: 660px;
  margin: 0 0 30px;
  color: #dbeafe;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions,
.card-foot,
.movie-meta-line,
.watch-meta,
.prev-next,
.footer-links,
.tag-cloud,
.hero-dots,
.filter-panel,
.search-panel {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.button:hover,
.top-search button:hover,
.search-panel button:hover {
  transform: translateY(-2px);
}

.button.primary,
.top-search button,
.search-panel button {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.3);
}

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

.button.dark {
  color: #fff;
  background: var(--slate-900);
}

.button.full {
  width: 100%;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.68);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
}

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

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

.search-strip {
  margin-top: -1px;
  color: #fff;
  background: linear-gradient(90deg, var(--slate-900), var(--slate-800));
}

.search-strip-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  align-items: center;
  gap: 28px;
}

.search-strip h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.search-strip p {
  margin: 0;
  color: #cbd5e1;
}

.top-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.top-search input,
.search-panel input,
.search-panel select,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dbe4f0;
  border-radius: 13px;
  padding: 0 14px;
  color: var(--text-main);
  background: #fff;
  outline: none;
}

.top-search input:focus,
.search-panel input:focus,
.search-panel select:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.page-stack {
  padding: 58px 0;
}

.page-stack > section + section,
.page-stack > .section-heading + .movie-grid,
.page-stack > .movie-grid + section,
.page-stack > .feature-band + .section-heading,
.page-stack > .large-grid + section,
.page-stack > .split-section + .stats-panel {
  margin-top: 56px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}

.section-heading p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 16px;
}

.section-icon {
  display: inline-flex;
  margin-right: 10px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-shell {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

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

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

.poster-shell.has-missing-image img {
  opacity: 0;
}

.poster-shell.has-missing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.55), transparent 32%),
    linear-gradient(135deg, #020617, #1e293b 58%, #0f172a);
}

.poster-badge,
.poster-play {
  position: absolute;
  z-index: 2;
}

.poster-badge {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #0f172a;
  background: #fde68a;
  font-weight: 900;
  font-size: 13px;
}

.poster-play {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 999px;
  color: #fff;
  background: rgba(37, 99, 235, 0.86);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-card-body {
  padding: 18px;
}

.movie-meta-line,
.card-foot {
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 13px;
}

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

.movie-card h3 a:hover {
  color: var(--blue-600);
}

.movie-card p {
  margin: 0;
  min-height: 48px;
  color: #475569;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}

.card-tags span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue-700);
  background: #dbeafe;
  font-size: 13px;
  font-weight: 700;
}

.wide-card {
  min-width: 320px;
}

.large-card {
  display: grid;
  grid-template-columns: 46% 1fr;
}

.large-card .poster-shell {
  aspect-ratio: auto;
  height: 100%;
}

.feature-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, #f1f5f9, #eff6ff);
}

.scroll-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
  scroll-snap-align: start;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 30px;
  align-items: start;
}

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

.category-tile,
.category-card,
.ranking-card,
.stats-panel,
.detail-article,
.detail-sidebar,
.player-card,
.watch-info,
.search-panel,
.filter-panel,
.rank-page-list {
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--slate-900), var(--blue-700));
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.category-tile span,
.category-tile em {
  display: block;
  color: #dbeafe;
  font-style: normal;
}

.category-tile strong {
  display: block;
  margin: 12px 0 4px;
  font-size: 38px;
}

.ranking-card {
  padding: 22px;
  position: sticky;
  top: 92px;
}

.ranking-card h2,
.rank-page-list h2 {
  margin: 0 0 18px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 34px 74px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 14px;
  background: #f8fafc;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  background: #eff6ff;
  transform: translateX(3px);
}

.rank-number {
  color: var(--blue-600);
  font-size: 18px;
  font-weight: 900;
}

.rank-row img {
  width: 74px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
}

.rank-info strong,
.rank-info em {
  display: block;
}

.rank-info strong {
  font-size: 14px;
  line-height: 1.35;
}

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

.rank-score {
  color: #b45309;
  font-weight: 900;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

.stats-panel div {
  text-align: center;
}

.stats-panel strong {
  display: block;
  color: #60a5fa;
  font-size: 44px;
}

.stats-panel span {
  color: #cbd5e1;
}

.site-footer {
  color: #cbd5e1;
  background: var(--slate-950);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.footer-about p {
  max-width: 620px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links a {
  color: #dbeafe;
}

.footer-links a:hover {
  color: #fff;
}

.subpage-hero {
  padding: 78px 0;
  color: #fff;
  background: radial-gradient(circle at 16% 18%, rgba(59, 130, 246, 0.42), transparent 28%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.compact-hero {
  padding: 54px 0;
}

.breadcrumb {
  display: block;
  margin-bottom: 14px;
  color: #bfdbfe;
  font-size: 14px;
}

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

.subpage-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.04em;
}

.subpage-hero p {
  max-width: 760px;
  margin: 0;
  color: #dbeafe;
  line-height: 1.8;
  font-size: 18px;
}

.filter-panel,
.search-panel {
  padding: 20px;
  margin-bottom: 26px;
}

.filter-panel input {
  flex: 1 1 360px;
}

.filter-panel select {
  flex: 0 1 180px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.page-link {
  min-width: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--slate-800);
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  text-align: center;
  font-weight: 800;
}

.page-link.current,
.page-link:hover {
  color: #fff;
  background: var(--blue-600);
}

.category-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-card h2 {
  margin: 16px 0 10px;
}

.category-card p {
  min-height: 52px;
  margin: 0 0 18px;
  color: var(--text-muted);
  line-height: 1.65;
}

.category-card strong {
  color: var(--blue-600);
  font-size: 24px;
}

.rank-page-list {
  padding: 26px;
}

.rank-list.expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 170px 170px auto;
}

.search-summary {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.watch-hero {
  padding: 38px 0 52px;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.5), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0f172a 58%, #1e293b 100%);
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.player-card,
.watch-info {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

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

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

.player-start {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.player-play-icon {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue-600);
  font-size: 30px;
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.45);
}

.movie-player.is-playing .player-start {
  display: none;
}

.player-status {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 12px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.72);
  font-size: 13px;
}

.movie-player.is-playing .player-status {
  display: none;
}

.watch-info {
  padding: 28px;
}

.watch-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
}

.watch-info p {
  color: #dbeafe;
  line-height: 1.8;
}

.watch-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.watch-info .tag-cloud {
  margin-top: 20px;
}

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

.detail-article,
.detail-sidebar {
  padding: 28px;
}

.detail-article section + section {
  margin-top: 30px;
}

.detail-article h2,
.detail-sidebar h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.detail-article p,
.detail-article blockquote {
  margin: 0;
  color: #334155;
  line-height: 1.9;
  font-size: 17px;
}

.detail-article blockquote {
  padding: 22px;
  border-left: 4px solid var(--blue-600);
  border-radius: 12px;
  background: #f8fafc;
}

.detail-sidebar {
  height: fit-content;
  position: sticky;
  top: 92px;
}

.prev-next {
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.prev-next a {
  color: var(--blue-700);
  font-weight: 800;
}

.related-section {
  padding-top: 42px;
}

.sitemap-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  padding: 52px 0;
}

.sitemap-layout > div {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list.columns {
  columns: 2;
}

.sitemap-list.movies {
  columns: 3;
}

.sitemap-list li {
  break-inside: avoid;
  margin: 0 0 10px;
}

.sitemap-list a:hover {
  color: var(--blue-600);
}

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

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

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

  .ranking-card,
  .detail-sidebar {
    position: static;
  }

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

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

  .mobile-menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: flex;
  }

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

  .hero-carousel,
  .hero-slide img {
    min-height: 520px;
  }

  .hero-content {
    left: 24px;
    bottom: 82px;
    width: calc(100% - 48px);
  }

  .hero-arrow {
    display: none;
  }

  .search-strip-inner,
  .footer-inner,
  .stats-panel {
    grid-template-columns: 1fr;
  }

  .movie-grid,
  .hot-grid,
  .large-grid,
  .category-tile-grid,
  .category-card-grid,
  .rank-list.expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .large-card {
    display: block;
  }

  .feature-band {
    padding: 22px;
  }
}

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

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

  .hero-carousel,
  .hero-slide img {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .top-search,
  .search-panel,
  .movie-grid,
  .hot-grid,
  .large-grid,
  .category-tile-grid,
  .category-card-grid,
  .rank-list.expanded {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 28px 64px 1fr;
  }

  .rank-score {
    grid-column: 3;
  }

  .watch-info,
  .detail-article,
  .detail-sidebar,
  .rank-page-list {
    padding: 20px;
  }

  .sitemap-list.columns,
  .sitemap-list.movies {
    columns: 1;
  }
}
