:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: #111827;
  --panel-strong: #172033;
  --text: #f8fafc;
  --muted: #94a3b8;
  --subtle: #64748b;
  --line: rgba(148, 163, 184, 0.16);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.16);
  --orange: #fb923c;
  --pink: #f472b6;
  --radius: 22px;
  --shadow: 0 28px 90px rgba(2, 6, 23, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(244, 114, 182, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #04111c;
  background: linear-gradient(135deg, var(--cyan), #67e8f9 48%, #f0abfc);
  box-shadow: 0 12px 32px rgba(34, 211, 238, 0.25);
}

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

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

.nav-link {
  color: #cbd5e1;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(34, 211, 238, 0.14);
  transform: translateY(-1px);
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(360px, 32vw);
}

.header-search input,
.mobile-panel input,
.big-search input,
.filter-bar input {
  width: 100%;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  outline: none;
  padding: 11px 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input:focus,
.mobile-panel input:focus,
.big-search input:focus,
.filter-bar input:focus {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
  background: rgba(15, 23, 42, 0.96);
}

.header-search button,
.mobile-panel button,
.big-search button {
  border: 0;
  color: #04111c;
  font-weight: 800;
  border-radius: 999px;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--cyan), #a5f3fc);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search button:hover,
.mobile-panel button:hover,
.big-search button:hover,
.primary-button:hover,
.ghost-button:hover,
.section-more:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.92);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #e2e8f0;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.92);
}

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

.mobile-panel a {
  color: #cbd5e1;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.08);
}

.mobile-panel form {
  display: flex;
  gap: 8px;
}

.hero-slider {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
  background: #020617;
}

.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-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.1) contrast(1.05);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.78) 38%, rgba(15, 23, 42, 0.34) 66%, rgba(2, 6, 23, 0.76)),
    linear-gradient(0deg, #020617, rgba(2, 6, 23, 0.14) 38%, rgba(2, 6, 23, 0.05));
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 120px 0 200px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-copy h1 {
  font-size: clamp(42px, 7vw, 92px);
}

.hero-copy h2 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 70px);
}

.hero-desc,
.page-hero p,
.detail-one-line,
.intro-copy p,
.category-card p,
.movie-card-body p,
.detail-content p,
.site-footer p {
  color: #cbd5e1;
  line-height: 1.75;
}

.hero-desc {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: clamp(16px, 1.7vw, 20px);
}

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

.hero-tags,
.detail-tags {
  margin-top: 18px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-button,
.ghost-button,
.section-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-button {
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), #67e8f9);
  box-shadow: 0 16px 36px rgba(34, 211, 238, 0.25);
}

.ghost-button,
.section-more {
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(12px);
}

.ghost-button:hover,
.section-more:hover {
  border-color: rgba(34, 211, 238, 0.48);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 999px;
  color: white;
  background: rgba(2, 6, 23, 0.48);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

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

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

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

.hero-dots button {
  width: 36px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.28);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--cyan);
}

.hero-search-card {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 8;
  width: min(1040px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(148, 163, 184, 0.17);
  border-radius: 28px;
  padding: 16px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-search-card form,
.big-search {
  display: flex;
  gap: 10px;
}

.hero-search-card input {
  flex: 1;
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  padding: 14px 18px;
  outline: none;
}

.hero-search-card button {
  border: 0;
  border-radius: 999px;
  color: #04111c;
  font-weight: 900;
  padding: 0 22px;
  background: linear-gradient(135deg, #67e8f9, var(--cyan));
  cursor: pointer;
}

.hero-category-pills,
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.hero-category-pills a,
.search-chips button {
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  padding: 8px 12px;
  cursor: pointer;
}

.page-wrap,
.content-section,
.site-footer,
.rank-list-section,
.quick-links {
  width: min(1240px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.page-wrap {
  padding: 42px 0 72px;
}

.content-section {
  padding: 54px 0 0;
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.intro-copy,
.intro-stats,
.page-hero,
.quick-links,
.rank-list-section,
.detail-hero,
.watch-section,
.detail-content,
.category-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 41, 59, 0.72));
  box-shadow: var(--shadow);
}

.intro-copy,
.intro-stats {
  padding: 28px;
}

.intro-copy h2,
.section-head h2,
.quick-links h2,
.rank-list-section h2,
.detail-content h2,
.watch-head h2 {
  margin: 0;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.intro-copy h2,
.section-head h2,
.quick-links h2,
.rank-list-section h2 {
  font-size: clamp(26px, 3vw, 40px);
}

.intro-stats {
  display: grid;
  gap: 12px;
}

.intro-stats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 18px;
  color: #e2e8f0;
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.intro-stats a::after {
  content: "›";
  color: var(--cyan);
  font-size: 24px;
}

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

.section-head p {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.86);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.36);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
}

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

.movie-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.74) saturate(1.12);
}

.poster-shine {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), transparent);
}

.play-chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  opacity: 0;
  color: #031018;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  background: var(--cyan);
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.rank-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #04111c;
  background: linear-gradient(135deg, #fde68a, #fb923c);
  box-shadow: 0 12px 30px rgba(251, 146, 60, 0.25);
}

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

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 12px;
}

.movie-card h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.movie-card h2 a:hover {
  color: var(--cyan);
}

.movie-card-body p {
  min-height: 48px;
  margin: 8px 0 12px;
  font-size: 13px;
}

.movie-card.is-compact .movie-card-body p {
  min-height: 42px;
}

.tag-row {
  gap: 5px;
}

.tag-row span {
  padding: 4px 7px;
  color: #bae6fd;
  font-size: 11px;
}

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

.category-card {
  display: block;
  padding: 26px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.42);
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.28), rgba(15, 23, 42, 0.92));
}

.category-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.category-card h3 {
  margin: 12px 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.category-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.category-card div span {
  color: #cbd5e1;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.11);
  padding: 7px 10px;
  font-size: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 74px);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.24), transparent 65%);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(38px, 5vw, 68px);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 17px;
}

.filter-bar {
  margin-bottom: 22px;
}

.quick-links {
  margin-top: 24px;
  padding: 24px;
}

.quick-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.quick-links a {
  color: #dbeafe;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  padding: 9px 12px;
}

.empty-text {
  display: none;
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.86);
  padding: 20px;
}

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

.rank-list-section {
  margin-top: 54px;
  padding: 28px;
}

.rank-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.rank-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border-radius: 16px;
  color: #dbeafe;
  background: rgba(2, 6, 23, 0.26);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.rank-row:hover {
  color: white;
  border-color: rgba(34, 211, 238, 0.36);
}

.rank-row span {
  color: var(--cyan);
  font-weight: 900;
}

.rank-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

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

.breadcrumb a {
  color: #bae6fd;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(210px, 310px) 1fr;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(22px, 4vw, 42px);
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(2, 6, 23, 0.45);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.38);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.detail-info {
  align-self: center;
}

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

.detail-one-line {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
}

.watch-section {
  margin-top: 28px;
  padding: clamp(16px, 3vw, 26px);
}

.watch-head {
  margin-bottom: 18px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.72));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.play-button {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #04111c;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  font-size: 34px;
  box-shadow: 0 18px 50px rgba(34, 211, 238, 0.32);
}

.detail-content {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 38px);
  display: grid;
  grid-template-columns: 1fr 1fr minmax(240px, 0.76fr);
  gap: 28px;
}

.detail-content p {
  margin-bottom: 0;
}

.detail-content dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.detail-content dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-content dt {
  color: var(--subtle);
}

.detail-content dd {
  margin: 0;
  color: #e2e8f0;
}

.site-footer {
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 16px;
}

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

.footer-links a {
  color: #94a3b8;
}

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

.footer-bottom {
  margin-top: 28px;
  color: #64748b;
  font-size: 13px;
}

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

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

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

  .menu-button {
    display: block;
    margin-left: auto;
  }

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

  .hero-content {
    align-items: flex-start;
    padding-top: 110px;
  }

  .hero-search-card {
    bottom: 24px;
  }

  .hero-dots {
    bottom: 180px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-search-card form,
  .big-search,
  .mobile-panel form {
    flex-direction: column;
  }

  .intro-panel,
  .category-grid,
  .footer-grid,
  .detail-hero {
    grid-template-columns: 1fr;
  }

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

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

  .rank-row {
    grid-template-columns: 44px 1fr;
  }

  .rank-row em {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .header-inner {
    width: min(100% - 24px, 1240px);
  }

  .brand-text {
    font-size: 18px;
  }

  .page-wrap,
  .content-section,
  .site-footer,
  .rank-list-section,
  .quick-links {
    width: min(100% - 24px, 1240px);
  }

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

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy h2 {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-search-card {
    width: calc(100% - 24px);
    border-radius: 22px;
  }

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

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

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

  .movie-card h2 {
    font-size: 14px;
  }

  .page-hero,
  .quick-links,
  .rank-list-section,
  .detail-hero,
  .watch-section,
  .detail-content,
  .category-card {
    border-radius: 22px;
  }

  .play-button {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}
