:root {
  --deep-space-950: #020617;
  --deep-space-900: #0f172a;
  --deep-space-850: #111c2f;
  --deep-space-800: #1e293b;
  --deep-space-700: #334155;
  --cloud-realm-500: #0ea5e9;
  --cloud-realm-400: #38bdf8;
  --cloud-realm-300: #7dd3fc;
  --cyber-blue-600: #2563eb;
  --cyber-blue-500: #3b82f6;
  --cyber-blue-400: #60a5fa;
  --text-main: #f8fafc;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --border-glow: rgba(14, 165, 233, 0.28);
  --shadow-glow: 0 22px 55px rgba(2, 132, 199, 0.16);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 12% 6%, rgba(14, 165, 233, 0.20), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(37, 99, 235, 0.16), transparent 32%),
    var(--deep-space-950);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(14, 165, 233, 0.22);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100%, var(--max-width));
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cloud-realm-500), var(--cyber-blue-600));
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.28);
}

.brand-text,
.footer-brand span:last-child {
  font-size: 22px;
  background: linear-gradient(90deg, var(--cloud-realm-400), var(--cyber-blue-400));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

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

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cloud-realm-300);
  background: rgba(30, 41, 59, 0.88);
}

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

.header-search input,
.mobile-search input,
.search-input,
.search-select {
  border: 1px solid rgba(14, 165, 233, 0.24);
  border-radius: 14px;
  color: var(--text-main);
  background: rgba(30, 41, 59, 0.88);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input,
.mobile-search input {
  width: 220px;
  padding: 11px 12px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-input:focus,
.search-select:focus {
  border-color: var(--cloud-realm-400);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.16);
}

.header-search button,
.mobile-search button {
  padding: 10px 13px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: var(--cloud-realm-500);
  cursor: pointer;
}

.mobile-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--text-main);
  background: rgba(30, 41, 59, 0.9);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(14, 165, 233, 0.18);
  padding: 16px 24px 22px;
  background: rgba(15, 23, 42, 0.96);
}

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

.mobile-links {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.mobile-links a {
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(30, 41, 59, 0.55);
}

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

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

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

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

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

.hero-gradient-side {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.48), transparent 74%);
}

.hero-gradient-bottom {
  background: linear-gradient(0deg, var(--deep-space-950), transparent 50%);
}

.hero-content {
  position: absolute;
  inset: 0;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(680px, 100%);
  transform: translateY(24px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 13px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(37, 99, 235, 0.86);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.24);
  font-size: 14px;
  font-weight: 700;
}

.hero-copy h1,
.page-hero h1,
.detail-info h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.hero-copy p,
.page-hero p,
.spotlight-copy p,
.detail-one-line {
  max-width: 720px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions,
.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--cloud-realm-500), var(--cyber-blue-600));
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.ghost-btn {
  border: 1px solid rgba(125, 211, 252, 0.26);
  color: var(--cloud-realm-300);
  background: rgba(15, 23, 42, 0.62);
}

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

.hero-meta {
  color: var(--text-muted);
  font-size: 14px;
}

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

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

.hero-dot.active {
  width: 34px;
  background: var(--cloud-realm-500);
}

.content-section,
.category-strip,
.search-panel,
.mini-category-nav,
.page-hero,
.detail-main,
.site-footer .footer-grid,
.footer-bottom {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-section,
.category-strip {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(14, 165, 233, 0.16);
  border: 1px solid rgba(14, 165, 233, 0.24);
}

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

.section-more {
  color: var(--cloud-realm-300);
  font-size: 14px;
  font-weight: 700;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.76);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.22);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: var(--shadow-glow);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--deep-space-800);
}

.movie-card-large .poster-link {
  aspect-ratio: 16 / 9;
}

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

.movie-card:hover .poster-link img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
  opacity: 0.74;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(14, 165, 233, 0.92);
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

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

.duration-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 7px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.74);
  font-size: 12px;
  font-weight: 700;
}

.movie-card-body {
  padding: 14px;
}

.movie-title {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover .movie-title {
  color: var(--cloud-realm-300);
}

.movie-meta {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
}

.movie-card-body p {
  display: -webkit-box;
  min-height: 42px;
  margin: 10px 0 0;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-list span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--cloud-realm-300);
  background: rgba(14, 165, 233, 0.10);
  font-size: 12px;
}

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

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

.category-tile {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 24px;
  background: var(--deep-space-900);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.35s ease;
}

.category-tile:hover img {
  transform: scale(1.07);
}

.category-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.18));
}

.category-tile strong,
.category-tile em {
  position: relative;
}

.category-tile strong {
  color: #ffffff;
  font-size: 23px;
  font-style: normal;
}

.category-tile em {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.band-section {
  max-width: none;
  background: rgba(15, 23, 42, 0.72);
  border-top: 1px solid rgba(14, 165, 233, 0.12);
  border-bottom: 1px solid rgba(14, 165, 233, 0.12);
}

.band-section > .content-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.gradient-band {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.24), rgba(15, 23, 42, 0.78));
}

.spotlight-section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: 36px;
  align-items: center;
}

.spotlight-copy {
  padding: 36px;
  border: 1px solid rgba(14, 165, 233, 0.20);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(37, 99, 235, 0.08));
}

.spotlight-copy span {
  color: var(--cloud-realm-300);
  font-weight: 800;
}

.spotlight-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.spotlight-list {
  display: grid;
  gap: 12px;
}

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

.ranking-grid.full-list {
  grid-template-columns: 1fr;
}

.ranking-row {
  display: grid;
  grid-template-columns: 48px 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.ranking-row:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.34);
  background: rgba(30, 41, 59, 0.82);
}

.ranking-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  font-size: 20px;
  font-weight: 900;
}

.ranking-row img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.ranking-info {
  min-width: 0;
}

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

.ranking-info strong {
  color: #ffffff;
  font-size: 15px;
}

.ranking-info em {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-style: normal;
}

.ranking-views {
  color: var(--cloud-realm-300);
  font-size: 13px;
  font-weight: 800;
}

.page-main,
.detail-main {
  min-height: 70vh;
}

.page-hero {
  padding-top: 80px;
  padding-bottom: 44px;
}

.small-hero,
.search-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-hero > div {
  max-width: 760px;
}

.mini-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
  padding-bottom: 12px;
}

.mini-cat {
  padding: 10px 14px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.68);
  font-size: 14px;
}

.mini-cat.active,
.mini-cat:hover {
  color: #ffffff;
  background: rgba(14, 165, 233, 0.32);
}

.pagination {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.page-link,
.page-gap {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 12px;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.70);
}

.page-link.active,
.page-link:hover {
  color: #ffffff;
  background: var(--cloud-realm-500);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px 160px 160px auto;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 26px;
}

.search-input,
.search-select {
  min-height: 48px;
  padding: 0 14px;
}

.search-count {
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
}

.search-empty {
  display: none;
  grid-column: 1 / -1;
  padding: 40px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 22px;
  text-align: center;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.72);
}

.breadcrumb {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--cloud-realm-300);
}

.detail-hero {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 34px 24px 60px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.24);
  border-radius: 28px;
  background: var(--deep-space-900);
  box-shadow: var(--shadow-glow);
}

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

.detail-info h1 {
  margin-top: 8px;
}

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

.detail-meta span {
  padding: 7px 10px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.68);
  font-size: 13px;
}

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

.player-section,
.detail-text {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.player-section h2,
.detail-text h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 28px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 28px;
  background: #000000;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.30));
  cursor: pointer;
}

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

.player-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cloud-realm-500), var(--cyber-blue-600));
  box-shadow: 0 18px 48px rgba(14, 165, 233, 0.32);
  font-size: 30px;
}

.player-message {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #fca5a5;
  text-align: center;
  pointer-events: none;
}

.detail-text {
  padding-top: 54px;
  padding-bottom: 6px;
}

.detail-text p {
  margin: 0 0 30px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

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

.site-footer {
  margin-top: 42px;
  border-top: 1px solid rgba(14, 165, 233, 0.18);
  background: rgba(2, 6, 23, 0.78);
}

.footer-grid {
  padding-top: 46px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: #ffffff;
}

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

.site-footer a:hover {
  color: var(--cloud-realm-300);
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(14, 165, 233, 0.12);
}

@media (max-width: 1120px) {
  .header-search {
    display: none;
  }

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

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

  .spotlight-section {
    grid-template-columns: 1fr;
  }
}

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

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .hero-carousel {
    min-height: 520px;
    height: 74vh;
  }

  .hero-copy {
    transform: none;
  }

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

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

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

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

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

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

  .search-input {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .content-section,
  .category-strip,
  .search-panel,
  .mini-category-nav,
  .page-hero,
  .detail-main,
  .player-section,
  .detail-text,
  .site-footer .footer-grid,
  .footer-bottom,
  .breadcrumb,
  .detail-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-text,
  .footer-brand span:last-child {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 500px;
  }

  .hero-copy p,
  .page-hero p,
  .spotlight-copy p,
  .detail-one-line {
    font-size: 16px;
  }

  .hero-actions,
  .spotlight-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

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

  .movie-grid,
  .large-grid {
    gap: 14px;
  }

  .movie-card-body {
    padding: 12px;
  }

  .movie-title {
    font-size: 14px;
  }

  .ranking-row {
    grid-template-columns: 38px 58px minmax(0, 1fr);
  }

  .ranking-views {
    display: none;
  }

  .ranking-row img {
    width: 58px;
    height: 42px;
  }

  .ranking-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

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

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