:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-solid: #0f172a;
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #06b6d4;
  --cyan-strong: #22d3ee;
  --blue: #2563eb;
  --pink: #ec4899;
  --shadow: 0 22px 70px rgba(8, 145, 178, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(8, 145, 178, 0.18), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(124, 58, 237, 0.16), transparent 26rem),
    linear-gradient(135deg, #020617 0%, #0f172a 42%, #020617 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

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

main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(16px);
}

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

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

.brand-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--cyan-strong);
}

.brand-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.22);
  filter: blur(14px);
}

.brand-icon svg {
  position: relative;
  z-index: 1;
  fill: currentColor;
  filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.45));
}

.brand-icon svg path:last-child {
  fill: #020617;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.02em;
}

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

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

.nav-link {
  color: #cbd5e1;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.quick-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(280px, 24vw);
  padding: 6px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
}

.quick-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 8px 4px 8px 12px;
}

.quick-search button,
.primary-button,
.secondary-button,
.player-button,
.section-more,
.page-link {
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.quick-search button,
.primary-button,
.player-button {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.28);
}

.quick-search button {
  padding: 8px 14px;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(30, 41, 59, 0.88);
  font-size: 22px;
}

.mobile-nav {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.58);
}

.hero-carousel {
  position: relative;
  height: min(720px, 70vh);
  min-height: 520px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.1), rgba(8, 145, 178, 0.15)),
    var(--cover-image),
    linear-gradient(135deg, #0f172a, #020617 70%);
  background-size: cover;
  background-position: center;
}

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

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

.hero-cover {
  position: absolute;
  inset: 0;
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.86) 26%, rgba(2, 6, 23, 0.28) 68%, rgba(2, 6, 23, 0.62) 100%),
    radial-gradient(circle at 18% 72%, rgba(6, 182, 212, 0.34), transparent 26rem);
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(48px, 8vw, 96px);
  width: min(1280px, calc(100% - 32px));
  transform: translateX(-50%);
}

.hero-copy-inner {
  max-width: 720px;
}

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

.hero-tags span,
.detail-tags span,
.movie-card-tags span,
.filter-chips a,
.footer-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #dbeafe;
  font-size: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.9);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: #d1d5db;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.primary-button,
.secondary-button,
.player-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.secondary-button {
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  font-size: 28px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

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

.page-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.page-head {
  margin-bottom: 34px;
}

.page-head h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
}

.page-head p {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.85;
}

.content-section {
  margin-top: 64px;
}

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

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cyan-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.section-more {
  color: var(--cyan-strong);
  background: rgba(8, 145, 178, 0.12);
  padding: 10px 16px;
  border: 1px solid rgba(34, 211, 238, 0.22);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.13);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 14px 38px rgba(2, 6, 23, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: var(--shadow);
}

.poster-frame,
.rank-poster,
.detail-poster {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.28), transparent 14rem),
    var(--cover-image),
    linear-gradient(135deg, #1e293b, #020617);
  background-size: cover;
  background-position: center;
}

.poster-frame {
  aspect-ratio: 2 / 3;
}

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

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

.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.36));
}

.poster-badge,
.poster-year {
  position: absolute;
  z-index: 2;
  top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
}

.poster-badge {
  left: 10px;
}

.poster-year {
  right: 10px;
}

.poster-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.92);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

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

.movie-card-body h3 {
  min-height: 2.6em;
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-meta,
.movie-card-summary {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.movie-card-meta {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.movie-card-summary {
  min-height: 3.1em;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card-tags {
  margin-top: 12px;
}

.movie-card-tags span {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 11px;
}

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

.channel-card {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.16), transparent 13rem),
    rgba(15, 23, 42, 0.74);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.channel-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.32);
}

.channel-card h2,
.channel-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.channel-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.channel-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-samples span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(2, 6, 23, 0.35);
  font-size: 12px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.rank-item:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.34);
}

.rank-no {
  color: var(--cyan-strong);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rank-poster {
  width: 76px;
  aspect-ratio: 2 / 3;
  border-radius: 12px;
}

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

.rank-copy strong {
  display: block;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-copy span {
  color: var(--muted);
  font-size: 13px;
}

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

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

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

.detail-top {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(6, 182, 212, 0.15), transparent 16rem),
    rgba(15, 23, 42, 0.76);
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  box-shadow: 0 18px 54px rgba(2, 6, 23, 0.34);
}

.detail-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--soft);
}

.detail-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.36);
}

.detail-lead {
  color: #e2e8f0;
  font-size: 18px;
  line-height: 1.8;
}

.player-panel,
.text-panel,
.side-panel {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.74);
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.player-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-layer {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 20rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.1));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-playing .player-layer {
  opacity: 0;
  visibility: hidden;
}

.player-button {
  min-width: 148px;
  gap: 10px;
  font-size: 16px;
}

.player-button span:first-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.player-message {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.72);
}

.player-message.is-visible {
  display: block;
}

.text-panel p {
  color: #dbeafe;
  line-height: 1.95;
  margin: 0 0 18px;
}

.text-panel p:last-child {
  margin-bottom: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.side-panel {
  position: sticky;
  top: 100px;
  margin-top: 0;
}

.side-panel .rank-list {
  grid-template-columns: 1fr;
}

.side-panel .rank-item {
  grid-template-columns: 42px 58px minmax(0, 1fr);
}

.side-panel .rank-poster {
  width: 58px;
}

.search-panel {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.76);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
}

.search-form input,
.search-select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  outline: 0;
  color: #fff;
  background: rgba(2, 6, 23, 0.6);
  padding: 0 14px;
}

.search-form button {
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 800;
  cursor: pointer;
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.page-link {
  min-width: 42px;
  padding: 10px 14px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(148, 163, 184, 0.16);
  text-align: center;
}

.page-link.is-current,
.page-link:hover {
  color: #fff;
  background: rgba(6, 182, 212, 0.84);
  border-color: rgba(34, 211, 238, 0.6);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(2, 6, 23, 0.74);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

.footer-brand strong,
.footer-group h2 {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-tags a:hover {
  color: var(--cyan-strong);
}

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1180px) {
  .desktop-nav,
  .quick-search {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

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

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

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

  .side-panel {
    position: static;
  }
}

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

  .brand-text small {
    display: none;
  }

  .hero-carousel {
    height: 68vh;
    min-height: 520px;
  }

  .hero-copy {
    bottom: 68px;
  }

  .hero-arrow {
    display: none;
  }

  .page-wrap {
    padding-top: 38px;
  }

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

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

  .channel-grid,
  .filter-grid,
  .rank-list,
  .footer-inner,
  .search-filters {
    grid-template-columns: 1fr;
  }

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

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

  .search-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .page-wrap,
  .footer-inner,
  .footer-bottom,
  .mobile-nav {
    width: min(100% - 24px, 1280px);
  }

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

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

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

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

  .primary-button,
  .secondary-button,
  .player-button {
    width: 100%;
  }

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

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

  .detail-top,
  .player-panel,
  .text-panel,
  .side-panel,
  .search-panel {
    padding: 16px;
    border-radius: 18px;
  }
}
