:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(30, 41, 59, 0.72);
  --panel-strong: rgba(30, 41, 59, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --dim: #94a3b8;
  --orange: #f97316;
  --red: #dc2626;
  --blue: #38bdf8;
  --green: #22c55e;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.14), transparent 28rem),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.12), transparent 24rem),
    linear-gradient(180deg, #0f172a 0%, #111827 48%, #0f172a 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(30, 41, 59, 0.95);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.25);
  transition: transform 0.25s ease;
}

.brand:hover .brand-icon {
  transform: scale(1.08) rotate(-3deg);
}

.brand-text {
  display: inline-block;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #fb923c, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-link:hover {
  color: #ffffff;
  background: rgba(30, 41, 59, 0.9);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.9);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0 16px;
  border-top: 1px solid var(--line);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.55);
}

.mobile-link:hover {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.16);
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  background: #020617;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, transform 1.2s ease;
  transform: scale(1.04);
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.2)),
    linear-gradient(0deg, #0f172a 2%, rgba(15, 23, 42, 0.82) 34%, rgba(15, 23, 42, 0.18) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

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

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.18);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0 0 24px;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.8;
}

.hero-meta,
.detail-meta,
.breadcrumbs,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta {
  margin-bottom: 26px;
}

.hero-meta span,
.detail-meta span,
.breadcrumbs a,
.breadcrumbs span {
  padding: 8px 12px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(30, 41, 59, 0.78);
  border: 1px solid var(--line);
}

.hero-actions,
.section-heading,
.page-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.24);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 23, 0.42);
  backdrop-filter: blur(10px);
}

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

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-control:hover {
  background: rgba(2, 6, 23, 0.78);
  transform: translateY(-2px);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

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

.hero-dot {
  width: 18px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 42px;
  background: var(--orange);
}

.main-section {
  padding: 68px 0 0;
}

.section-heading {
  margin-bottom: 28px;
}

.section-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.section-subtitle {
  margin: 8px 0 0;
  color: var(--dim);
  line-height: 1.7;
}

.search-band {
  position: relative;
  z-index: 5;
  margin-top: -42px;
}

.search-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
}

.search-card p {
  margin: 0;
  color: var(--dim);
  line-height: 1.7;
}

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

.search-form input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.75);
  outline: none;
}

.search-form input {
  padding: 0 16px;
}

.search-form input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: rgba(249, 115, 22, 0.8);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.search-form button {
  flex: 0 0 auto;
}

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

.category-card {
  position: relative;
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 70%),
    rgba(30, 41, 59, 0.62);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.55);
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.34), transparent 70%),
    rgba(30, 41, 59, 0.9);
}

.category-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-card span {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

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

.movie-card {
  display: block;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.56);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(249, 115, 22, 0.65);
  background: rgba(30, 41, 59, 0.9);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: rgba(15, 23, 42, 0.82);
  overflow: hidden;
}

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

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

.card-shade {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.movie-card:hover .card-shade {
  opacity: 1;
}

.card-year {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  background: rgba(2, 6, 23, 0.74);
  backdrop-filter: blur(8px);
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(249, 115, 22, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.movie-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-body {
  display: block;
  padding: 14px;
}

.card-body strong {
  display: -webkit-box;
  min-height: 48px;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-body span {
  display: block;
  color: var(--dim);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-body em {
  display: -webkit-box;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.movie-card-compact .card-body em {
  display: none;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-tile {
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.25s ease;
}

.feature-tile:hover {
  transform: translateY(-5px) scale(1.01);
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.34), transparent);
}

.feature-tile-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.feature-tile-content strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
}

.feature-tile-content span {
  display: -webkit-box;
  color: var(--muted);
  line-height: 1.7;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

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

.ranking-item {
  display: grid;
  grid-template-columns: 78px 86px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(30, 41, 59, 0.62);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ranking-item:hover {
  transform: translateX(4px);
  border-color: rgba(249, 115, 22, 0.58);
  background: rgba(30, 41, 59, 0.92);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--red));
}

.ranking-item img {
  width: 86px;
  height: 112px;
  border-radius: 14px;
  object-fit: cover;
}

.ranking-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.ranking-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.ranking-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--dim);
  font-size: 14px;
}

.page-shell {
  padding: 44px 0 0;
}

.page-hero {
  padding: 34px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.2), transparent 35rem),
    rgba(30, 41, 59, 0.62);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.filter-panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
  padding: 18px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.62);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  padding: 0 14px;
}

.filter-empty {
  display: none;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: rgba(30, 41, 59, 0.5);
}

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

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

.category-overview-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.62);
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.mini-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 8px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.5);
}

.mini-card img {
  width: 52px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-card strong,
.mini-card em {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mini-card strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
}

.mini-card em {
  color: var(--dim);
  font-size: 12px;
  font-style: normal;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: var(--muted);
}

.breadcrumbs a:hover {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.18);
}

.watch-card {
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.player-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  cursor: pointer;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.18), transparent 18rem),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.26));
}

.player-layer.is-hidden {
  display: none;
}

.play-button {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 38px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 22px 45px rgba(249, 115, 22, 0.32);
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.06);
}

.player-error {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: none;
  padding: 14px 18px;
  border-radius: 14px;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.82);
  transform: translate(-50%, -50%);
}

.player-error.is-visible {
  display: block;
}

.detail-card {
  padding: 28px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(30, 41, 59, 0.62);
}

.detail-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.detail-cover img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.detail-info h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.14;
  letter-spacing: -0.05em;
}

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

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

.tag-list {
  margin-bottom: 24px;
}

.tag-list span {
  padding: 7px 11px;
  border-radius: 999px;
  color: #fed7aa;
  background: rgba(249, 115, 22, 0.14);
}

.content-block {
  margin-top: 24px;
}

.content-block h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-panel {
  padding: 20px;
  border-radius: 18px;
  color: var(--muted);
  line-height: 1.9;
  background: rgba(15, 23, 42, 0.44);
}

.related-section {
  padding-top: 44px;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(30, 41, 59, 0.95);
  background: rgba(15, 23, 42, 0.86);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}

.footer-brand p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--dim);
  line-height: 1.7;
}

.footer-links h2 {
  margin: 0 0 14px;
  font-size: 17px;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: var(--dim);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 28px;
  color: var(--dim);
  border-top: 1px solid var(--line);
}

[data-card].is-hidden {
  display: none;
}

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

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

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

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

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

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

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    align-items: flex-end;
    padding-bottom: 92px;
  }

  .hero-control {
    display: none;
  }

  .search-card {
    grid-template-columns: 1fr;
  }

  .search-form {
    flex-direction: column;
  }

  .category-grid,
  .category-overview,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .movie-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .ranking-item {
    grid-template-columns: 52px 72px 1fr;
  }

  .ranking-item .btn {
    grid-column: 2 / -1;
    width: fit-content;
  }

  .ranking-item img {
    width: 72px;
    height: 96px;
  }

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

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

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

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

  .hero {
    height: auto;
    min-height: 680px;
  }

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

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .page-hero,
  .detail-card,
  .search-card {
    padding: 22px;
    border-radius: 24px;
  }

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

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

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

  .ranking-item {
    grid-template-columns: 44px 64px 1fr;
    gap: 12px;
  }

  .rank-num {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .ranking-item img {
    width: 64px;
    height: 86px;
  }

  .ranking-copy strong {
    font-size: 17px;
  }

  .play-button {
    width: 74px;
    height: 74px;
    font-size: 30px;
  }
}
