* {
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --bg-deep: #020617;
  --panel: rgba(15, 23, 42, 0.82);
  --panel-strong: rgba(15, 23, 42, 0.96);
  --line: rgba(148, 163, 184, 0.18);
  --text: #e5e7eb;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --emerald: #34d399;
  --cyan: #22d3ee;
  --amber: #f59e0b;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #0f172a 0%, #111827 48%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

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

.brand-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.25);
}

.brand-text {
  font-size: 1.38rem;
  background: linear-gradient(90deg, var(--emerald), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  color: var(--soft);
  font-size: 0.95rem;
  font-weight: 650;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald);
  transform: translateY(-1px);
}

.nav-link-soft {
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: var(--text);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.mobile-panel {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.96);
}

.mobile-link {
  display: block;
  padding: 12px 0;
  color: var(--soft);
  font-weight: 700;
}

.mobile-link.active {
  color: var(--emerald);
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: var(--bg-deep);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.hero-bg::after,
.detail-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 75% 28%, rgba(52, 211, 153, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(15, 23, 42, 0.82) 42%, rgba(15, 23, 42, 0.32) 100%),
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.12) 56%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: center;
  min-height: 78vh;
  padding: 84px 0 92px;
}

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

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 7px 14px;
  border: 1px solid rgba(52, 211, 153, 0.32);
  border-radius: 999px;
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 18px 0 4px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  line-height: 1.12;
  color: #f8fafc;
}

.hero p,
.page-hero p,
.section-heading p,
.search-panel p,
.category-overview-body p,
.detail-line,
.detail-panel p {
  color: var(--soft);
}

.hero p {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.hero-tags span,
.tag-row span {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(15, 23, 42, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-tags span {
  padding: 7px 12px;
}

.tag-row span {
  padding: 4px 9px;
}

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

.primary-button,
.ghost-button,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.primary-button,
.home-search button {
  border: none;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 18px 38px rgba(34, 211, 238, 0.22);
}

.ghost-button {
  border: 1px solid rgba(226, 232, 240, 0.16);
  color: var(--text);
  background: rgba(15, 23, 42, 0.55);
}

.primary-button:hover,
.ghost-button:hover,
.home-search button:hover {
  transform: translateY(-2px);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  border: 1px solid rgba(226, 232, 240, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-poster:hover img {
  transform: scale(1.04);
}

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  font-weight: 850;
}

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

.hero-arrow,
.hero-dot {
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: rgba(15, 23, 42, 0.74);
  color: var(--text);
  cursor: pointer;
}

.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
}

.section {
  padding: 72px 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.78));
}

.section-dark {
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(15, 23, 42, 0.98));
}

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

.section-heading h2,
.search-panel h2,
.related-channel-links h2,
.detail-panel h2,
.detail-side h2 {
  margin: 10px 0 8px;
  color: #f8fafc;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  max-width: 680px;
}

.section-more,
.text-button {
  color: var(--emerald);
  font-weight: 850;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 54px rgba(2, 6, 23, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 211, 153, 0.38);
  box-shadow: 0 24px 70px rgba(16, 185, 129, 0.13);
}

.card-link {
  display: block;
  height: 100%;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: radial-gradient(circle at top, rgba(52, 211, 153, 0.22), rgba(15, 23, 42, 0.95));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 6, 23, 0.88) 100%);
}

.year-pill,
.play-pill,
.rank-mark {
  position: absolute;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.year-pill {
  top: 12px;
  right: 12px;
  padding: 5px 9px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
}

.play-pill {
  left: 12px;
  bottom: 12px;
  padding: 6px 12px;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.movie-card:hover .play-pill {
  opacity: 1;
  transform: translateY(0);
}

.rank-mark {
  top: 12px;
  left: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.card-content {
  padding: 16px;
}

.card-content h3 {
  margin: 10px 0 8px;
  color: #f8fafc;
  font-size: 1.04rem;
  line-height: 1.35;
}

.card-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-card .card-content {
  padding: 13px;
}

.compact-card .card-content h3 {
  font-size: 0.96rem;
}

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

.category-tile {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-tile:hover img {
  transform: scale(1.06);
  opacity: 0.86;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(2, 6, 23, 0.92) 100%);
}

.category-tile div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.category-tile span {
  display: block;
  margin-bottom: 6px;
  color: #f8fafc;
  font-size: 1.25rem;
  font-weight: 850;
}

.category-tile p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
}

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

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

.hot-row {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.66);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hot-row:hover {
  transform: translateX(4px);
  border-color: rgba(34, 211, 238, 0.32);
}

.hot-row a {
  display: grid;
  grid-template-columns: auto 78px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
}

.hot-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  font-weight: 900;
}

.hot-row img {
  width: 78px;
  height: 104px;
  border-radius: 12px;
  object-fit: cover;
}

.hot-row h3 {
  margin: 8px 0 4px;
  color: #f8fafc;
}

.hot-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hot-score {
  white-space: nowrap;
  color: #fbbf24;
  font-weight: 850;
}

.search-panel,
.detail-side,
.detail-panel,
.related-channel-links {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: var(--shadow);
}

.search-panel {
  position: sticky;
  top: 92px;
  padding: 28px;
}

.home-search {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.home-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(226, 232, 240, 0.15);
  border-radius: 14px;
  color: var(--text);
  background: rgba(2, 6, 23, 0.62);
  outline: none;
}

.home-search input,
.filter-bar input {
  padding: 0 16px;
}

.filter-bar select {
  padding: 0 12px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(52, 211, 153, 0.18), transparent 36%),
    linear-gradient(135deg, #020617, #0f172a 60%, #111827);
}

.page-hero .container {
  padding: 86px 0 76px;
}

.small-hero .container {
  padding: 72px 0 58px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 1.08rem;
}

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

.category-overview-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.72);
}

.category-cover-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 10px;
}

.category-cover-stack img {
  width: 100%;
  height: 132px;
  border-radius: 12px;
  object-fit: cover;
}

.category-overview-body {
  padding: 24px;
}

.category-overview-body h2 {
  margin: 8px 0;
  font-size: 1.5rem;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.category-samples a,
.related-channel-links a {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(148, 163, 184, 0.1);
  font-size: 0.86rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 26px;
}

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

.empty-state {
  display: none;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  background: rgba(15, 23, 42, 0.58);
}

.related-channel-links {
  padding: 30px;
}

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

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

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

.detail-hero {
  min-height: 620px;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  min-height: 620px;
  padding: 72px 0;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

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

.breadcrumb a {
  color: var(--emerald);
}

.detail-copy h1 {
  margin: 16px 0 14px;
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta span {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.62);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.movie-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 24px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.movie-player video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 12px;
  border: none;
  color: #fff;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.22), rgba(2, 6, 23, 0.74));
  cursor: pointer;
}

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

.overlay-play-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  color: #022c22;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  box-shadow: 0 20px 50px rgba(34, 211, 238, 0.32);
  font-size: 1.8rem;
}

.detail-side {
  padding: 26px;
}

.detail-side dl {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.detail-side dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.detail-side dd {
  margin: -8px 0 0;
  color: var(--text);
  font-weight: 750;
}

.detail-content-grid {
  display: grid;
  gap: 22px;
}

.detail-panel {
  padding: 30px;
}

.detail-panel p {
  margin: 0;
  font-size: 1.05rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 32px;
  padding: 48px 0 30px;
}

.footer-brand {
  color: var(--emerald);
  font-size: 1.35rem;
}

.site-footer p {
  max-width: 420px;
  color: var(--muted);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1rem;
}

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

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

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

.footer-bottom {
  padding: 18px 0 30px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

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

  .menu-button {
    display: block;
  }

  body.menu-open .mobile-panel {
    display: block;
  }

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

  .hero-poster,
  .detail-poster {
    max-width: 360px;
  }

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

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

  .category-overview-grid,
  .expanded-hot-list {
    grid-template-columns: 1fr;
  }

  .search-panel {
    position: static;
  }
}

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

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 64px 0 110px;
  }

  .hero-poster {
    display: none;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .section {
    padding: 52px 0;
  }

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

  .movie-grid,
  .compact-grid,
  .category-movie-grid,
  .ranking-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

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

  .filter-bar,
  .search-filter-bar {
    grid-template-columns: 1fr;
  }

  .hot-row a {
    grid-template-columns: 42px 70px minmax(0, 1fr);
  }

  .hot-score {
    grid-column: 3;
  }

  .detail-hero,
  .detail-hero-inner {
    min-height: auto;
  }

  .detail-hero-inner {
    padding: 44px 0;
  }

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

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

@media (max-width: 520px) {
  .movie-grid,
  .compact-grid,
  .category-movie-grid,
  .ranking-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

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

  .hot-row img {
    display: none;
  }

  .hot-score {
    grid-column: 2;
  }
}
