* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #1e293b;
  background: #f8fafc;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

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

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

.brand-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  box-shadow: 0 10px 26px rgba(8, 145, 178, 0.28);
}

.brand-icon.small {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(90deg, #0891b2, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  overflow: hidden;
}

.nav-link,
.mobile-link {
  color: #334155;
  font-weight: 700;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
  color: #0891b2;
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #334155;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 10px 16px 18px;
  border-top: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.98);
}

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

.mobile-link {
  padding: 9px 4px;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #0f172a;
}

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

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

.hero-slide img,
.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: radial-gradient(circle at 20% 20%, #164e63, #0f172a 52%, #020617);
}

.hero-slide img.image-hidden,
.detail-backdrop img.image-hidden,
.card-media img.image-hidden,
.detail-poster img.image-hidden,
.top-rank-card img.image-hidden {
  opacity: 0;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.45) 42%, rgba(2, 6, 23, 0.08)), linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.45) 44%, rgba(2, 6, 23, 0.08));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 0 88px;
}

.hero-copy {
  width: min(680px, calc(100% - 32px));
  margin: 0 auto;
  color: #ffffff;
  transform: translateY(16px);
}

.hero-badges,
.detail-tags,
.hero-tags,
.card-badges,
.filter-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-badges span,
.hero-tags span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 14px;
}

.hero-badges span:first-child {
  background: #0891b2;
}

.hero h1 {
  margin: 16px 0 14px;
  max-width: 780px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 720px;
  margin: 0 0 20px;
  color: #e2e8f0;
  font-size: 18px;
}

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

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  color: #ffffff;
  background: #0891b2;
  box-shadow: 0 16px 35px rgba(8, 145, 178, 0.32);
}

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

.primary-button:hover {
  background: #0e7490;
  box-shadow: 0 18px 38px rgba(8, 145, 178, 0.42);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.55);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: background 0.22s ease, transform 0.22s ease;
}

.hero-arrow:hover {
  background: rgba(8, 145, 178, 0.92);
  transform: translateY(-50%) scale(1.05);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.22s ease, background 0.22s ease;
}

.hero-dot.active {
  width: 32px;
  background: #22d3ee;
}

.hero-category-bar {
  position: absolute;
  right: calc((100% - min(1180px, calc(100% - 32px))) / 2);
  bottom: 28px;
  display: flex;
  gap: 8px;
  max-width: 48%;
  overflow-x: auto;
}

.hero-category-bar a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.54);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.search-band {
  padding: 26px 0;
  background: linear-gradient(90deg, #ecfeff, #eff6ff);
  border-bottom: 1px solid #dbeafe;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px);
  gap: 24px;
  align-items: center;
}

.search-panel h2,
.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: #0f172a;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.search-panel p,
.section-heading p,
.page-hero p {
  margin: 6px 0 0;
  color: #64748b;
}

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

.search-box input,
.toolbar input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  padding: 0 16px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.search-box input:focus,
.toolbar input:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.search-box a,
.section-tools a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  color: #ffffff;
  background: #0891b2;
  font-weight: 800;
}

.content-section {
  padding: 58px 0;
}

.section-light {
  background: #f8fafc;
}

.section-white {
  background: #ffffff;
}

.section-gradient {
  background: linear-gradient(135deg, #ffffff, #eff6ff 48%, #ecfeff);
}

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

.section-heading h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.section-tools {
  margin: -18px 0 22px;
  text-align: right;
}

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

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

.rank-grid {
  counter-reset: rank;
}

.horizontal-grid {
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  grid-template-columns: unset;
  overflow-x: auto;
  padding-bottom: 8px;
}

.movie-card {
  min-width: 0;
}

.card-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.09);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 18% 22%, #0e7490, #0f172a 58%, #020617);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.2s ease;
}

.card-link:hover .card-media img {
  transform: scale(1.1);
}

.card-shade {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.play-dot {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0891b2;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-badges span,
.year-badge,
.rank-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 25px;
  padding: 0 9px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 750;
}

.card-badges span:first-child {
  background: #0891b2;
}

.year-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.rank-mark {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 30px;
  background: #dc2626;
}

.card-body {
  padding: 16px;
}

.card-body h3 {
  margin: 0 0 8px;
  color: #1e293b;
  font-size: 16px;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.card-link:hover h3 {
  color: #0891b2;
}

.card-body p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 12px;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-row span {
  padding: 2px 8px;
  border-radius: 8px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 12px;
}

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

.category-tile,
.category-card-large {
  display: block;
  padding: 22px;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover,
.category-card-large:hover {
  transform: translateY(-4px);
  border-color: #67e8f9;
  box-shadow: 0 18px 42px rgba(8, 145, 178, 0.14);
}

.category-tile span,
.category-card-large h2 {
  display: block;
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 850;
}

.category-tile p,
.category-card-large p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 14px;
}

.category-tile small {
  color: #0891b2;
  font-weight: 700;
}

.category-card-large ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.category-card-large li a {
  color: #475569;
  font-size: 14px;
}

.category-card-large li a:hover {
  color: #0891b2;
}

.page-hero {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.page-hero.dark {
  background: radial-gradient(circle at 10% 20%, #164e63, #0f172a 55%, #020617);
}

.page-hero.dark h1,
.page-hero.dark p,
.page-hero.dark .page-hero-copy span {
  color: #ffffff;
}

.page-hero.compact {
  padding: 54px 0;
}

.page-hero-copy span {
  color: #0891b2;
  font-weight: 850;
}

.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 54px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.page-hero .breadcrumb {
  color: #64748b;
}

.breadcrumb a:hover {
  color: #22d3ee;
}

.toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.sticky-toolbar {
  position: sticky;
  top: 82px;
  z-index: 20;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.94);
  backdrop-filter: blur(14px);
}

.filter-chip {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #475569;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.filter-chip.active,
.filter-chip:hover {
  color: #ffffff;
  border-color: #0891b2;
  background: #0891b2;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  color: #ffffff;
  background: #0f172a;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  filter: blur(2px);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0f172a, rgba(15, 23, 42, 0.55)), linear-gradient(90deg, rgba(2, 6, 23, 0.94), rgba(2, 6, 23, 0.28));
}

.detail-hero-inner {
  position: relative;
  z-index: 1;
  padding: 52px 0 64px;
}

.detail-intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 20%, #0e7490, #020617);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  aspect-ratio: 2 / 3;
}

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

.detail-copy h1 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-copy p {
  max-width: 780px;
  margin: 0 0 18px;
  color: #e2e8f0;
  font-size: 18px;
}

.detail-copy .primary-button {
  margin-top: 24px;
}

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

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #020617;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.24);
}

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

.video-cover-button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.18), rgba(2, 6, 23, 0.58));
  cursor: pointer;
  transition: opacity 0.22s ease;
}

.video-cover-button span {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0891b2;
  background: rgba(255, 255, 255, 0.96);
  font-size: 38px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}

.video-shell.is-playing .video-cover-button {
  opacity: 0;
  pointer-events: none;
}

.video-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 10px 14px;
  border-radius: 12px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  font-size: 14px;
}

.video-message.show {
  display: block;
}

.info-card,
.side-card {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.info-card h2,
.side-card h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 22px;
}

.info-card p {
  margin: 0;
  color: #475569;
  text-align: justify;
}

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

.side-card dl {
  margin: 0;
  display: grid;
  gap: 13px;
}

.side-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
}

.side-card dt {
  color: #64748b;
}

.side-card dd {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
}

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

.side-links a {
  color: #334155;
}

.side-links a:hover {
  color: #0891b2;
}

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

.top-rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  padding: 14px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a, #164e63);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
}

.top-rank-card span {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #dc2626;
  font-weight: 900;
}

.top-rank-card img {
  width: 130px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 20%, #0e7490, #020617);
}

.top-rank-card h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.top-rank-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #cbd5e1;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.site-footer {
  margin-top: 0;
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b 56%, #0f172a);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #94a3b8;
  font-size: 14px;
}

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

.footer-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #94a3b8;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #22d3ee;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  color: #94a3b8;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.movie-card.hide {
  display: none;
}

.empty-state {
  display: none;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  color: #64748b;
  text-align: center;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    height: 540px;
  }

  .hero-category-bar {
    left: 16px;
    right: 16px;
    max-width: none;
    bottom: 70px;
  }

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

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

  .detail-layout,
  .detail-intro,
  .search-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: min(240px, 70vw);
  }
}

@media (max-width: 680px) {
  .header-inner {
    height: 64px;
  }

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

  .hero {
    height: 560px;
  }

  .hero-copy {
    width: calc(100% - 32px);
  }

  .hero-content {
    padding-bottom: 118px;
  }

  .hero-arrow {
    display: none;
  }

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

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

  .card-body {
    padding: 13px;
  }

  .card-body p {
    min-height: 40px;
    font-size: 13px;
  }

  .category-grid,
  .category-list-grid,
  .top-rank-grid {
    grid-template-columns: 1fr;
  }

  .top-rank-card {
    grid-template-columns: 110px 1fr;
  }

  .top-rank-card img {
    width: 110px;
    height: 76px;
  }

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

  .detail-copy p {
    font-size: 16px;
  }

  .video-cover-button span {
    width: 64px;
    height: 64px;
    font-size: 30px;
  }

  .info-card,
  .side-card {
    padding: 18px;
  }

  .content-section {
    padding: 42px 0;
  }
}

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