* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: #f8fafc;
  color: #1f2937;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #f59e0b, #f97316, #d97706);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.28);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

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

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fffbeb;
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
  border-radius: 99px;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 24px 18px;
  background: #d97706;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-link,
.mobile-category-links a {
  display: block;
  padding: 11px 10px;
  color: #ffffff;
  border-radius: 10px;
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 8px;
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 24px 20px;
}

.hero-stage {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  background: #111827;
}

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

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.58), rgba(15, 23, 42, 0.2)), linear-gradient(0deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 30px;
  align-items: center;
  padding: 52px;
}

.hero-copy {
  color: #ffffff;
}

.hero-tags,
.card-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag,
.tag,
.mini-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-tag {
  padding: 7px 12px;
  background: rgba(245, 158, 11, 0.95);
  color: #ffffff;
}

.tag {
  padding: 8px 13px;
  background: #fef3c7;
  color: #92400e;
}

.mini-tag {
  padding: 5px 8px;
  background: #f3f4f6;
  color: #4b5563;
}

.hero h1 {
  max-width: 680px;
  margin: 20px 0 16px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

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

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

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

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.32);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.btn-soft {
  color: #92400e;
  background: #fef3c7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: #d1d5db;
  font-size: 14px;
}

.hero-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.38);
}

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

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

.hero-poster span,
.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 16px 35px rgba(217, 119, 6, 0.45);
}

.hero-dots {
  position: absolute;
  left: 52px;
  bottom: 36px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.active {
  width: 48px;
  background: #f59e0b;
}

.hero-rank {
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.hero-rank h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.hero-rank-item {
  display: grid;
  grid-template-columns: 34px 66px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

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

.hero-rank-item span {
  font-weight: 900;
  color: #f97316;
}

.hero-rank-item img {
  width: 66px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-rank-item em {
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.search-hero-panel {
  max-width: 980px;
  margin: -10px auto 20px;
  padding: 0 24px;
}

.home-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.home-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  height: 48px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 0 14px;
  color: #111827;
  background: #ffffff;
  outline: none;
}

.home-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.home-search button {
  border: 0;
  border-radius: 14px;
  padding: 0 22px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, #f59e0b, #f97316);
  cursor: pointer;
}

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

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

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #f97316;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #111827;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
  max-width: 660px;
  margin: 10px 0 0;
  color: #6b7280;
  line-height: 1.8;
}

.section-link {
  flex: 0 0 auto;
  color: #d97706;
  font-weight: 900;
}

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

.category-tile,
.category-overview-card {
  display: block;
  min-height: 154px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #ffedd5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(217, 119, 6, 0.16);
}

.category-tile span,
.category-overview-card strong {
  display: block;
  margin-bottom: 12px;
  color: #9a3412;
  font-size: 22px;
  font-weight: 900;
}

.category-tile p,
.category-overview-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

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

.compact-grid {
  grid-template-columns: repeat(6, 1fr);
}

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

.card-cover {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: #111827;
}

.compact-grid .card-cover {
  height: 190px;
}

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

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

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .cover-shade {
  opacity: 1;
}

.play-dot {
  width: 46px;
  height: 46px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.card-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(245, 158, 11, 0.95);
}

.card-body {
  padding: 17px;
}

.card-body h3 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h3 a:hover {
  color: #d97706;
}

.card-body p {
  min-height: 45px;
  margin: 0 0 13px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 12px;
}

.ranking-card {
  position: sticky;
  top: 88px;
  padding: 24px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.ranking-card-head span {
  color: #f97316;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ranking-card-head h2 {
  margin: 6px 0 18px;
  font-size: 28px;
}

.ranking-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.ranking-row:hover .ranking-title {
  color: #d97706;
}

.ranking-num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

.ranking-title {
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-row em {
  color: #6b7280;
  font-size: 12px;
  font-style: normal;
}

.ranking-more {
  display: block;
  margin-top: 18px;
  padding: 13px;
  border-radius: 14px;
  color: #92400e;
  text-align: center;
  font-weight: 900;
  background: #fef3c7;
}

.page-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 24px 30px;
}

.page-hero > div {
  overflow: hidden;
  border-radius: 30px;
  padding: 48px;
  background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.22), transparent 28%), linear-gradient(135deg, #fff7ed, #ffffff);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 160px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 28px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: 13px;
  font-weight: 800;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.empty-state {
  display: none;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  color: #6b7280;
  background: #ffffff;
}

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

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

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

.category-overview-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-overview-card div span {
  padding: 6px 9px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 800;
}

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

.ranking-page-row {
  display: grid;
  grid-template-columns: 70px 82px minmax(180px, 0.8fr) minmax(260px, 1.4fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ranking-page-row:hover {
  transform: translateX(4px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.rank-big {
  color: #f97316;
  font-size: 26px;
  font-weight: 900;
}

.ranking-page-row img {
  width: 82px;
  height: 104px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-page-row strong {
  font-size: 18px;
}

.ranking-page-row p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.ranking-page-row em {
  color: #6b7280;
  font-style: normal;
}

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

.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px) saturate(1.1);
  transform: scale(1.08);
}

.detail-bg-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.78), rgba(17, 24, 39, 0.56));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  min-height: 560px;
  margin: 0 auto;
  padding: 56px 24px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

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

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: #fbbf24;
  font-weight: 800;
}

.crumbs em {
  color: #d1d5db;
  font-style: normal;
}

.detail-info h1 {
  color: #ffffff;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
}

.detail-one-line {
  max-width: 800px;
  margin: 18px 0 0;
  color: #e5e7eb;
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.detail-meta span,
.detail-tags a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.detail-meta span {
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.14);
}

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

.detail-tags a {
  color: #92400e;
  background: #fef3c7;
}

.detail-section {
  padding-top: 44px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000000;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.28);
}

.movie-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-poster {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  background: #000000;
  cursor: pointer;
}

.player-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.player-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-size: 28px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 20px 42px rgba(249, 115, 22, 0.45);
}

.player-shell.playing .player-poster {
  display: none;
}

.detail-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.content-card {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

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

.content-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.9;
}

.site-footer {
  margin-top: 30px;
  color: #d1d5db;
  background: linear-gradient(135deg, #1f2937, #0f172a);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 32px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 900;
}

.footer-main p {
  max-width: 620px;
  margin: 0;
  color: #9ca3af;
  line-height: 1.8;
}

.footer-col h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 16px;
}

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

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

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

.footer-bottom {
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-rank {
    display: none;
  }

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

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

  .section-split {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    position: static;
  }

  .ranking-page-row {
    grid-template-columns: 60px 78px 1fr;
  }

  .ranking-page-row p,
  .ranking-page-row em {
    grid-column: 3;
  }
}

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

  .menu-toggle {
    display: block;
  }

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

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

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

  .hero-content {
    grid-template-columns: 1fr;
    padding: 34px 24px 76px;
  }

  .hero-poster {
    max-width: 220px;
  }

  .hero-dots {
    left: 24px;
    bottom: 28px;
  }

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

  .movie-grid,
  .compact-grid,
  .category-grid,
  .category-overview-grid,
  .detail-text {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .detail-poster {
    max-width: 250px;
  }
}

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

  .brand-icon {
    width: 32px;
    height: 32px;
  }

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

  .hero h1,
  .detail-info h1 {
    font-size: 36px;
  }

  .hero p,
  .detail-one-line,
  .page-hero p {
    font-size: 16px;
  }

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

  .card-cover {
    height: 260px;
  }

  .section-head {
    display: block;
  }

  .section-link {
    display: inline-block;
    margin-top: 12px;
  }

  .page-hero > div {
    padding: 32px 22px;
  }

  .ranking-page-row {
    grid-template-columns: 48px 72px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .rank-big {
    font-size: 20px;
  }

  .ranking-page-row img {
    width: 72px;
    height: 92px;
  }

  .player-poster span {
    width: 66px;
    height: 66px;
  }
}
