*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --blue: #2563eb;
  --cyan: #06b6d4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --gold: #fbbf24;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-800);
  background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 48%, #f8fafc 100%);
  line-height: 1.65;
}

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: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 46%, #0891b2 100%);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

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

.brand-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

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

.brand-text strong {
  font-size: 24px;
  letter-spacing: 0.03em;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.90);
  transition: background 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

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

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

.hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.45), transparent 42%), linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle at 24px 24px, #ffffff 2px, transparent 0);
  background-size: 58px 58px;
  animation: pulseGlow 7s ease-in-out infinite;
}

.hero-shell {
  position: relative;
  min-height: 620px;
  padding: 58px 0;
  display: grid;
  align-items: center;
}

.hero-carousel {
  position: relative;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 54px;
}

.hero-slide.active {
  display: grid;
  animation: fadeSlide 0.6s ease both;
}

.hero-art {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
}

.hero-shine {
  position: absolute;
  inset: auto -20% -25% 28%;
  width: 60%;
  height: 70%;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.45);
  filter: blur(60px);
}

.hero-copy {
  max-width: 620px;
}

.hero-tags,
.inline-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-tags span,
.inline-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 30px;
  color: #cbd5e1;
  font-size: 18px;
}

.hero-actions,
.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.32);
}

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

.btn.text {
  color: #bfdbfe;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}

.hero-dot {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
  width: 56px;
  background: #ffffff;
}

.quick-search {
  margin-top: -34px;
  position: relative;
  z-index: 4;
}

.home-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.home-search span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue);
  background: #dbeafe;
  font-size: 26px;
}

.home-search input,
.filter-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--slate-800);
  background: transparent;
}

.home-search button {
  border: 0;
  color: #ffffff;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  cursor: pointer;
}

.page-section {
  padding: 74px 0;
}

.soft-section {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.dark-section {
  color: #ffffff;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dark-section .section-kicker {
  color: #67e8f9;
}

.section-head h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--slate-500);
}

.dark-section .section-head p {
  color: #cbd5e1;
}

.section-more {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 700;
}

.dark-section .section-more {
  color: #67e8f9;
}

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

.small-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.movie-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--slate-100);
}

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

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

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.76));
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-wrap::after {
  opacity: 1;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.score-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  padding: 4px 9px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.78);
}

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.38;
}

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

.movie-info p {
  min-height: 48px;
  margin: 0 0 14px;
  color: var(--slate-500);
  font-size: 14px;
}

.meta-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--slate-500);
  font-size: 13px;
}

.pill {
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--slate-700);
  background: var(--slate-100);
}

.compact .movie-info {
  padding: 12px;
}

.compact .movie-info p {
  min-height: 42px;
  font-size: 13px;
}

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

.category-tile,
.category-card-large a {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 200px;
  border-radius: 22px;
  color: #ffffff;
  background: var(--slate-800);
  box-shadow: var(--soft-shadow);
}

.category-tile img,
.category-card-large img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-tile::after,
.category-card-large a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.10), rgba(15, 23, 42, 0.86));
}

.category-tile:hover img,
.category-card-large a:hover img {
  transform: scale(1.08);
}

.category-tile span,
.category-tile small,
.category-card-large div {
  position: relative;
  z-index: 2;
}

.category-tile {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-tile span {
  font-size: 20px;
  font-weight: 800;
}

.category-tile small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
}

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

.ranking-panel {
  position: sticky;
  top: 104px;
  border-radius: 24px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.panel-title {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 900;
}

.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.ranking-list a {
  display: grid;
  grid-template-columns: 30px 54px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  background: var(--slate-50);
}

.ranking-list img {
  width: 54px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-no {
  color: var(--blue);
  font-weight: 900;
  text-align: center;
}

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

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

.rank-text small {
  color: var(--slate-500);
  font-size: 12px;
}

.ranking-list em {
  color: #f59e0b;
  font-style: normal;
  font-weight: 900;
}

.page-main {
  padding: 42px 0 82px;
}

.page-title-block {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 36px;
  border-radius: 28px;
  color: #ffffff;
  background: radial-gradient(circle at top right, rgba(6, 182, 212, 0.38), transparent 42%), linear-gradient(135deg, #1e293b, #0f172a);
  box-shadow: var(--shadow);
}

.page-title-block span {
  color: #67e8f9;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.page-title-block h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.page-title-block p {
  max-width: 780px;
  margin: 0;
  color: #cbd5e1;
}

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

.category-card-large a {
  min-height: 260px;
  padding: 28px;
  display: flex;
  align-items: flex-end;
}

.category-card-large h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.category-card-large p {
  max-width: 520px;
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.category-card-large span {
  color: #bfdbfe;
  font-weight: 800;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--slate-500);
  flex-wrap: wrap;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb.light {
  color: rgba(255, 255, 255, 0.72);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin: 0 0 26px;
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.filter-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--slate-50);
}

.filter-search span {
  color: var(--blue);
  font-size: 24px;
}

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

.filter-control {
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  padding: 0 14px;
  color: var(--slate-700);
  background: var(--slate-50);
  outline: 0;
}

.empty-state {
  display: none;
  margin: 24px 0;
  padding: 28px;
  text-align: center;
  border-radius: 18px;
  color: var(--slate-500);
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

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

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

.ranking-row a {
  display: grid;
  grid-template-columns: 56px 96px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ranking-row a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.ranking-number {
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.ranking-row img {
  width: 96px;
  height: 128px;
  object-fit: cover;
  border-radius: 16px;
}

.ranking-copy {
  min-width: 0;
}

.ranking-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
}

.ranking-copy small,
.ranking-copy em {
  display: block;
  color: var(--slate-500);
  font-style: normal;
}

.ranking-score {
  color: #f59e0b;
  font-size: 24px;
  font-weight: 900;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-size: cover;
  background-position: center;
  filter: blur(8px) saturate(1.15);
  transform: scale(1.08);
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 42px 0 64px;
}

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

.detail-poster img {
  width: 250px;
  height: 340px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.detail-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 66px);
  line-height: 1.05;
}

.detail-copy p {
  max-width: 790px;
  margin: 0 0 26px;
  color: #cbd5e1;
  font-size: 18px;
}

.watch-section {
  margin-top: -40px;
  position: relative;
  z-index: 4;
}

.video-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.36);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), rgba(0, 0, 0, 0.45));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  font-size: 38px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease;
}

.play-overlay:hover .play-button {
  transform: scale(1.08);
}

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

.detail-article,
.detail-side {
  border-radius: 24px;
  padding: 28px;
  background: #ffffff;
  box-shadow: var(--soft-shadow);
}

.detail-article h2,
.detail-side h2 {
  margin: 0 0 16px;
  font-size: 25px;
}

.detail-article p {
  margin: 0 0 26px;
  color: var(--slate-700);
  font-size: 17px;
}

.tag-cloud {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-cloud a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #dbeafe;
  font-weight: 700;
  font-size: 14px;
}

.detail-side dl {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px 18px;
  margin: 0;
}

.detail-side dt {
  color: var(--slate-500);
}

.detail-side dd {
  margin: 0;
  color: var(--slate-800);
  font-weight: 700;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 32px;
  padding: 46px 0;
}

.footer-brand {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
}

.footer-grid p {
  margin: 0;
  max-width: 520px;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.footer-links.compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  color: #94a3b8;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

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

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.10;
  }
  50% {
    opacity: 0.18;
  }
}

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

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

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

  .ranking-panel {
    position: static;
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    padding: 12px;
    border-radius: 18px;
    background: #1d4ed8;
    box-shadow: var(--shadow);
  }

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

  .hero-shell {
    min-height: auto;
    padding: 40px 0 80px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-art {
    height: 360px;
  }

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

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

  .category-large-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-poster img {
    width: 210px;
    height: 286px;
  }

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

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

  .brand-text small {
    display: none;
  }

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

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

  .hero-art {
    height: 310px;
  }

  .home-search button {
    width: 100%;
  }

  .page-section {
    padding: 48px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .movie-grid,
  .small-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .movie-info {
    padding: 12px;
  }

  .movie-info h3 {
    font-size: 15px;
  }

  .movie-info p {
    display: none;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  .ranking-row a {
    grid-template-columns: 42px 70px 1fr;
  }

  .ranking-row img {
    width: 70px;
    height: 96px;
  }

  .ranking-score {
    display: none;
  }

  .ranking-copy strong {
    font-size: 17px;
  }

  .ranking-copy small {
    display: none;
  }

  .video-box {
    border-radius: 18px;
  }

  .detail-content-grid {
    padding-top: 32px;
  }

  .detail-article,
  .detail-side,
  .page-title-block {
    padding: 22px;
  }

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