:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --teal: #14b8a6;
  --blue: #2563eb;
  --ink: #102033;
  --muted: #64748b;
  --line: #dbeafe;
  --paper: #ffffff;
  --soft: #ecfeff;
  --warm: #f8fafc;
  --shadow: 0 24px 60px rgba(15, 118, 110, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #ecfeff 0%, #eff6ff 42%, #f8fafc 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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: 80;
  background: rgba(236, 254, 255, 0.92);
  border-bottom: 1px solid rgba(125, 211, 252, 0.36);
  box-shadow: 0 14px 35px rgba(8, 145, 178, 0.12);
  backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(90deg, var(--cyan-dark), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
}

.site-logo {
  font-size: 28px;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.35);
}

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

.nav-link,
.mobile-nav-link {
  position: relative;
  color: #334155;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
  transition: width 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--cyan-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-search input,
.mobile-search input {
  width: 250px;
  height: 42px;
  border: 1px solid rgba(6, 182, 212, 0.32);
  border-radius: 999px;
  padding: 0 18px;
  outline: none;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.big-search input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: #0f172a;
  background: rgba(207, 250, 254, 0.78);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  padding: 14px 22px 20px;
  border-top: 1px solid rgba(125, 211, 252, 0.34);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-search input {
  width: 100%;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #051923;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12);
}

.hero-shade,
.detail-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.86) 0%, rgba(2, 132, 199, 0.54) 46%, rgba(20, 184, 166, 0.20) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 84px 22px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 54px;
  color: #fff;
}

.hero-copy {
  max-width: 720px;
  animation: float-in 0.7s ease both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #fde68a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.eyebrow.dark {
  color: var(--cyan-dark);
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-meta,
.detail-meta,
.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-meta,
.detail-meta {
  margin-top: 24px;
}

.hero-meta span,
.detail-meta span,
.movie-meta-line span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button,
.text-button,
.big-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.big-search button {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 18px 35px rgba(6, 182, 212, 0.3);
}

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

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

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(2deg);
}

.hero-poster::before {
  position: absolute;
  inset: 18px -14px -18px 14px;
  content: "";
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.5), rgba(45, 212, 191, 0.3));
  filter: blur(18px);
}

.hero-poster img,
.movie-poster img,
.detail-poster img,
.ranking-cover img,
.category-preview img,
.category-overview-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
}

.hero-arrow,
.hero-dot {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.hero-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 28px;
  background: var(--cyan);
}

.section-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 22px;
}

.quick-search-section {
  background: linear-gradient(180deg, #ecfeff 0%, rgba(255, 255, 255, 0) 100%);
}

.search-panel,
.filter-panel,
.feature-panel,
.content-card,
.player-card,
.side-card,
.category-overview-card,
.category-card,
.ranking-item,
.movie-card {
  border: 1px solid rgba(125, 211, 252, 0.34);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 28px;
  padding: 32px;
  border-radius: 30px;
}

.search-panel h2,
.section-heading h2,
.feature-panel h2,
.content-card h2,
.player-card h2,
.side-card h2,
.category-overview-body h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.search-panel p,
.feature-panel p,
.content-card p,
.player-card p,
.category-overview-body p {
  color: var(--muted);
}

.big-search {
  display: flex;
  gap: 12px;
}

.big-search input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 999px;
  padding: 0 20px;
  outline: none;
  color: #0f172a;
  background: #fff;
}

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

.compact-heading {
  margin-bottom: 18px;
}

.section-more,
.text-button {
  color: var(--cyan-dark);
  font-weight: 900;
}

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

.category-card {
  overflow: hidden;
  padding: 14px;
  border-radius: 24px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover,
.movie-card:hover,
.ranking-item:hover,
.category-overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(8, 145, 178, 0.18);
}

.category-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  height: 110px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #cffafe, #dbeafe);
}

.category-card strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
}

.category-card span,
.category-overview-body span:not(.eyebrow) {
  color: var(--muted);
}

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

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.movie-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 45%, rgba(2, 6, 23, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

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

.poster-play {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .poster-play {
  opacity: 1;
  transform: translateY(0);
}

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 12px 24px rgba(239, 68, 68, 0.28);
}

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

.movie-meta-line {
  gap: 6px;
}

.movie-meta-line span {
  min-height: 22px;
  padding: 3px 8px;
  color: var(--cyan-dark);
  background: rgba(207, 250, 254, 0.78);
  font-size: 12px;
}

.movie-card h3 {
  margin: 10px 0 8px;
  font-size: 17px;
  line-height: 1.28;
  font-weight: 900;
}

.movie-card h3 a:hover,
.ranking-content h3 a:hover,
.category-overview-body h2 a:hover {
  color: var(--cyan-dark);
}

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

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags a {
  padding: 4px 9px;
  border-radius: 999px;
  color: #0e7490;
  background: rgba(236, 254, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 74px 44px minmax(0, 1fr) 58px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 20px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.ranking-cover {
  width: 74px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.ranking-rank {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
}

.ranking-content h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.25;
}

.ranking-content p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.ranking-score {
  color: #f59e0b;
  font-size: 22px;
}

.feature-panel,
.side-card {
  border-radius: 28px;
  padding: 24px;
}

.mini-card-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mini-card-list .movie-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: stretch;
}

.mini-card-list .movie-poster {
  height: 100%;
  min-height: 124px;
}

.mini-card-list .movie-card p,
.mini-card-list .tag-row {
  display: none;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.35), transparent 32%), linear-gradient(135deg, #082f49, #0f766e 55%, #042f2e);
}

.page-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
}

.page-hero::after {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 520px;
  height: 520px;
  content: "";
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.18);
  filter: blur(12px);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 22px;
}

.small-hero {
  min-height: 300px;
}

.filter-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px 190px;
  gap: 14px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 22px;
}

.sticky-filter {
  position: sticky;
  top: 84px;
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  border: 1px solid rgba(6, 182, 212, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  outline: none;
  color: #0f172a;
  background: #fff;
}

.empty-state {
  display: none;
  padding: 36px;
  text-align: center;
  color: var(--muted);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

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

.overview-grid {
  display: grid;
  gap: 22px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  padding: 18px;
  border-radius: 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-overview-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  min-height: 210px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
}

.category-overview-body {
  padding: 8px 0;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.inline-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--cyan-dark);
  background: rgba(207, 250, 254, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.detail-hero {
  min-height: 520px;
}

.detail-bg {
  position: absolute;
  inset: 0;
}

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

.detail-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 22px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.detail-poster {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  aspect-ratio: 2 / 3;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

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

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.player-card,
.content-card {
  border-radius: 28px;
  padding: 24px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #020617;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.28), rgba(2, 6, 23, 0.42));
  cursor: pointer;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 999px;
  font-size: 34px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 20px 45px rgba(6, 182, 212, 0.35);
}

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

.content-card p,
.player-card p {
  font-size: 17px;
}

.site-footer {
  margin-top: 50px;
  color: #475569;
  background: linear-gradient(135deg, #e0f2fe, #ccfbf1);
  border-top: 1px solid rgba(125, 211, 252, 0.35);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo {
  font-size: 24px;
}

.footer-inner p {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--cyan-dark);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-carousel {
    min-height: 720px;
  }

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

  .hero-poster {
    max-width: 250px;
    justify-self: start;
  }

  .search-panel,
  .detail-inner,
  .category-overview-card,
  .filter-panel {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .site-logo {
    font-size: 22px;
  }

  .hero-carousel {
    min-height: 670px;
  }

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

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

  .section-shell {
    padding: 48px 16px;
  }

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

  .big-search {
    flex-direction: column;
  }

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

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

  .movie-card p,
  .tag-row {
    display: none;
  }

  .ranking-item {
    grid-template-columns: 62px 34px minmax(0, 1fr);
  }

  .ranking-score {
    grid-column: 3;
    justify-self: start;
    font-size: 18px;
  }

  .ranking-cover {
    width: 62px;
  }

  .detail-inner {
    padding: 44px 16px;
  }

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

  .player-card,
  .content-card,
  .side-card,
  .feature-panel {
    padding: 18px;
    border-radius: 22px;
  }
}
