:root {
  --red-950: #360606;
  --red-900: #5f0f12;
  --red-800: #7f1d1d;
  --red-700: #b91c1c;
  --amber-950: #451a03;
  --amber-800: #92400e;
  --amber-700: #b45309;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;
  --cream: #fff7ed;
  --paper: #fffbeb;
  --ink: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(69, 10, 10, 0.18);
  --soft-shadow: 0 14px 34px rgba(120, 53, 15, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7ed 0%, #fef3c7 42%, #fff7ed 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.92);
  border-bottom: 1px solid rgba(217, 119, 6, 0.22);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--red-900);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
  box-shadow: 0 12px 30px rgba(185, 28, 28, 0.28);
}

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

.brand-text strong {
  font-size: 21px;
  letter-spacing: 0.02em;
}

.brand-text em {
  margin-top: 4px;
  color: var(--amber-700);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--red-800);
  font-weight: 700;
}

.desktop-nav > a,
.nav-dropdown > button {
  position: relative;
  padding: 24px 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.desktop-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.nav-dropdown:hover > button::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  padding: 12px;
  display: grid;
  gap: 6px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 18px;
  background: rgba(255, 251, 235, 0.98);
  box-shadow: var(--soft-shadow);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-link {
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--red-800);
}

.nav-dropdown-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 14px;
  background: #fff;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--red-800);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 251, 235, 0.96);
  box-shadow: var(--soft-shadow);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--red-800);
  background: rgba(254, 243, 199, 0.72);
  font-weight: 700;
}

.hero-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: var(--red-950);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
  align-items: center;
  gap: 40px;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  background-size: cover;
  background-position: center;
  filter: saturate(1.08);
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 22%, rgba(252, 211, 77, 0.24), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(185, 28, 28, 0.25), transparent 34%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  padding-top: 32px;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber-300);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 24px;
  color: rgba(255, 251, 235, 0.86);
  font-size: 20px;
}

.hero-tags,
.detail-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-tags span,
.detail-meta span,
.rank-meta span {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(252, 211, 77, 0.36);
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
}

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

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

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
  box-shadow: 0 18px 34px rgba(185, 28, 28, 0.26);
}

.primary-btn:hover,
.rank-play:hover,
.section-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(185, 28, 28, 0.28);
}

.ghost-btn {
  color: #fff7ed;
  border-color: rgba(252, 211, 77, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.ghost-btn.dark {
  color: var(--red-800);
  border-color: rgba(217, 119, 6, 0.36);
  background: rgba(255, 251, 235, 0.84);
}

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  max-height: 470px;
  border: 5px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  background: linear-gradient(135deg, var(--amber-800), var(--red-900));
}

.hero-poster img,
.card-cover img,
.rank-thumb img,
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
}

.hero-prev,
.hero-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}

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

.hero-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
}

.hero-dot.active {
  width: 34px;
  border-radius: 999px;
  background: var(--amber-300);
}

.quick-cats {
  background: linear-gradient(90deg, var(--red-900), var(--amber-800));
}

.quick-cats-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.quick-cats-inner > span {
  flex: 0 0 auto;
  color: var(--amber-300);
  font-weight: 900;
}

.quick-cats-inner div {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.quick-cats-inner a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.content-section {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.tinted-section {
  width: 100%;
  max-width: none;
  padding: 72px max(16px, calc((100% - 1240px) / 2));
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.76), rgba(254, 226, 226, 0.66));
}

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

.section-heading h2 {
  margin: 0;
  color: var(--red-900);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-more,
.rank-play {
  color: #fff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
}

.search-panel {
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(217, 119, 6, 0.22);
  border-radius: 22px;
  background: rgba(255, 251, 235, 0.82);
  box-shadow: var(--soft-shadow);
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--red-900);
  font-weight: 900;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.movie-search {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-radius: 16px;
  outline: none;
  color: var(--red-900);
  background: #fff;
}

.movie-search:focus {
  border-color: var(--amber-600);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

.search-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(120, 53, 15, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 119, 6, 0.42);
  box-shadow: var(--shadow);
}

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-800), var(--red-900));
}

.card-cover img {
  transition: transform 0.4s ease;
}

.movie-card:hover .card-cover img {
  transform: scale(1.06);
}

.card-badge,
.card-play {
  position: absolute;
  z-index: 2;
}

.card-badge {
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(185, 28, 28, 0.86);
  font-size: 12px;
  font-weight: 900;
}

.card-play {
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 16px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--amber-700);
  font-size: 13px;
  font-weight: 800;
}

.card-body h3 {
  margin: 0 0 8px;
  color: var(--red-900);
  font-size: 19px;
  line-height: 1.24;
}

.card-body h3 a:hover {
  color: var(--red-700);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 4px 8px;
  border-radius: 8px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 700;
}

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

.category-mini,
.category-card,
.story-card {
  padding: 22px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 235, 0.84);
  box-shadow: var(--soft-shadow);
}

.category-mini-title,
.category-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: var(--red-900);
  font-size: 23px;
  font-weight: 900;
}

.category-card-head em {
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-700);
  font-size: 13px;
  font-style: normal;
}

.category-mini p,
.category-card p {
  margin: 0 0 16px;
  color: var(--muted);
}

.category-mini ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-mini li a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
}

.category-mini li a:hover,
.category-samples a:hover {
  color: var(--red-700);
}

.category-mini li span {
  color: var(--muted);
  font-size: 13px;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.category-samples a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--red-800);
  font-size: 13px;
  font-weight: 700;
}

.page-main,
.detail-main {
  min-height: 68vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px max(16px, calc((100% - 1240px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(252, 211, 77, 0.22), transparent 28%),
    linear-gradient(135deg, var(--red-950), var(--amber-800));
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(255, 251, 235, 0.86);
  font-size: 19px;
}

.rank-section {
  max-width: 1040px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 64px 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(120, 53, 15, 0.08);
}

.rank-num {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
  font-weight: 900;
}

.rank-thumb {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--amber-800), var(--red-900));
}

.rank-info h2 {
  margin: 0 0 6px;
  color: var(--red-900);
  font-size: 22px;
}

.rank-info p {
  margin: 0 0 10px;
  color: var(--muted);
}

.rank-meta {
  margin-bottom: 0;
}

.rank-meta span {
  color: var(--red-800);
  border-color: rgba(217, 119, 6, 0.24);
  background: var(--amber-100);
}

.breadcrumb {
  width: min(1240px, calc(100% - 32px));
  margin: 22px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--red-800);
  font-weight: 800;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 40px;
  padding: 64px max(16px, calc((100% - 1240px) / 2));
  color: #fff;
  background: var(--red-950);
}

.detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.detail-poster,
.detail-info {
  position: relative;
  z-index: 2;
}

.detail-poster {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  background: linear-gradient(135deg, var(--amber-800), var(--red-900));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: rgba(255, 251, 235, 0.88);
  font-size: 20px;
}

.detail-tags {
  margin-bottom: 26px;
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #000;
  box-shadow: 0 30px 80px rgba(69, 10, 10, 0.3);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at center, rgba(245, 158, 11, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}

.player-overlay.hidden {
  display: none;
}

.play-circle {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--red-700), var(--amber-600));
  box-shadow: 0 20px 46px rgba(185, 28, 28, 0.36);
  font-size: 32px;
}

.player-overlay strong {
  font-size: clamp(24px, 4vw, 42px);
}

.player-overlay em {
  color: var(--amber-300);
  font-style: normal;
  font-weight: 800;
}

.detail-content {
  width: min(1240px, calc(100% - 32px));
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.story-card h2 {
  margin: 0 0 12px;
  color: var(--red-900);
  font-size: 28px;
}

.story-card p {
  margin: 0;
  color: #374151;
  font-size: 17px;
  line-height: 1.9;
}

.site-footer {
  margin-top: 72px;
  color: #fff7ed;
  background: linear-gradient(135deg, var(--red-950), var(--amber-950));
}

.footer-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 34px;
}

.brand-footer {
  color: #fff;
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255, 251, 235, 0.72);
}

.footer-links h2 {
  margin: 0 0 16px;
  color: var(--amber-300);
  font-size: 20px;
}

.footer-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 251, 235, 0.84);
  background: rgba(255, 255, 255, 0.09);
}

.footer-links a:hover {
  color: #fff;
  background: rgba(245, 158, 11, 0.35);
}

.footer-bottom {
  padding: 18px 16px;
  color: rgba(255, 251, 235, 0.72);
  text-align: center;
  border-top: 1px solid rgba(252, 211, 77, 0.16);
}

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

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

  .hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-poster {
    display: none;
  }

  .rank-item {
    grid-template-columns: 56px 110px minmax(0, 1fr);
  }

  .rank-play {
    grid-column: 3;
    justify-self: start;
  }
}

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 62px);
  }

  .hero-content p {
    font-size: 17px;
  }

  .quick-cats-inner,
  .section-heading,
  .search-box {
    align-items: stretch;
    flex-direction: column;
  }

  .movie-grid,
  .category-mini-grid,
  .category-grid,
  .detail-content,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .detail-poster {
    width: min(280px, 82vw);
  }

  .rank-item {
    grid-template-columns: 48px 96px minmax(0, 1fr);
    align-items: start;
  }
}

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

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

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

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

  .hero-slide {
    width: min(100% - 28px, 1240px);
  }

  .hero-actions,
  .page-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn,
  .section-more,
  .rank-play {
    width: 100%;
  }

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

  .rank-item {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .rank-thumb {
    display: none;
  }

  .rank-play {
    grid-column: 2;
  }

  .player-section,
  .detail-content,
  .content-section,
  .breadcrumb {
    width: min(100% - 24px, 1240px);
  }
}
