:root {
  --amber-50: #fff7ed;
  --amber-100: #ffedd5;
  --amber-300: #fcd34d;
  --amber-400: #f59e0b;
  --amber-500: #d97706;
  --amber-600: #b45309;
  --orange-500: #f97316;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-sm: 0 8px 22px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 18px 45px rgba(180, 83, 9, 0.16);
  --shadow-lg: 0 30px 80px rgba(17, 24, 39, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--gray-900);
  background: linear-gradient(180deg, var(--amber-50), var(--white) 36%, var(--white));
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 237, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.18);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.35);
  font-size: 14px;
}

.brand-name {
  font-size: 21px;
}

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

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--gray-700);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-600);
  background: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--amber-600);
  background: var(--white);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(330px, 0.7fr);
  gap: 24px;
}

.hero-carousel {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
  box-shadow: var(--shadow-lg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.55s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 20%, rgba(252, 211, 77, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.86), rgba(17, 24, 39, 0.48) 50%, rgba(17, 24, 39, 0.18));
}

.hero-content {
  position: absolute;
  inset: auto auto 0 0;
  width: min(660px, 92%);
  padding: 70px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--amber-100);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.eyebrow.dark {
  color: var(--amber-600);
  background: var(--amber-100);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.detail-one-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

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

.hero-actions.inline {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--amber-600);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.2);
}

.btn.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn.ghost.light {
  color: var(--amber-600);
  background: var(--amber-100);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.hero-dots {
  position: absolute;
  left: 70px;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

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

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

.hero-panel {
  display: grid;
  gap: 20px;
}

.search-card,
.hero-list,
.ranking-box,
.detail-panel,
.detail-side,
.filter-panel,
.category-highlight-list {
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.search-card,
.hero-list,
.ranking-box,
.filter-panel,
.detail-panel,
.detail-side,
.category-highlight-list {
  padding: 24px;
}

.search-card h2,
.hero-list h2,
.section-head h2,
.detail-panel h2,
.detail-side h2,
.category-overview-card h2,
.top-rank-card h2 {
  margin: 0;
  color: var(--gray-900);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
}

.search-card p,
.section-head p,
.category-card p,
.category-overview-card p,
.top-rank-card p {
  color: var(--gray-600);
  line-height: 1.7;
}

.quick-search,
.filter-panel {
  display: flex;
  gap: 10px;
}

.quick-search {
  margin: 22px 0;
}

.quick-search input,
.filter-panel input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 14px 18px;
  outline: none;
  background: var(--gray-50);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quick-search input:focus,
.filter-panel input:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.quick-search button {
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--amber-500);
  cursor: pointer;
  font-weight: 800;
}

.hero-cats,
.filter-chips,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-cats a,
.filter-chip,
.tag-row span {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--amber-600);
  background: var(--amber-100);
}

.filter-chip {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.filter-chip.active,
.filter-chip:hover {
  color: var(--white);
  background: var(--amber-500);
}

.mini-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border-radius: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mini-card:hover {
  background: var(--amber-50);
  transform: translateY(-2px);
}

.mini-card img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--amber-100);
}

.mini-card strong,
.mini-card em {
  display: block;
}

.mini-card strong {
  margin-bottom: 8px;
  line-height: 1.35;
}

.mini-card em {
  color: var(--gray-500);
  font-size: 13px;
  font-style: normal;
}

.feature-strip,
.content-section,
.page-hero,
.detail-hero {
  width: min(1180px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.feature-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-strip a {
  padding: 22px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-strip a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  margin-bottom: 6px;
  color: var(--amber-600);
  font-size: 20px;
}

.feature-strip span {
  color: var(--gray-600);
}

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

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

.section-head.compact {
  margin-bottom: 18px;
}

.section-head p {
  margin: 8px 0 0;
}

.section-link,
.text-link {
  color: var(--amber-600);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.movie-card.is-hidden {
  display: none;
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--amber-100), var(--amber-300));
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.card-score,
.card-badge,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.card-score {
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(17, 24, 39, 0.68);
}

.card-badge {
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  background: rgba(217, 119, 6, 0.86);
}

.rank-badge {
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--amber-400), var(--orange-500));
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.card-body p {
  min-height: 50px;
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.card-meta span,
.detail-meta span,
.detail-meta strong {
  color: var(--gray-600);
  background: var(--gray-100);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.detail-meta strong {
  color: var(--amber-600);
  background: var(--amber-100);
}

.tag-row {
  margin-top: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  gap: 24px;
}

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

.category-card {
  min-height: 138px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--white), var(--amber-50));
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.category-card span {
  color: var(--amber-600);
  font-size: 22px;
  font-weight: 900;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 44px 1fr 52px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: var(--amber-50);
}

.ranking-row span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--white);
  background: var(--amber-500);
  font-weight: 900;
}

.ranking-row strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranking-row em {
  color: var(--amber-600);
  font-style: normal;
  font-weight: 900;
}

.page-hero {
  margin-top: 34px;
  padding: 54px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 20%, rgba(252, 211, 77, 0.5), transparent 30%),
    linear-gradient(135deg, var(--white), var(--amber-50));
  box-shadow: var(--shadow-sm);
}

.page-hero.small h1 {
  color: var(--gray-900);
  font-size: clamp(36px, 5vw, 60px);
}

.page-hero.small p,
.category-hero p {
  max-width: 780px;
  color: var(--gray-600);
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: center;
}

.filter-box {
  margin-top: 36px;
}

.filter-panel {
  flex-direction: column;
  margin-bottom: 24px;
}

.filter-panel.single {
  display: block;
}

.filter-panel.single input {
  width: 100%;
}

.empty-state {
  display: none;
  padding: 28px;
  border-radius: 22px;
  color: var(--gray-600);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.empty-state.show {
  display: block;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 18px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.category-image {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 3 / 4;
  background: var(--amber-100);
}

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

.category-overview-card ul {
  margin: 14px 0;
  padding-left: 18px;
  color: var(--gray-600);
  line-height: 1.8;
}

.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.top-rank-card {
  padding: 18px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.top-rank-card a:first-child {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
}

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

.top-rank-card span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--amber-500);
  font-weight: 900;
}

.top-rank-card h2 {
  margin-top: 16px;
  font-size: 24px;
}

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

.rank-list-item {
  display: grid;
  grid-template-columns: 60px 58px minmax(0, 1fr) 170px 70px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.rank-num {
  color: var(--amber-600);
  font-weight: 900;
}

.rank-list-item img {
  width: 58px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
}

.rank-list-item strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-list-item em {
  color: var(--gray-500);
  font-style: normal;
}

.rank-list-item b {
  color: var(--amber-600);
}

.detail-hero {
  margin-top: 34px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--gray-600);
  font-size: 14px;
}

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

.breadcrumb em {
  font-style: normal;
}

.detail-layout {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 32px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 20%, rgba(252, 211, 77, 0.42), transparent 30%),
    linear-gradient(135deg, var(--white), var(--amber-50));
  box-shadow: var(--shadow-md);
}

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: var(--amber-100);
  box-shadow: var(--shadow-md);
}

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

.detail-copy h1 {
  color: var(--gray-900);
}

.detail-one-line {
  color: var(--gray-600);
}

.detail-meta {
  margin-top: 20px;
}

.detail-tags span {
  color: var(--gray-700);
  background: var(--white);
}

.player-section {
  margin-top: 42px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  box-shadow: var(--shadow-lg);
}

.video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f172a;
  cursor: pointer;
}

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.68));
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.play-layer span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  color: var(--amber-600);
  background: var(--white);
  font-size: 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.play-layer strong {
  font-size: 20px;
}

.video-shell.is-playing .play-layer {
  opacity: 0;
  pointer-events: none;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.detail-panel p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.95;
}

.detail-panel h2 + p {
  margin-top: 12px;
}

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

.side-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--amber-50);
  color: var(--gray-700);
  font-weight: 800;
}

.side-link-list span {
  color: var(--amber-600);
  white-space: nowrap;
}

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

.related-grid .card-body p,
.related-grid .tag-row {
  display: none;
}

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

.site-footer {
  margin-top: 90px;
  background: linear-gradient(135deg, #7c2d12, #92400e 50%, #451a03);
  color: var(--amber-100);
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 22px;
}

.footer-shell p {
  max-width: 420px;
  color: var(--amber-100);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 237, 213, 0.18);
  padding: 18px;
  text-align: center;
  color: rgba(255, 237, 213, 0.82);
}

@media (max-width: 1080px) {
  .hero,
  .category-hero,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

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

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

  .two-column,
  .footer-shell,
  .category-overview-grid {
    grid-template-columns: 1fr;
  }

  .rank-list-item {
    grid-template-columns: 46px 54px minmax(0, 1fr) 58px;
  }

  .rank-list-item em {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    height: auto;
    min-height: 66px;
    padding: 12px 0;
    align-items: flex-start;
  }

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

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.open {
    display: flex;
  }

  .hero {
    margin-top: 18px;
    width: min(100% - 22px, 1180px);
  }

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

  .hero-content {
    padding: 34px 24px 76px;
  }

  .hero-dots {
    left: 24px;
    bottom: 28px;
  }

  .feature-strip,
  .movie-grid,
  .library-grid,
  .category-grid,
  .top-rank-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .content-section,
  .page-hero,
  .detail-hero,
  .feature-strip {
    width: min(100% - 22px, 1180px);
  }

  .page-hero {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .section-head,
  .quick-search {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-layout,
  .category-overview-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 26px;
  }

  .detail-poster img {
    min-height: auto;
  }

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

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

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

  .rank-list-item b {
    display: none;
  }

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