:root {
  --bg: #07090f;
  --bg-soft: #101522;
  --card: rgba(24, 31, 45, 0.78);
  --card-strong: #1f2937;
  --text: #f8fafc;
  --muted: #a6adbb;
  --line: rgba(255, 255, 255, 0.1);
  --red: #dc2626;
  --red-deep: #7f1d1d;
  --red-soft: #991b1b;
  --gold: #facc15;
  --orange: #f97316;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(220, 38, 38, 0.22), transparent 36rem),
    linear-gradient(180deg, #020617 0%, #0f172a 45%, #05070d 100%);
}

body.is-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: 50;
  color: #fff;
  background: linear-gradient(90deg, #7f1d1d 0%, #b91c1c 48%, #7f1d1d 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--red));
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.2);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #fef08a, #fff7ed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text em {
  margin-top: 4px;
  color: #fecaca;
  font-size: 12px;
  font-style: normal;
}

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

.nav-link,
.mobile-link {
  position: relative;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fee2e2;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 64px;
  background: linear-gradient(90deg, rgba(127, 29, 29, 0.72), rgba(17, 24, 39, 0.88));
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(250, 204, 21, 0.24), transparent 22rem),
    radial-gradient(circle at 84% 20%, rgba(220, 38, 38, 0.38), transparent 26rem),
    linear-gradient(135deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.72));
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fde68a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 640px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions,
.hero-tags,
.inline-links,
.next-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  box-shadow: 0 16px 34px rgba(220, 38, 38, 0.28);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.button.small {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: #991b1b;
}

.hero-search {
  display: flex;
  width: min(560px, 100%);
  margin: 28px 0 18px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

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

.hero-search button {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  color: #fff;
  font-weight: 800;
  background: var(--red);
  cursor: pointer;
}

.hero-tags a,
.inline-links a,
.next-links a {
  color: #fecaca;
  font-size: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(252, 165, 165, 0.24);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.24);
}

.hero-stage {
  position: relative;
}

.hero-slides {
  position: relative;
  min-height: 440px;
  border-radius: 28px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

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

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.hero-slide-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.hero-slide-copy span {
  color: #fde68a;
  font-size: 13px;
  font-weight: 800;
}

.hero-slide-copy h2 {
  margin: 8px 0;
  font-size: clamp(26px, 4vw, 42px);
}

.hero-slide-copy p {
  max-width: 520px;
  color: #e5e7eb;
  line-height: 1.7;
}

.hero-slide-copy a {
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  background: #dc2626;
}

.hero-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 16px;
}

.hero-dot {
  width: 32px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--gold);
}

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

.hero-thumb {
  position: relative;
  min-height: 86px;
  border-radius: 18px;
  overflow: hidden;
  background: #111827;
}

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

.hero-thumb span {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 10px 9px;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
}

.section {
  padding: 58px 0;
}

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

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

.section-head h2,
.detail-article h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.section-link {
  color: #fca5a5;
  font-weight: 700;
}

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

.category-card {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.category-card img,
.category-poster img,
.ranking-focus-card img,
.spotlight-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.78));
}

.category-card span,
.category-card strong {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
}

.category-card span {
  bottom: 58px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.category-card strong {
  bottom: 18px;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.4;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 42px 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.68);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: rgba(31, 41, 55, 0.95);
}

.rank-num {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #450a0a;
  font-weight: 900;
  background: var(--gold);
}

.rank-row img {
  width: 72px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
}

.rank-main {
  min-width: 0;
  display: grid;
  gap: 4px;
}

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

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

.rank-watch {
  color: #fecaca;
  font-size: 13px;
  font-weight: 800;
}

.spotlight-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.spotlight-card > img {
  height: 360px;
}

.spotlight-card div {
  padding: 24px;
}

.spotlight-card span {
  color: #fcd34d;
  font-weight: 800;
}

.spotlight-card h2 {
  margin: 10px 0;
  font-size: 32px;
}

.spotlight-card p {
  color: #d1d5db;
  line-height: 1.7;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 12px;
  margin-bottom: 24px;
}

.search-panel label {
  display: grid;
  gap: 8px;
}

.search-panel label span {
  color: #fca5a5;
  font-size: 13px;
  font-weight: 800;
}

.search-panel input,
.search-panel select {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  padding: 0 16px;
  color: #fff;
  background: rgba(15, 23, 42, 0.78);
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  background: rgba(31, 41, 55, 0.94);
  box-shadow: 0 24px 56px rgba(127, 29, 29, 0.22);
}

.cover-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111827;
}

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

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

.cover-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.7));
  transition: opacity 0.25s ease;
}

.movie-card:hover .cover-wrap::after {
  opacity: 1;
}

.play-icon {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(220, 38, 38, 0.92);
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.type-badge,
.rank-badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: rgba(220, 38, 38, 0.92);
}

.type-badge {
  left: 10px;
}

.rank-badge {
  right: 10px;
  color: #450a0a;
  background: var(--gold);
}

.card-body {
  padding: 15px;
}

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

.card-body h3 a:hover {
  color: #f87171;
}

.meta-line,
.card-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.card-desc {
  min-height: 42px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  color: #fecaca;
  font-size: 12px;
  background: rgba(127, 29, 29, 0.38);
}

.page-hero {
  position: relative;
  padding: 78px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(250, 204, 21, 0.14), transparent 20rem),
    linear-gradient(90deg, rgba(127, 29, 29, 0.72), rgba(15, 23, 42, 0.82));
}

.category-wide-grid {
  display: grid;
  gap: 18px;
}

.category-wide-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.category-poster {
  height: 160px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
}

.category-wide-card h2 {
  margin: 8px 0 8px;
  font-size: 28px;
}

.category-wide-card p {
  color: #d1d5db;
  line-height: 1.7;
}

.category-preview-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}

.category-preview-links a {
  color: #fecaca;
  font-size: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.32);
}

.ranking-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.ranking-focus-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  background: #111827;
}

.ranking-focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.84));
}

.ranking-focus-card span,
.ranking-focus-card strong,
.ranking-focus-card em {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
}

.ranking-focus-card span {
  top: 14px;
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #450a0a;
  font-weight: 900;
  background: var(--gold);
}

.ranking-focus-card strong {
  bottom: 42px;
  font-size: 18px;
}

.ranking-focus-card em {
  bottom: 18px;
  color: #d1d5db;
  font-size: 13px;
  font-style: normal;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 56px;
  background: #020617;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  filter: blur(18px);
  transform: scale(1.08);
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.25), #020617 92%);
}

.detail-shell {
  position: relative;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: #fecaca;
  font-size: 14px;
}

.breadcrumb strong {
  color: #fff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 34px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #111827;
  box-shadow: var(--shadow);
}

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

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

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.1);
}

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

.player-section {
  padding-bottom: 34px;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

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

.player-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #fff;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.18), rgba(0, 0, 0, 0.5));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-layer.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-button {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-left: 6px;
  font-size: 36px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  box-shadow: 0 18px 48px rgba(220, 38, 38, 0.42);
}

.article-section {
  padding-top: 20px;
}

.detail-article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
}

.detail-article p {
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.9;
}

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

.site-footer {
  margin-top: 34px;
  padding: 48px 0 24px;
  color: #d1d5db;
  background: linear-gradient(180deg, #111827, #020617);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer p,
.site-footer li {
  color: #9ca3af;
  line-height: 1.8;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #f87171;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #9ca3af;
  font-size: 13px;
  text-align: center;
}

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

@media (max-width: 1120px) {
  .category-grid,
  .movie-grid,
  .ranking-focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-shell,
  .split-section,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    position: static;
  }
}

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

  .menu-button {
    display: block;
  }

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

  .header-inner {
    min-height: 62px;
  }

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

  .hero {
    padding: 54px 0 42px;
  }

  .hero-slides {
    min-height: 340px;
  }

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

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

  .category-grid,
  .movie-grid,
  .large-grid,
  .related-grid,
  .ranking-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

@media (max-width: 560px) {
  .container,
  .header-inner,
  .mobile-nav,
  .footer-bottom {
    width: min(100% - 22px, 1180px);
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-info h1 {
    font-size: 36px;
  }

  .hero-search {
    display: grid;
  }

  .hero-search input {
    min-height: 44px;
  }

  .category-grid,
  .movie-grid,
  .large-grid,
  .related-grid,
  .ranking-focus-grid {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 36px 62px 1fr;
  }

  .rank-watch {
    display: none;
  }

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

  .detail-meta span {
    font-size: 13px;
  }

  .player-button {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
}
