:root {
  --bg: #fff7ed;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(15, 23, 42, 0.08);
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --orange: #f97316;
  --red: #dc2626;
  --slate: #0f172a;
  --slate-2: #1e293b;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --soft-shadow: 0 14px 40px rgba(15, 23, 42, 0.1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff7ed 0%, #f8fafc 38%, #ffffff 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.34);
}

.brand-name {
  font-size: 1.12rem;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #374151;
  font-weight: 700;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #92400e;
  background: rgba(245, 158, 11, 0.14);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--slate);
  border-radius: 999px;
}

.hero-slider {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 28px auto 0;
  overflow: hidden;
  border-radius: 34px;
  color: white;
  background: var(--slate);
  box-shadow: var(--shadow);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  padding: 72px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(22px) saturate(1.1);
  transform: scale(1.12);
  opacity: 0.55;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.34)),
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.45), transparent 30rem);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero-content h1,
.hero-content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-desc {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

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

.hero-tags span,
.detail-tags span,
.tag-row span,
.pill-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.tag-row span {
  color: #92400e;
  background: #fffbeb;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  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: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 35px rgba(245, 158, 11, 0.32);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(2deg);
}

.hero-poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-controls {
  position: absolute;
  left: 72px;
  bottom: 38px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

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

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 30px;
  background: var(--amber);
}

.hero-search {
  position: absolute;
  right: 72px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  width: min(420px, calc(100% - 144px));
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hero-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  padding: 0 16px;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button,
.filter-panel button {
  border: 0;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  padding: 10px 18px;
  font-weight: 900;
  cursor: pointer;
}

.hero-quick-links {
  position: absolute;
  left: 72px;
  right: 72px;
  top: 32px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-quick-links a {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.section-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 0;
}

.section-wrap.no-top {
  padding-top: 34px;
}

.soft-panel {
  width: 100%;
  max-width: none;
  padding: 76px max(16px, calc((100% - 1180px) / 2)) 64px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
}

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

.section-head h2,
.page-hero h1,
.detail-info h1,
.content-card h2 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.05em;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.more-link {
  color: var(--amber-dark);
  font-weight: 900;
}

.movie-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.36);
  box-shadow: var(--soft-shadow);
}

.poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111827;
}

.poster img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.play-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  color: white;
  background: rgba(245, 158, 11, 0.95);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 16px;
}

.card-body h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.card-body h2 a:hover {
  color: var(--amber-dark);
}

.card-meta,
.card-desc {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.card-desc {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

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

.movie-card.compact .card-body h2 {
  font-size: 0.96rem;
}

.movie-card.compact .card-desc {
  display: none;
}

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

.category-card a {
  display: block;
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card a:hover {
  transform: translateY(-5px);
  box-shadow: var(--soft-shadow);
}

.category-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 12px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.category-covers img {
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  object-fit: cover;
}

.category-info {
  padding: 20px;
}

.category-info h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.category-info p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.category-info span {
  color: var(--amber-dark);
  font-weight: 900;
}

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

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

.ranking-panel,
.content-card,
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ranking-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 34px 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.rank-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  font-weight: 900;
  font-size: 0.86rem;
}

.rank-item img {
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.rank-copy strong,
.rank-copy em {
  display: block;
}

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

.rank-copy em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.page-shell {
  padding-bottom: 48px;
}

.page-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.48), transparent 26rem),
    linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: var(--shadow);
  padding: clamp(42px, 8vw, 82px);
}

.page-hero h1 {
  max-width: 820px;
  color: white;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.pill-row {
  margin-top: 24px;
}

.pill-link {
  color: white;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 160px 140px 140px auto;
  gap: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

.filter-panel input,
.filter-panel select {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  outline: 0;
  color: var(--text);
  background: #f8fafc;
  padding: 0 14px;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.filter-count {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

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

.top-rank-card a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  color: white;
  background: #111827;
  box-shadow: var(--soft-shadow);
}

.top-rank-card img {
  height: 420px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.45s ease;
}

.top-rank-card a:hover img {
  transform: scale(1.06);
}

.top-rank-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 90px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.95));
}

.top-rank-card h2,
.top-rank-card p {
  margin: 0;
}

.top-rank-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.top-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--orange));
  padding: 8px 12px;
  font-weight: 900;
}

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

.ranking-list a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(180px, 360px);
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  padding: 12px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ranking-list a:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.rank-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 900;
}

.rank-meta {
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.detail-hero {
  margin-top: 28px;
  padding: 0 16px;
}

.detail-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.player-card,
.detail-info {
  overflow: hidden;
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.player-card {
  padding: 12px;
  background: #0b1020;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #050816;
}

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

.play-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: white;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0.18), rgba(5, 8, 22, 0.5));
  cursor: pointer;
}

.play-layer span {
  width: 86px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.38);
  font-size: 2rem;
  padding-left: 5px;
}

.video-shell.is-playing .play-layer {
  display: none;
}

.detail-info {
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 90% 10%, rgba(245, 158, 11, 0.18), transparent 18rem),
    white;
}

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

.breadcrumb a:hover {
  color: var(--amber-dark);
}

.detail-info h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.detail-desc {
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.9;
}

.detail-tags {
  margin-top: 22px;
}

.detail-tags span {
  color: #92400e;
  background: #fffbeb;
}

.detail-actions .btn.ghost {
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.24);
  background: #fffbeb;
}

.detail-content {
  padding-top: 34px;
}

.content-card {
  padding: clamp(24px, 4vw, 40px);
}

.content-card h2 {
  margin-top: 28px;
  font-size: 1.7rem;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p {
  color: #374151;
  line-height: 2;
}

.movie-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.movie-facts span {
  border-radius: 999px;
  background: #f8fafc;
  padding: 9px 12px;
  color: #374151;
  font-weight: 800;
}

.page-links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
}

.page-links a {
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  padding: 10px 16px;
  font-weight: 900;
}

.site-footer {
  margin-top: 80px;
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

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

.footer-logo {
  color: white;
}

.footer-brand p {
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-links h2 {
  margin: 0 0 14px;
  color: white;
  font-size: 1rem;
}

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

.footer-links a:hover {
  color: #fbbf24;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 18px 16px;
  text-align: center;
  color: #94a3b8;
}

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

@media (max-width: 1040px) {
  .hero-slide {
    grid-template-columns: 1fr;
    padding: 64px 42px 160px;
  }

  .hero-poster {
    display: none;
  }

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

  .latest-grid,
  .category-grid,
  .top-rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ranking-panel {
    position: static;
  }

  .filter-panel {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    padding: 12px;
    box-shadow: var(--soft-shadow);
  }

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

  .hero-slider,
  .hero-track,
  .hero-slide {
    min-height: 720px;
  }

  .hero-slide {
    padding: 78px 24px 210px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .hero-desc {
    font-size: 0.96rem;
  }

  .hero-controls {
    left: 24px;
    bottom: 120px;
  }

  .hero-search {
    left: 24px;
    right: 24px;
    bottom: 54px;
    width: auto;
  }

  .hero-quick-links {
    left: 24px;
    right: 24px;
    top: 24px;
  }

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

  .featured-grid,
  .latest-grid,
  .catalog-grid,
  .category-grid,
  .top-rank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .card-body {
    padding: 12px;
  }

  .card-desc,
  .tag-row {
    display: none;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .ranking-list a {
    grid-template-columns: 42px minmax(0, 1fr);
  }

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

  .detail-info {
    padding: 24px;
  }

  .play-layer span {
    width: 68px;
    height: 68px;
  }
}

@media (max-width: 480px) {
  .featured-grid,
  .latest-grid,
  .catalog-grid,
  .category-grid,
  .top-rank-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    border-radius: 24px;
  }

  .page-hero {
    border-radius: 24px;
  }
}
