:root {
  --bg: #0f172a;
  --bg-deep: #020617;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --gold: #facc15;
  --gold-deep: #eab308;
  --purple: #7e22ce;
  --pink: #db2777;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(126, 34, 206, 0.24), transparent 36rem), linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(88, 28, 135, 0.94), rgba(15, 23, 42, 0.96));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fde047, #f59e0b);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.28);
  font-size: 16px;
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: rotate(10deg) scale(1.06);
}

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

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

.brand-text small {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 12px;
}

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

.nav-link {
  color: #e2e8f0;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.filter-input,
.search-hero input {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
  width: 210px;
  padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.search-hero input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.header-search button,
.mobile-search button,
.search-hero button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #111827;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 16px 18px;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.mobile-nav-link {
  padding: 8px 4px;
  color: #e2e8f0;
}

.mobile-nav-link.is-active {
  color: var(--gold);
}

.mobile-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.mobile-search input {
  padding: 11px 16px;
}

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

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

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.18)), linear-gradient(90deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 80px 0 96px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
}

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

.hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-meta,
.detail-meta,
.card-meta,
.wide-meta,
.rank-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

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

.pill,
.poster-badge,
.poster-duration {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
}

.pill-gold,
.poster-badge {
  color: #111827;
  background: rgba(250, 204, 21, 0.94);
}

.pill-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: #111827;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  box-shadow: 0 14px 42px rgba(250, 204, 21, 0.25);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

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

.content-section,
.page-hero,
.detail-wrap {
  padding: 58px 0;
}

.page-hero {
  background: radial-gradient(circle at top right, rgba(219, 39, 119, 0.18), transparent 32rem), linear-gradient(180deg, rgba(88, 28, 135, 0.24), rgba(15, 23, 42, 0));
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.03em;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--soft);
}

.section-more {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.scroller::-webkit-scrollbar {
  display: none;
}

.scroller .movie-card {
  flex: 0 0 286px;
}

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

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

.movie-card-link {
  display: block;
  height: 100%;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.movie-card-link:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(250, 204, 21, 0.38);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.55), rgba(219, 39, 119, 0.38));
}

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

.movie-card-link:hover img,
.movie-wide-link:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
}

.poster-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card-link:hover .poster-play {
  opacity: 1;
  transform: scale(1);
}

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.poster-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(8px);
}

.card-body {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.card-body strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-desc {
  min-height: 42px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  color: #94a3b8;
  font-size: 12px;
}

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

.category-card {
  position: relative;
  min-height: 178px;
  display: grid;
  place-items: center;
  padding: 22px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.82), rgba(219, 39, 119, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 45%);
  transform: translate(-18%, -18%);
  transition: transform 0.35s ease;
}

.category-card:hover::before {
  transform: translate(0, 0);
}

.category-card span {
  position: relative;
  z-index: 1;
  text-align: center;
}

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

.category-card small {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.rank-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(88, 28, 135, 0.42), rgba(219, 39, 119, 0.18));
  box-shadow: var(--shadow);
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.rank-num {
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.rank-item img {
  width: 86px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.rank-info strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.rank-meta {
  color: #94a3b8;
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.filter-input {
  width: min(440px, 100%);
  padding: 13px 18px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
}

.chip:hover,
.chip.is-active {
  color: #111827;
  background: var(--gold);
  border-color: var(--gold);
}

.movie-card-wide {
  border-radius: 18px;
  overflow: hidden;
}

.movie-wide-link {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.movie-wide-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.wide-cover {
  position: relative;
  display: block;
  height: 104px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(126, 34, 206, 0.55), rgba(219, 39, 119, 0.38));
}

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

.play-glow {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-wide-link:hover .play-glow {
  opacity: 1;
}

.wide-info {
  display: grid;
  align-content: center;
  gap: 8px;
}

.wide-info strong {
  color: #fff;
  font-size: 18px;
}

.wide-info em {
  color: #cbd5e1;
  font-style: normal;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wide-meta {
  color: #94a3b8;
  font-size: 13px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: #94a3b8;
  font-size: 14px;
}

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

.detail-hero {
  padding: 34px 0 0;
}

.detail-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: start;
}

.detail-poster {
  position: sticky;
  top: 98px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

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

.detail-info h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.detail-info .lead {
  color: #e2e8f0;
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 22px;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.tag-list span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
}

.player-section {
  padding: 46px 0 24px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.movie-player-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.movie-player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.25));
  cursor: pointer;
  transition: opacity 0.22s ease;
}

.movie-player-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.movie-player-button {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  box-shadow: 0 18px 54px rgba(250, 204, 21, 0.34);
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.movie-player-button:hover {
  transform: scale(1.08);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  padding: 24px 0 58px;
}

.article-box,
.side-box {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-box h2,
.side-box h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.article-box p {
  margin: 0 0 18px;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: 16px;
}

.side-box .rank-list {
  gap: 10px;
}

.side-box .rank-item {
  grid-template-columns: 34px 68px 1fr;
  padding: 9px;
}

.side-box .rank-num {
  font-size: 18px;
}

.side-box .rank-item img {
  width: 68px;
  height: 48px;
}

.search-hero form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
}

.search-hero input {
  padding: 16px 20px;
  font-size: 17px;
}

.search-hero button {
  padding: 0 24px;
}

.empty-state {
  display: none;
  padding: 28px;
  border-radius: 20px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #111827;
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.back-top.is-visible {
  display: grid;
}

.site-footer {
  margin-top: 36px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), #020617 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
  padding: 46px 0;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #94a3b8;
  line-height: 1.8;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
}

.footer-col a {
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 18px 16px 26px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

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

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

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

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

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

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

  .detail-poster {
    position: relative;
    top: auto;
    max-width: 360px;
  }

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

@media (max-width: 640px) {
  .site-container {
    width: min(100% - 24px, 1240px);
  }

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

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

  .hero,
  .hero-content {
    min-height: 76vh;
  }

  .hero-content {
    padding: 60px 0 90px;
  }

  .hero-actions,
  .page-actions {
    display: grid;
  }

  .content-section,
  .page-hero,
  .detail-wrap {
    padding: 42px 0;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

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

  .scroller .movie-card {
    flex-basis: 232px;
  }

  .card-body {
    padding: 12px;
  }

  .card-desc {
    display: none;
  }

  .category-card {
    min-height: 136px;
  }

  .movie-wide-link {
    grid-template-columns: 112px 1fr;
  }

  .wide-cover {
    height: 84px;
  }

  .rank-item {
    grid-template-columns: 42px 70px 1fr;
    gap: 10px;
  }

  .rank-item img {
    width: 70px;
    height: 50px;
  }

  .detail-info .lead {
    font-size: 17px;
  }

  .article-box,
  .side-box {
    padding: 20px;
  }

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

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