:root {
  color-scheme: light;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #ea580c;
  --gold: #fbbf24;
  --ink: #111827;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.1);
  --cream: #fffbeb;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 25px 60px rgba(120, 53, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.25), transparent 32rem),
    linear-gradient(180deg, #fff7ed 0%, #fff 34%, #fffbeb 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.96), rgba(234, 88, 12, 0.96));
  box-shadow: 0 12px 30px rgba(146, 64, 14, 0.22);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-dark);
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(245, 158, 11, 0.2), 0 12px 20px rgba(0, 0, 0, 0.12);
  font-weight: 900;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-dark);
  background: #fff;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 260px;
}

.header-search input,
.header-search button,
.big-search input,
.big-search button,
.filter-bar input,
.filter-bar select,
.filter-bar button {
  border: 0;
  outline: none;
  border-radius: 999px;
}

.header-search input {
  width: 100%;
  padding: 11px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

.header-search button {
  padding: 11px 16px;
  color: #fff;
  background: rgba(120, 53, 15, 0.35);
  cursor: pointer;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}

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

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, #78350f, #f59e0b);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
  background-image:
    linear-gradient(90deg, rgba(69, 26, 3, 0.88), rgba(120, 53, 15, 0.52), rgba(245, 158, 11, 0.2)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(251, 191, 36, 0.42), transparent 24rem),
    linear-gradient(0deg, rgba(17, 24, 39, 0.54), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 58px;
  align-items: center;
  padding: 92px 0 86px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero-copy h1 {
  margin: 22px 0 12px;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hero-copy h2 {
  margin: 0 0 18px;
  color: #fffbeb;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 900;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(255, 251, 235, 0.92);
  font-size: 19px;
  line-height: 1.9;
}

.hero-tags,
.detail-tags,
.tag-row,
.chip-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  color: #92400e;
  background: #fef3c7;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-button {
  color: #92400e;
  background: #fff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

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

.primary-button:hover,
.ghost-button:hover,
.text-link:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #92400e;
  background: #fff;
  font-weight: 900;
}

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

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

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

.search-band {
  margin-top: -58px;
  position: relative;
  z-index: 8;
}

.search-panel,
.section-wrap,
.page-hero,
.detail-head {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.search-panel {
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.search-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 950;
}

.big-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.big-search input {
  min-height: 58px;
  padding: 0 22px;
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.18);
}

.big-search button,
.filter-bar button {
  min-height: 58px;
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  font-weight: 900;
  cursor: pointer;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid rgba(245, 158, 11, 0.18);
  font-weight: 800;
  transition: 0.2s ease;
}

.category-chip:hover {
  color: #fff;
  background: var(--amber);
  transform: translateY(-1px);
}

.section-wrap {
  padding: 72px 0 0;
}

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

.section-heading.compact {
  align-items: center;
}

.section-heading span,
.rank-title span,
.category-large-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--amber-dark);
  font-weight: 950;
}

.section-heading h2,
.table-section h2,
.article-block h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading a,
.rank-title a,
.text-link {
  color: var(--amber-dark);
  font-weight: 900;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--card);
  box-shadow: 0 18px 45px rgba(120, 53, 15, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(120, 53, 15, 0.2);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #fef3c7, #fed7aa);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(0deg, rgba(17, 24, 39, 0.78), transparent);
}

.play-pill,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  font-weight: 950;
}

.play-pill {
  right: 14px;
  bottom: 14px;
  padding: 8px 13px;
  color: #92400e;
  background: #fff;
}

.rank-badge {
  left: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 25px rgba(146, 64, 14, 0.28);
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 900;
}

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

.movie-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tag-row span {
  padding: 5px 9px;
  font-size: 12px;
}

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

.rank-panel {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(245, 158, 11, 0.12);
}

.rank-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rank-item {
  display: grid;
  grid-template-columns: auto 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.rank-item:last-child {
  border-bottom: 0;
}

.rank-item img {
  width: 58px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

.list-rank {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--amber);
  font-weight: 950;
}

.rank-item strong {
  display: block;
  line-height: 1.35;
  font-weight: 950;
}

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

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

.category-card,
.category-large-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(120, 53, 15, 0.11);
  border: 1px solid rgba(245, 158, 11, 0.12);
}

.category-card {
  padding: 24px;
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #fff, #fffbeb);
}

.category-card span {
  display: block;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 950;
}

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

.site-footer {
  margin-top: 86px;
  color: #fef3c7;
  background: linear-gradient(135deg, #111827, #451a03 55%, #78350f);
}

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

.footer-brand strong {
  display: block;
  margin: 12px 0 8px;
  color: #fff;
  font-size: 28px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(254, 243, 199, 0.82);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  align-content: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  color: rgba(254, 243, 199, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.page-hero {
  margin-top: 38px;
  padding: 70px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.35), transparent 24rem),
    linear-gradient(135deg, #f59e0b, #ea580c 60%, #78350f);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 780px;
  margin: 18px 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 251, 235, 0.9);
  font-size: 19px;
  line-height: 1.85;
}

.categories-list {
  display: grid;
  gap: 24px;
}

.category-large-card {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  padding: 22px;
  align-items: center;
}

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

.category-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
}

.category-large-card h2 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 950;
}

.category-large-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
  gap: 12px;
  padding: 18px;
  margin-bottom: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(120, 53, 15, 0.1);
}

.filter-bar input,
.filter-bar select {
  min-height: 52px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.16);
}

.empty-state {
  display: none;
  padding: 42px;
  border-radius: 28px;
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.empty-state.show {
  display: block;
}

.rank-wide-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
}

.table-section {
  padding-top: 50px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.ranking-table th,
.ranking-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.ranking-table th {
  color: #92400e;
  background: #fef3c7;
  font-weight: 950;
}

.ranking-table td:first-child {
  color: var(--amber-dark);
  font-weight: 950;
}

.ranking-table a {
  font-weight: 900;
}

.detail-hero {
  position: relative;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(120, 53, 15, 0.66), rgba(245, 158, 11, 0.24)),
    var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right top, rgba(251, 191, 36, 0.36), transparent 26rem);
}

.detail-head {
  position: relative;
  z-index: 2;
  padding: 46px 0 70px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
  color: rgba(255, 251, 235, 0.82);
  font-weight: 800;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.detail-cover {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

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

.detail-info h1 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-info p {
  max-width: 820px;
  margin: 0 0 20px;
  color: rgba(255, 251, 235, 0.9);
  font-size: 18px;
  line-height: 1.85;
}

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

.meta-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.meta-grid dt {
  color: rgba(255, 251, 235, 0.74);
  font-size: 12px;
}

.meta-grid dd {
  margin: 4px 0 0;
  font-weight: 950;
}

.detail-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
}

.watch-box {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #0f172a;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.watch-box video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.66), rgba(15, 23, 42, 0.18));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.play-overlay span::after {
  content: "";
  position: absolute;
  left: 33px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--amber-dark);
}

.play-overlay strong {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.watch-box.playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.article-block {
  margin-top: 28px;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(120, 53, 15, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.1);
}

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

.review-block {
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(255, 237, 213, 0.96));
}

.prev-next {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.prev-next a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: #92400e;
  background: #fef3c7;
  font-weight: 900;
}

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

@media (max-width: 1080px) {
  .header-search {
    display: none;
  }

  .hero-content,
  .split-layout,
  .detail-main {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    justify-self: start;
    width: min(300px, 100%);
  }

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

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

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

@media (max-width: 820px) {
  .header-inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 13px 0;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 5;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 10px 0 2px;
  }

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

  .nav-link {
    background: rgba(255, 255, 255, 0.14);
  }

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

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

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

  .hero-copy p,
  .page-hero p,
  .detail-info p {
    font-size: 16px;
  }

  .search-band {
    margin-top: -30px;
  }

  .big-search,
  .filter-bar,
  .footer-inner,
  .category-large-card,
  .detail-layout,
  .meta-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 38px 24px;
    border-radius: 28px;
  }

  .movie-grid,
  .small-grid,
  .category-card-grid,
  .rank-wide-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 20px;
  }

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

  .hero-copy h2,
  .section-heading h2,
  .article-block h2 {
    font-size: 25px;
  }

  .hero-actions,
  .section-heading,
  .section-heading.compact {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .small-grid,
  .category-card-grid,
  .rank-wide-list {
    grid-template-columns: 1fr;
  }

  .search-panel,
  .article-block,
  .rank-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .detail-head {
    padding-bottom: 42px;
  }
}
