:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #0f172a;
  --panel: #111827;
  --panel-strong: #1e293b;
  --border: rgba(148, 163, 184, 0.18);
  --border-bright: rgba(56, 189, 248, 0.38);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --accent-dark: #0369a1;
  --danger: #f97316;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(2, 6, 23, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 32rem),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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: 60;
  border-bottom: 1px solid rgba(30, 41, 59, 0.9);
  background: rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.28);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark,
.footer-brand span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.35);
  font-size: 14px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

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

.desktop-nav a,
.mobile-panel a {
  color: #cbd5e1;
  font-size: 15px;
  transition: color 0.22s ease, transform 0.22s ease;
}

.desktop-nav a:hover,
.mobile-panel a:hover {
  color: white;
  transform: translateY(-1px);
}

.top-search {
  position: relative;
  width: 230px;
}

.top-search input,
.mobile-search input,
.filter-input,
.filter-select {
  width: 100%;
  border: 1px solid rgba(51, 65, 85, 0.95);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: white;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.top-search input {
  height: 40px;
  padding: 0 44px 0 18px;
}

.mobile-search input {
  height: 42px;
  padding: 0 16px;
}

.top-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.filter-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.top-search button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.top-search button:hover {
  color: white;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: white;
}

.mobile-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
}

.mobile-panel nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mobile-search {
  display: flex;
  gap: 10px;
}

.mobile-search button,
.primary-button,
.secondary-button,
.filter-button,
.hero-arrow,
.hero-dot,
.play-overlay {
  cursor: pointer;
}

.mobile-search button,
.primary-button,
.filter-button.active {
  border: 0;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.mobile-search button {
  border-radius: 999px;
  padding: 0 18px;
}

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

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #020617;
}

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

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

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.55) 45%, rgba(2, 6, 23, 0.12) 100%),
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.26) 48%, rgba(2, 6, 23, 0.36) 100%);
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: 70px;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
}

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

.hero-kicker,
.section-kicker,
.detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.18);
  color: #e0f2fe;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.hero h2 {
  margin: 20px 0 16px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #dbeafe;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.75;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.primary-button:hover,
.secondary-button:hover,
.filter-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  border: 1px solid rgba(226, 232, 240, 0.3);
  background: rgba(15, 23, 42, 0.56);
  color: white;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.36);
  color: white;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
  background: rgba(2, 6, 23, 0.68);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
  width: 34px;
  background: white;
}

.main-content {
  padding: 64px 0 80px;
}

.section-block {
  margin-bottom: 72px;
}

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

.section-heading h2,
.page-title h1,
.detail-title h1 {
  margin: 10px 0 0;
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

.section-link {
  color: var(--accent);
  font-weight: 700;
}

.section-link:hover {
  color: #bae6fd;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-card a {
  display: block;
  height: 100%;
  border: 1px solid rgba(51, 65, 85, 0.78);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.92), rgba(15, 23, 42, 0.98));
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card a:hover {
  border-color: var(--border-bright);
  box-shadow: 0 24px 50px rgba(14, 165, 233, 0.18);
  transform: translateY(-6px);
}

.movie-poster {
  position: relative;
  height: 265px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.86), rgba(2, 6, 23, 0.92));
}

.movie-card-small .movie-poster {
  height: 190px;
}

.movie-card-large .movie-poster {
  height: 330px;
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease, filter 0.48s ease;
}

.movie-card a:hover .movie-poster img {
  filter: brightness(0.78);
  transform: scale(1.08);
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.78), transparent 58%);
  opacity: 0.76;
}

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.62);
  color: white;
  padding: 6px 10px;
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
  color: white;
  opacity: 0;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

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

.movie-card-body h3 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 10px;
  overflow: hidden;
  color: white;
  font-size: 17px;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.22s ease;
}

.movie-card a:hover h3 {
  color: #7dd3fc;
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-meta-row,
.movie-tags-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #64748b;
  font-size: 12px;
}

.movie-meta-row span {
  border: 1px solid rgba(100, 116, 139, 0.36);
  border-radius: 999px;
  padding: 4px 8px;
}

.movie-tags-inline {
  margin-top: 12px;
  color: #94a3b8;
}

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

.category-tile {
  position: relative;
  min-height: 160px;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(2, 6, 23, 0.98));
  padding: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-tile:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
}

.category-tile h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

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

.category-tile span {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.page-hero {
  border-bottom: 1px solid rgba(30, 41, 59, 0.78);
  background:
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.22), transparent 34rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  padding: 74px 0 58px;
}

.page-title {
  max-width: 820px;
}

.page-title p {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.76;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  margin: 0 0 32px;
  border: 1px solid rgba(51, 65, 85, 0.74);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  padding: 16px;
}

.filter-input,
.filter-select {
  height: 46px;
  padding: 0 16px;
}

.filter-select {
  appearance: none;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 70px 120px 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.78);
  padding: 14px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.ranking-item:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}

.rank-number {
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  position: relative;
  height: 82px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
}

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

.rank-info h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.rank-info p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rank-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(30, 41, 59, 0.76);
  background: #020617;
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  filter: blur(6px);
  transform: scale(1.08);
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.72)),
    linear-gradient(0deg, #020617, rgba(2, 6, 23, 0.12));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 38px;
  padding: 56px 0;
}

.detail-poster {
  border-radius: 24px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: white;
}

.detail-title h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.detail-summary {
  max-width: 820px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.82;
}

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

.detail-meta-grid span,
.tag-chip {
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: #dbeafe;
  padding: 8px 12px;
  font-size: 14px;
}

.player-section {
  padding: 64px 0 28px;
}

.player-card {
  border: 1px solid rgba(51, 65, 85, 0.8);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  padding: 18px;
  box-shadow: var(--shadow);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #000;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background:
    radial-gradient(circle at center, rgba(14, 165, 233, 0.18), transparent 17rem),
    rgba(2, 6, 23, 0.28);
  color: white;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.play-overlay span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  font-size: 28px;
  box-shadow: 0 20px 60px rgba(14, 165, 233, 0.24);
}

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

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: 34px 0 70px;
}

.article-panel,
.side-panel {
  border: 1px solid rgba(51, 65, 85, 0.72);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.7);
  padding: 26px;
}

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

.article-panel p {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.95;
}

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

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

.side-link {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
}

.side-link img {
  width: 76px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  background: #0f172a;
}

.side-link strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.side-link span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.empty-state {
  display: none;
  border: 1px dashed rgba(148, 163, 184, 0.32);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 32px;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(30, 41, 59, 0.78);
  background: rgba(2, 6, 23, 0.92);
  padding: 52px 0 28px;
}

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

.footer-brand {
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.site-footer p {
  max-width: 440px;
  color: var(--muted);
  line-height: 1.78;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: white;
  font-size: 16px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 32px auto 0;
  border-top: 1px solid rgba(30, 41, 59, 0.78);
  color: #64748b;
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
}

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

  .mobile-toggle {
    display: block;
  }

  .top-search {
    margin-left: auto;
  }

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

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

@media (max-width: 820px) {
  .site-header-inner {
    height: 66px;
  }

  .brand-copy small,
  .top-search {
    display: none;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    bottom: 66px;
  }

  .hero-arrow {
    display: none;
  }

  .main-content {
    padding-top: 44px;
  }

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

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

  .movie-poster,
  .movie-card-large .movie-poster {
    height: 230px;
  }

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

  .ranking-item {
    grid-template-columns: 48px 92px 1fr;
  }

  .rank-meta {
    grid-column: 2 / -1;
    align-items: start;
    flex-direction: row;
  }

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

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

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

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

@media (max-width: 520px) {
  .site-header-inner,
  .container,
  .mobile-panel,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero {
    height: 520px;
  }

  .hero h1,
  .hero h2 {
    font-size: 38px;
  }

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

  .movie-poster,
  .movie-card-small .movie-poster,
  .movie-card-large .movie-poster {
    height: 320px;
  }

  .detail-poster img {
    height: 420px;
  }

  .player-card {
    padding: 10px;
    border-radius: 18px;
  }

  .video-shell {
    border-radius: 14px;
  }
}
