:root {
  --deepblue-950: #071827;
  --deepblue-900: #0c2438;
  --deepblue-800: #12344f;
  --ocean-700: #0f6f8f;
  --ocean-600: #1684a7;
  --ocean-100: #dcf4fa;
  --seagreen-600: #0f9f8d;
  --seagreen-100: #dff8f2;
  --coral-500: #ff6b5f;
  --coral-400: #ff857b;
  --sand-50: #fff7ec;
  --ink: #102033;
  --muted: #6a7c8d;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 60px rgba(11, 42, 64, 0.16);
  --soft-shadow: 0 14px 36px rgba(12, 36, 56, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 107, 95, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(15, 159, 141, 0.20), transparent 30rem),
    linear-gradient(135deg, var(--sand-50), var(--ocean-100) 48%, var(--seagreen-100));
  min-height: 100vh;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, rgba(7, 24, 39, 0.96), rgba(16, 91, 118, 0.94));
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(7, 24, 39, 0.22);
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}

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

.brand {
  color: #ffffff;
  flex-shrink: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral-500), var(--seagreen-600));
  box-shadow: 0 10px 28px rgba(255, 107, 95, 0.30);
}

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

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

.nav-link {
  color: rgba(236, 252, 255, 0.86);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.top-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-search input,
.mobile-search input,
.large-search input,
.filter-panel input,
.filter-panel select {
  border: 1px solid rgba(255, 255, 255, 0.20);
  outline: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 11px 14px;
  transition: 0.25s ease;
}

.top-search input::placeholder,
.mobile-search input::placeholder {
  color: rgba(224, 245, 249, 0.72);
}

.top-search input:focus,
.mobile-search input:focus {
  border-color: rgba(255, 133, 123, 0.85);
  background: rgba(255, 255, 255, 0.18);
}

.top-search button,
.mobile-search button,
.large-search button,
.primary-btn {
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
  padding: 11px 18px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 107, 95, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.top-search button:hover,
.mobile-search button:hover,
.large-search button:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255, 107, 95, 0.34);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 20px;
}

.mobile-panel {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

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

.mobile-panel a {
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

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

.mobile-search input {
  flex: 1;
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 24px 70px;
}

.hero {
  position: relative;
  min-height: 650px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--deepblue-900);
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  filter: saturate(1.04) contrast(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.94), rgba(7, 24, 39, 0.62) 43%, rgba(7, 24, 39, 0.18)),
    linear-gradient(0deg, rgba(7, 24, 39, 0.72), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, calc(100% - 48px));
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 130px 56px;
  color: #ffffff;
}

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

.hero h1,
.hero h2,
.page-hero h1,
.section-head h2,
.detail-copy h1,
.article-section h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1,
.hero h2 {
  font-size: clamp(40px, 6.5vw, 86px);
  line-height: 0.98;
  max-width: 720px;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.hero-desc {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(236, 252, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-meta {
  margin-top: 22px;
}

.hero-meta span,
.detail-meta span,
.meta-line span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero-meta span {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}

.ghost-btn {
  border-radius: 14px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
  padding: 11px 18px;
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: 0.25s ease;
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.ghost-btn.light {
  color: #ffffff;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 56px;
  right: 56px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hero-dot {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(7, 24, 39, 0.48);
  color: #ffffff;
  padding: 10px;
  cursor: pointer;
  backdrop-filter: blur(16px);
  min-width: 0;
  transition: 0.25s ease;
}

.hero-dot.active,
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 133, 123, 0.80);
}

.hero-dot img {
  width: 56px;
  height: 42px;
  border-radius: 12px;
  flex-shrink: 0;
}

.hero-dot span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 800;
}

.panel {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius-xl);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.home-search {
  margin-top: 26px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 24px;
  align-items: center;
}

.home-search h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 44px);
}

.home-search p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

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

.large-search input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(15, 111, 143, 0.18);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 143, 0.04);
}

.large-search input::placeholder,
.filter-panel input::placeholder {
  color: #8aa0ad;
}

.category-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chips a,
.tag-list span {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.category-chips a {
  color: var(--deepblue-900);
  background: linear-gradient(135deg, rgba(22, 132, 167, 0.12), rgba(15, 159, 141, 0.12));
  border: 1px solid rgba(22, 132, 167, 0.12);
  transition: 0.25s ease;
}

.category-chips a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--ocean-600), var(--seagreen-600));
  transform: translateY(-2px);
}

.content-section,
.split-section {
  margin-top: 44px;
}

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

.section-head.inside {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.section-head a {
  color: var(--ocean-700);
  font-weight: 900;
}

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(11, 42, 64, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.86);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(11, 42, 64, 0.20);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--deepblue-900);
}

.poster-link img {
  transition: transform 0.5s ease;
}

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

.poster-glow {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(7, 24, 39, 0.76), transparent);
}

.movie-info {
  padding: 16px;
}

.meta-line {
  color: var(--muted);
  margin-bottom: 10px;
}

.meta-line span {
  background: rgba(15, 111, 143, 0.08);
  padding: 5px 9px;
}

.movie-info h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
}

.movie-info h3 a:hover {
  color: var(--ocean-700);
}

.movie-info p {
  margin: 0 0 14px;
  min-height: 3.2em;
  color: var(--muted);
  line-height: 1.62;
  font-size: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  color: var(--ocean-700);
  background: rgba(22, 132, 167, 0.10);
  padding: 6px 10px;
  font-size: 12px;
}

.compact .movie-info h3 {
  font-size: 16px;
}

.compact .movie-info p {
  font-size: 13px;
  min-height: 2.9em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.hot-panel,
.ranking-panel,
.filter-panel,
.article-section,
.player-section,
.detail-hero {
  padding: 28px;
}

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

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

.rank-item {
  display: grid;
  grid-template-columns: 42px 66px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(15, 111, 143, 0.07);
  transition: 0.25s ease;
}

.rank-item:hover {
  background: rgba(255, 107, 95, 0.12);
  transform: translateX(4px);
}

.rank-no {
  font-size: 20px;
  font-weight: 900;
  color: var(--coral-500);
}

.rank-item img {
  width: 66px;
  height: 86px;
  border-radius: 14px;
}

.rank-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

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

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

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

.region-panel {
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.region-panel h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

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

.site-footer {
  color: rgba(236, 252, 255, 0.82);
  background: linear-gradient(135deg, var(--deepblue-950), var(--deepblue-800));
  margin-top: 30px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 34px;
}

.footer-brand {
  color: #ffffff;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
  max-width: 420px;
  line-height: 1.8;
  color: rgba(236, 252, 255, 0.70);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(236, 252, 255, 0.78);
}

.site-footer a:hover {
  color: var(--coral-400);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(236, 252, 255, 0.58);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 34px;
  padding: 48px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 95, 0.40), transparent 24rem),
    linear-gradient(135deg, var(--deepblue-950), var(--ocean-700));
  box-shadow: var(--shadow);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 70px);
}

.page-hero p:not(.eyebrow) {
  max-width: 740px;
  color: rgba(236, 252, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

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

.category-card {
  min-height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  background: linear-gradient(135deg, var(--deepblue-900), var(--ocean-700));
  box-shadow: var(--soft-shadow);
}

.category-card:nth-child(3n+2) {
  background: linear-gradient(135deg, var(--deepblue-900), var(--seagreen-600));
}

.category-card:nth-child(3n) {
  background: linear-gradient(135deg, #4a2539, var(--coral-500));
}

.cat-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
}

.category-card strong {
  font-size: 16px;
  line-height: 1.8;
  max-width: 78%;
  position: relative;
  z-index: 2;
}

.cat-arrow {
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.cat-thumbs {
  position: absolute;
  right: -30px;
  bottom: -24px;
  display: flex;
  gap: 8px;
  opacity: 0.36;
  transform: rotate(-8deg);
}

.cat-thumbs img {
  width: 78px;
  height: 112px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.filter-panel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 190px 220px;
  gap: 12px;
}

.strong-filter {
  grid-template-columns: minmax(260px, 1fr) 210px 240px;
}

.breadcrumb {
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

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

.detail-hero {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 2 / 3;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(7, 24, 39, 0.24);
  background: var(--deepblue-900);
}

.detail-copy h1 {
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.06;
}

.detail-one {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 22px 0;
}

.detail-meta {
  margin-bottom: 18px;
}

.detail-meta span {
  background: rgba(15, 111, 143, 0.10);
  color: var(--ocean-700);
  padding: 8px 12px;
}

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

.player-section,
.article-section {
  margin-top: 28px;
}

.player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: 0 20px 54px rgba(7, 24, 39, 0.30);
}

.movie-video {
  display: block;
  width: 100%;
  height: 100%;
  background: #000000;
  cursor: pointer;
}

.play-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(7, 24, 39, 0.58), rgba(7, 24, 39, 0.18));
  cursor: pointer;
  z-index: 2;
}

.player-frame.playing .play-layer {
  display: none;
}

.play-icon {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral-500), var(--seagreen-600));
  box-shadow: 0 18px 42px rgba(255, 107, 95, 0.35);
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #ffffff;
}

.play-layer strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.article-section {
  line-height: 1.9;
  font-size: 17px;
}

.article-section p {
  color: #4d6171;
}

.detail-extra {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}

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

.ranking-row {
  display: grid;
  grid-template-columns: 72px 116px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 14px;
}

.ranking-row .poster-link {
  width: 116px;
  height: 154px;
  border-radius: 18px;
}

.ranking-row .movie-info {
  padding: 0;
}

.big-rank {
  font-size: 32px;
  color: var(--coral-500);
  font-weight: 900;
  text-align: center;
}

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

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    max-width: none;
  }
}

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

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

  .hero,
  .hero-content {
    min-height: 560px;
  }

  .hero-content {
    padding: 48px 28px 150px;
    width: 100%;
  }

  .hero-dots {
    left: 24px;
    right: 24px;
    grid-template-columns: repeat(5, minmax(44px, 1fr));
  }

  .hero-dot span {
    display: none;
  }

  .hero-dot {
    justify-content: center;
  }

  .hero-dot img {
    width: 52px;
  }

  .home-search,
  .filter-panel,
  .strong-filter,
  .detail-hero,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .large-search,
  .mobile-search {
    flex-direction: column;
  }

  .movie-grid,
  .compact-grid,
  .hot-panel .compact-grid,
  .category-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  .nav-shell {
    padding: 0 16px;
  }

  main {
    padding: 20px 14px 54px;
  }

  .hero {
    border-radius: 24px;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

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

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

  .hero-dots {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-dot {
    padding: 6px;
    border-radius: 12px;
  }

  .hero-dot img {
    width: 100%;
    height: 42px;
  }

  .panel,
  .hot-panel,
  .ranking-panel,
  .filter-panel,
  .article-section,
  .player-section,
  .detail-hero,
  .page-hero {
    border-radius: 22px;
    padding: 20px;
  }

  .movie-grid,
  .compact-grid,
  .hot-panel .compact-grid,
  .category-grid,
  .region-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .ranking-row {
    grid-template-columns: 46px 90px minmax(0, 1fr);
    gap: 12px;
  }

  .ranking-row .poster-link {
    width: 90px;
    height: 122px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
