:root {
  --bg: #ffffff;
  --soft: #fff7f8;
  --soft-2: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --rose: #f43f5e;
  --rose-dark: #e11d48;
  --pink: #ec4899;
  --orange: #fb923c;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 46%, #fff7f8 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(244, 63, 94, 0.26);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link,
.mobile-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #374151;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover,
.nav-link.active,
.mobile-link.active {
  color: var(--rose);
  background: #fff1f2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff1f2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
}

.mobile-panel {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.mobile-panel.is-open {
  display: grid;
  gap: 6px;
}

.page-main {
  padding-top: 68px;
}

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

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(244, 63, 94, 0.28), transparent 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.12) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: min(1180px, calc(100% - 32px));
  color: #ffffff;
}

.hero-content h1 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(244, 63, 94, 0.3);
}

.hero-tags,
.tag-row,
.detail-meta,
.filter-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.tag-row span,
.detail-meta 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: 700;
}

.tag-row span,
.detail-meta span {
  color: #be123c;
  background: #fff1f2;
}

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

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

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 16px 30px rgba(244, 63, 94, 0.35);
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.text-link:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.active {
  width: 38px;
  background: #ffffff;
}

.content-section {
  padding: 74px max(16px, calc((100% - 1180px) / 2));
}

.section-white {
  background: #ffffff;
}

.section-soft {
  background: linear-gradient(180deg, #f9fafb, #ffffff);
}

.section-rose {
  background: linear-gradient(135deg, #fff1f2, #fdf2f8 55%, #fffbeb);
}

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

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading h2 span {
  color: var(--rose);
}

.section-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-more,
.text-link {
  color: var(--rose);
  background: #fff1f2;
}

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

.category-tile,
.category-overview-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 170px;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  border-radius: var(--radius);
  box-shadow: 0 18px 35px rgba(244, 63, 94, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:nth-child(2n),
.category-overview-card:nth-child(2n) {
  background: linear-gradient(135deg, #fb7185, #f97316);
}

.category-tile:nth-child(3n),
.category-overview-card:nth-child(3n) {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.category-tile:nth-child(4n),
.category-overview-card:nth-child(4n) {
  background: linear-gradient(135deg, #0ea5e9, #f43f5e);
}

.category-tile:hover,
.category-overview-card:hover,
.movie-card:hover,
.horizontal-card:hover,
.ranking-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.category-tile span,
.category-overview-title span {
  font-size: 44px;
}

.category-tile strong,
.category-overview-title strong {
  font-size: 22px;
  font-weight: 950;
}

.category-tile small,
.category-overview-card p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
}

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

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f2, #f9fafb);
}

.movie-card.compact .poster-wrap {
  aspect-ratio: 4 / 5;
}

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

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

.poster-badge,
.rank-no,
.hot-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(244, 63, 94, 0.26);
}

.rank-no {
  left: auto;
  right: 12px;
  background: rgba(17, 24, 39, 0.72);
}

.play-float {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(244, 63, 94, 0.88);
  border-radius: 999px;
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.card-meta,
.mini-meta {
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
}

.card-body h3,
.horizontal-card h3,
.ranking-info h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.card-body p,
.horizontal-card p,
.ranking-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

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

.horizontal-card,
.ranking-row {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.horizontal-card img,
.ranking-row img {
  width: 112px;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
  background: #fff1f2;
}

.hot-rank {
  left: auto;
  right: 12px;
  top: 12px;
}

.rank-panel {
  padding: 24px;
  background: linear-gradient(180deg, #111827, #3f0f1c);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rank-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: #ffffff;
}

.rank-head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 950;
}

.rank-head a {
  color: #fecdd3;
  font-weight: 800;
}

.compact-list .horizontal-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.compact-list .horizontal-card h3 {
  color: #ffffff;
}

.compact-list .horizontal-card p {
  color: rgba(255, 255, 255, 0.72);
}

.inner-page {
  background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.page-hero {
  position: relative;
  padding: 96px max(16px, calc((100% - 1180px) / 2)) 56px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #111827 0%, #881337 52%, #f43f5e 100%);
}

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

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.filter-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.search-box input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  color: var(--text);
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.search-box input:focus {
  background: #ffffff;
  border-color: #fb7185;
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12);
}

.filter-chip {
  min-height: 36px;
  padding: 0 14px;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.filter-chip:hover,
.filter-chip.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  border-color: transparent;
}

.category-overview-card {
  min-height: 240px;
  color: #ffffff;
}

.category-overview-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-sample {
  display: grid;
  gap: 8px;
  margin: 6px 0 10px;
}

.category-sample a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.category-overview-card .text-link {
  margin-top: auto;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

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

.ranking-row {
  grid-template-columns: 54px 98px minmax(0, 1fr) 42px;
}

.ranking-number {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  border-radius: 999px;
  font-weight: 950;
}

.ranking-play {
  color: var(--rose);
  font-size: 26px;
}

.ranking-info small {
  color: #9ca3af;
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--rose);
  font-weight: 750;
}

.detail-page {
  background: #ffffff;
}

.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0%, rgba(251, 146, 60, 0.34), transparent 30%),
    linear-gradient(135deg, #111827 0%, #701a75 52%, #be123c 100%);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-poster {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.72;
}

.detail-info .primary-btn {
  margin-top: 28px;
}

.large-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 44px;
}

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

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

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.2), rgba(0, 0, 0, 0.48));
}

.play-overlay span {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  border-radius: 999px;
  font-size: 32px;
  box-shadow: 0 20px 42px rgba(244, 63, 94, 0.36);
  transition: transform 0.2s ease;
}

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

.play-overlay.is-hidden {
  display: none;
}

.detail-copy {
  padding-top: 24px;
}

.movie-copy,
.plain-article {
  width: min(920px, 100%);
  margin: 0 auto;
  color: #374151;
  font-size: 18px;
  line-height: 1.9;
}

.movie-copy h2,
.plain-article h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 950;
}

.movie-copy p + h2,
.plain-article p + h2 {
  margin-top: 34px;
}

.article-section {
  min-height: 420px;
}

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

.site-footer {
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #0f172a);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(180px, 0.6fr));
  gap: 36px;
  padding: 56px 0 34px;
}

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

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

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: var(--shadow);
  font-size: 22px;
  font-weight: 900;
}

.back-top.is-visible {
  display: flex;
}

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

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

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

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

  .nav-toggle {
    display: flex;
  }

  .hero-slider {
    min-height: 620px;
  }

  .hero-content {
    transform: translate(-50%, -42%);
  }

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

  .cards-5,
  .cards-4,
  .cards-3,
  .category-grid,
  .category-overview-grid,
  .split-section,
  .detail-hero,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .detail-hero {
    padding: 22px;
  }

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

@media (max-width: 620px) {
  .site-nav {
    width: calc(100% - 22px);
  }

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

  .hero-slider {
    min-height: 590px;
  }

  .hero-content h1,
  .page-hero h1,
  .detail-info h1 {
    letter-spacing: -0.03em;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .content-section {
    padding: 52px 14px;
  }

  .cards-5,
  .cards-4,
  .cards-3,
  .category-grid,
  .category-overview-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .horizontal-card,
  .ranking-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .ranking-row {
    grid-template-columns: 42px 72px minmax(0, 1fr);
  }

  .ranking-play {
    display: none;
  }

  .horizontal-card img,
  .ranking-row img {
    width: 86px;
    height: 74px;
  }

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

  .page-hero {
    padding-top: 82px;
  }

  .detail-hero,
  .player-section,
  .breadcrumb {
    width: calc(100% - 24px);
  }

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

  .play-overlay span {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }
}
