:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --cyan-400: #22d3ee;
  --amber-400: #fbbf24;
  --rose-500: #f43f5e;
  --text: #111827;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  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(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-900) 45%, #0f3b3c);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.2);
}

.header-inner {
  max-width: 1220px;
  height: 68px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--emerald-400), var(--cyan-400));
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.35);
}

.logo-text,
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--emerald-400), var(--cyan-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link,
.dropdown-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.dropdown-button:hover {
  color: var(--emerald-400);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 44px;
  left: -18px;
  min-width: 190px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a,
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.dropdown-menu a:hover,
.mobile-menu a:hover {
  background: rgba(52, 211, 153, 0.12);
  color: var(--emerald-400);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.header-search input,
.big-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(148, 163, 184, 0.35);
  outline: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  padding: 11px 16px;
  transition: 0.2s ease;
}

.header-search input {
  width: 240px;
}

.header-search input:focus,
.big-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--emerald-400);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.16);
}

.header-search button,
.big-search button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--emerald-500), var(--cyan-400));
  color: var(--slate-950);
  font-weight: 700;
  cursor: pointer;
  padding: 11px 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu.is-open {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #ffffff;
  background: var(--slate-950);
}

.hero-track {
  position: relative;
  min-height: 680px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.86) 42%, rgba(15, 23, 42, 0.45) 70%, rgba(2, 6, 23, 0.82) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.28), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.16), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  min-height: 680px;
  margin: 0 auto;
  padding: 88px 22px 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-400);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-line {
  max-width: 760px;
  margin: 0 0 16px;
  color: #e2e8f0;
  font-size: 22px;
  line-height: 1.6;
}

.hero-summary {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 1.9;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.primary-button,
.ghost-button,
.text-button,
.section-link,
.category-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: linear-gradient(90deg, var(--emerald-500), var(--cyan-400));
  color: var(--slate-950);
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.24);
}

.primary-button:hover,
.category-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(16, 185, 129, 0.28);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.text-button,
.section-link {
  color: var(--emerald-500);
  background: rgba(16, 185, 129, 0.08);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 2 / 3;
  box-shadow: 0 40px 90px rgba(2, 6, 23, 0.55);
  transform: rotate(2deg);
}

.hero-poster img,
.card-cover img,
.detail-poster img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hero-poster:hover img,
.movie-card:hover .card-cover img,
.detail-poster:hover img {
  transform: scale(1.045);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.55);
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.spotlight-section,
.content-section,
.rank-panel-section,
.content-layout {
  max-width: 1220px;
  margin: 0 auto;
  padding: 68px 22px;
}

.spotlight-section {
  margin-top: -74px;
  position: relative;
  z-index: 5;
}

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

.center-heading {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.page-hero h1,
.detail-info h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.rank-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.spotlight-grid,
.movie-grid,
.category-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.32);
  box-shadow: var(--shadow);
}

.movie-card-large {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-900));
}

.card-type,
.rank-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  color: #ffffff;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.rank-badge {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, var(--amber-400), var(--rose-500));
}

.card-body {
  padding: 18px;
}

.card-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 50px;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-title:hover {
  color: var(--emerald-600);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.card-meta span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  color: #cbd5e1;
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.soft-section {
  max-width: none;
  background: linear-gradient(180deg, #ecfdf5, #ffffff);
}

.soft-section > .section-heading,
.soft-section > .movie-grid {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.rank-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  border-radius: 32px;
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.26), transparent 35%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.22);
}

.rank-panel h2 {
  font-size: clamp(32px, 5vw, 54px);
  margin: 8px 0 14px;
}

.rank-panel p {
  color: #cbd5e1;
}

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

.compact-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  transition: 0.2s ease;
}

.compact-item:hover {
  border-color: rgba(52, 211, 153, 0.42);
  background: rgba(16, 185, 129, 0.14);
}

.compact-rank,
.compact-dot {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--emerald-400), var(--cyan-400));
  font-weight: 900;
  font-size: 13px;
}

.compact-dot {
  width: 10px;
  height: 10px;
}

.compact-title {
  font-weight: 800;
}

.compact-meta {
  color: #94a3b8;
  font-size: 13px;
  text-align: right;
}

.category-strip:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.55);
}

.page-hero {
  padding: 80px 22px 68px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 15%, rgba(16, 185, 129, 0.34), transparent 34%),
    linear-gradient(135deg, var(--slate-950), var(--slate-800));
}

.page-hero p {
  max-width: 740px;
  margin: 16px auto 0;
  color: #cbd5e1;
}

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

.category-card,
.side-card,
.article-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 24px;
}

.category-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--emerald-400), var(--cyan-400));
  font-weight: 900;
}

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

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

.category-links {
  display: grid;
  gap: 8px;
  margin: 12px 0 22px;
}

.category-links a {
  color: #334155;
  font-weight: 700;
}

.category-entry {
  margin-top: auto;
  background: linear-gradient(90deg, var(--emerald-500), var(--cyan-400));
  color: var(--slate-950);
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  padding: 18px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.filter-panel input,
.filter-panel select,
.big-search input {
  min-width: 210px;
  background: #ffffff;
  color: var(--text);
}

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

.main-column,
.side-column {
  min-width: 0;
}

.side-card {
  padding: 22px;
}

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

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

.side-card .compact-item {
  background: #f8fafc;
}

.breadcrumb {
  max-width: 1220px;
  margin: 24px auto 0;
  padding: 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-hero {
  max-width: 1220px;
  margin: 28px auto 0;
  padding: 36px 22px 44px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 2 / 3;
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
}

.detail-info h1 {
  font-size: clamp(38px, 6vw, 66px);
}

.detail-line {
  color: #334155;
  font-size: 20px;
  line-height: 1.8;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.detail-meta li {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
}

.detail-meta span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.detail-meta strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
}

.detail-tags {
  margin-bottom: 26px;
}

.player-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px 40px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 36px 90px rgba(2, 6, 23, 0.28);
  aspect-ratio: 16 / 9;
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.18), rgba(2, 6, 23, 0.72));
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.player-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-circle {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--slate-950);
  background: linear-gradient(135deg, var(--emerald-400), var(--cyan-400));
  box-shadow: 0 24px 50px rgba(16, 185, 129, 0.35);
  font-size: 32px;
  text-indent: 5px;
}

.article-card {
  padding: 30px;
}

.article-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.article-card h2:not(:first-child) {
  margin-top: 28px;
}

.article-card p {
  color: #334155;
  line-height: 2;
  font-size: 16px;
}

.big-search {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin: 28px auto 0;
}

.big-search input {
  flex: 1;
}

.site-footer {
  margin-top: 40px;
  color: #cbd5e1;
  background: linear-gradient(180deg, var(--slate-900), var(--slate-950));
}

.footer-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px 22px 34px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-brand p {
  max-width: 520px;
  line-height: 1.9;
}

.footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.footer-group a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 22px 24px;
  text-align: center;
  color: #94a3b8;
}

.is-filtered-out {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #cbd5e1;
  border-radius: 24px;
  padding: 44px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1120px) {
  .header-search input {
    width: 190px;
  }

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

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

  .nav-toggle {
    display: block;
  }

  .hero,
  .hero-track,
  .hero-content {
    min-height: auto;
  }

  .hero-slide {
    position: relative;
    display: none;
  }

  .hero-slide.is-active {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 58px;
    gap: 30px;
  }

  .hero-poster {
    max-width: 290px;
    margin: 0 auto;
    transform: none;
  }

  .hero-control {
    display: none;
  }

  .spotlight-section {
    margin-top: 0;
  }

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

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

  .detail-poster {
    max-width: 320px;
    margin: 0 auto;
  }

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

@media (max-width: 620px) {
  .header-inner {
    height: 62px;
    padding: 0 16px;
  }

  .mobile-menu {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content,
  .content-section,
  .spotlight-section,
  .rank-panel-section,
  .content-layout,
  .player-section,
  .detail-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero-line {
    font-size: 18px;
  }

  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .four-grid,
  .compact-grid,
  .category-movie-grid,
  .ranking-grid,
  .spotlight-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    padding: 28px;
  }

  .compact-item {
    grid-template-columns: auto 1fr;
  }

  .compact-meta {
    grid-column: 2;
    text-align: left;
  }

  .filter-panel,
  .big-search {
    flex-direction: column;
  }

  .filter-panel input,
  .filter-panel select,
  .big-search input {
    width: 100%;
  }

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

  .play-circle {
    width: 68px;
    height: 68px;
  }
}
