:root {
  --cyan: #06b6d4;
  --blue: #2563eb;
  --teal: #14b8a6;
  --purple: #7c3aed;
  --orange: #f97316;
  --rose: #f43f5e;
  --slate: #0f172a;
  --text: #111827;
  --muted: #6b7280;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: #f9fafb;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.96), rgba(37, 99, 235, 0.96), rgba(20, 184, 166, 0.96));
  box-shadow: 0 12px 34px rgba(37, 99, 235, 0.22);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  font-size: 28px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #fde047;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fef9c3;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-search,
.mobile-search,
.filter-bar {
  display: flex;
  align-items: center;
}

.header-search {
  width: 280px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.header-search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #ffffff;
  background: transparent;
  padding: 10px 12px 10px 18px;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-search button {
  border: 0;
  color: #ffffff;
  background: transparent;
  padding: 8px 14px;
  font-size: 22px;
}

.menu-toggle {
  display: none;
  border: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

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

.mobile-panel-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 20px;
}

.mobile-search {
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 12px 16px;
}

.mobile-search button,
.filter-bar button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  padding: 12px 18px;
  font-weight: 800;
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-nav-link {
  color: #ffffff;
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.14);
  text-align: center;
  font-weight: 800;
}

.mobile-nav-link.active {
  background: rgba(254, 240, 138, 0.24);
}

.hero-carousel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: linear-gradient(135deg, #22d3ee, #2563eb 52%, #7c3aed);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.7s ease, transform 1.1s ease;
  background-image: linear-gradient(90deg, rgba(8, 47, 73, 0.90), rgba(30, 64, 175, 0.62), rgba(15, 23, 42, 0.35)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 38px);
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  color: #ffffff;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 13px;
  color: #ecfeff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-lead,
.page-hero p,
.detail-copy p {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
}

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

.hero-tags {
  margin: 24px 0;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(6, 182, 212, 0.78);
}

.tag-row span,
.detail-tags a {
  color: #0e7490;
  background: #ecfeff;
}

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

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: #ffffff;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.26);
}

.primary-btn.light {
  color: var(--blue);
  background: #ffffff;
}

.ghost-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.primary-btn:hover,
.ghost-btn:hover,
.card-link:hover,
.featured-card a:hover,
.category-tile:hover {
  transform: translateY(-3px);
}

.hero-poster {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.08));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-poster img,
.card-cover img,
.featured-media img,
.detail-poster img,
.mini-cover img,
.ranking-cover img,
.category-tile-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  right: 16px;
  top: 16px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.62);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.section {
  padding: 72px 0;
}

.soft-section {
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.white-section {
  background: #ffffff;
}

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

.section-heading h2,
.rank-panel h2,
.side-card h2,
.content-card h2,
.player-card h2,
.category-preview h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 950;
  color: #111827;
}

.section-heading p,
.category-preview p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-more,
.panel-link,
.category-preview-head a {
  color: #0891b2;
  font-weight: 900;
}

.featured-grid,
.movie-grid,
.category-grid,
.mini-grid {
  display: grid;
  gap: 22px;
}

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

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

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

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

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

.standard-card,
.featured-card,
.category-preview,
.content-card,
.player-card,
.side-card,
.rank-panel {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.card-link,
.featured-card a {
  display: block;
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.standard-card {
  overflow: hidden;
}

.card-cover,
.featured-media,
.mini-cover,
.ranking-cover,
.detail-poster,
.category-tile-bg span {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #cffafe, #dbeafe, #f5d0fe);
}

.card-cover {
  aspect-ratio: 16 / 10;
}

.card-cover img,
.featured-media img,
.mini-cover img,
.ranking-cover img,
.category-tile-bg img,
.detail-poster img,
.hero-poster img {
  transition: transform 0.45s ease;
}

.standard-card:hover .card-cover img,
.featured-card:hover .featured-media img,
.mini-card:hover img,
.ranking-row:hover img {
  transform: scale(1.06);
}

.type-pill,
.duration-pill,
.card-rank,
.featured-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.type-pill,
.featured-chip {
  left: 12px;
  top: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.duration-pill {
  right: 12px;
  top: 12px;
  background: rgba(0, 0, 0, 0.62);
}

.card-rank,
.rank-badge {
  right: 12px;
  bottom: 12px;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.card-body,
.featured-content {
  padding: 18px;
}

.card-body h3,
.featured-content h3,
.mini-body h3 {
  margin: 0 0 10px;
  color: #111827;
  font-weight: 950;
  line-height: 1.3;
}

.card-body h3 {
  font-size: 18px;
}

.featured-content h3 {
  font-size: 22px;
}

.card-body p,
.featured-content p,
.mini-body p,
.ranking-info p {
  color: var(--muted);
  margin: 0 0 14px;
}

.card-meta,
.card-stats,
.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.card-meta span,
.card-stats span,
.detail-stats span {
  border-radius: 999px;
  background: #f1f5f9;
  padding: 5px 9px;
}

.tag-row.compact {
  margin-top: 12px;
}

.featured-card {
  overflow: hidden;
}

.featured-media {
  aspect-ratio: 16 / 10;
}

.featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 55%);
}

.category-tile {
  position: relative;
  min-height: 220px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.16));
}

.category-tile-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  opacity: 0.55;
}

.category-tile-bg span {
  height: 100%;
}

.category-tile-content {
  position: relative;
  z-index: 2;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
}

.category-tile-content strong {
  font-size: 24px;
  font-weight: 950;
}

.category-tile-content p {
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.88);
}

.category-tile-content em {
  font-style: normal;
  font-weight: 900;
}

.from-pink { background: linear-gradient(135deg, #ec4899, #f43f5e); }
.from-green { background: linear-gradient(135deg, #22c55e, #10b981); }
.from-blue { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.from-orange { background: linear-gradient(135deg, #f97316, #f59e0b); }
.from-purple { background: linear-gradient(135deg, #8b5cf6, #d946ef); }
.from-slate { background: linear-gradient(135deg, #334155, #0f172a); }
.from-yellow { background: linear-gradient(135deg, #eab308, #f97316); }
.from-red { background: linear-gradient(135deg, #ef4444, #f97316); }
.from-rose { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.from-cyan { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.from-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }
.from-indigo { background: linear-gradient(135deg, #6366f1, #7c3aed); }

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

.rank-panel,
.side-card {
  position: sticky;
  top: 100px;
  padding: 24px;
}

.rank-panel ol {
  padding: 0;
  margin: 20px 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.rank-panel li a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: #f8fafc;
}

.rank-panel li span,
.ranking-number {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  border-radius: 999px;
  font-weight: 950;
}

.rank-panel li span {
  width: 34px;
  height: 34px;
}

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

.rank-panel li em {
  color: #f59e0b;
  font-style: normal;
  font-weight: 950;
}

.cta-band {
  padding: 76px 0;
  color: #ffffff;
  background: linear-gradient(90deg, #06b6d4, #2563eb, #7c3aed);
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 14px;
  font-weight: 950;
}

.cta-inner p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero,
.detail-hero {
  position: relative;
  color: #ffffff;
  background: linear-gradient(135deg, #06b6d4, #2563eb, #7c3aed);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 40px);
  opacity: 0.22;
}

.compact-hero .container,
.category-hero .container {
  position: relative;
  z-index: 1;
  padding: 62px 0 70px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #fef08a;
}

.filter-bar {
  max-width: 720px;
  gap: 12px;
  margin-top: 26px;
}

.filter-bar input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.category-preview-list {
  display: grid;
  gap: 24px;
}

.category-preview {
  padding: 24px;
}

.category-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

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

.mini-list {
  display: grid;
  gap: 14px;
  margin: 16px 0;
}

.mini-card a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #f8fafc;
  transition: background 0.2s ease;
}

.mini-card a:hover {
  background: #ecfeff;
}

.mini-cover {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.mini-body h3 {
  font-size: 15px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.mini-body p {
  font-size: 12px;
  margin-bottom: 4px;
}

.mini-body span {
  color: #f59e0b;
  font-size: 13px;
  font-weight: 950;
}

.ranking-list {
  display: grid;
  gap: 16px;
}

.ranking-row {
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.85);
}

.ranking-row a {
  display: grid;
  grid-template-columns: 62px 180px 1fr 110px;
  gap: 22px;
  align-items: center;
  padding: 16px;
}

.ranking-number {
  width: 48px;
  height: 48px;
}

.ranking-cover {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.ranking-info h2 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 950;
}

.ranking-score {
  color: #f59e0b;
  font-size: 22px;
  font-weight: 950;
  text-align: right;
}

.empty-state {
  margin-top: 24px;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  color: #64748b;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  font-weight: 900;
}

.detail-hero {
  min-height: 540px;
  background-image: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.72), rgba(15, 23, 42, 0.55)), var(--detail-image);
  background-size: cover;
  background-position: center;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.26), transparent 28%);
}

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

.detail-hero-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.detail-poster {
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.detail-stats {
  margin: 20px 0 10px;
}

.detail-stats span {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.92);
}

.detail-section {
  padding-top: 42px;
}

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

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

.player-card,
.content-card {
  padding: 22px;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

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

.player-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(15, 23, 42, 0.28));
}

.video-shell.is-playing .player-layer {
  display: none;
}

.play-symbol {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  font-size: 30px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.player-layer strong {
  font-size: 20px;
}

.player-message {
  margin-top: 12px;
  color: #b91c1c;
  font-weight: 800;
}

.content-card p {
  margin: 14px 0 0;
  color: #374151;
  font-size: 17px;
}

.detail-tags {
  margin-top: 16px;
}

.site-footer {
  color: #cbd5e1;
  background: #0f172a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding: 48px 0 32px;
}

.footer-brand {
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 12px;
}

.site-footer h2 {
  color: #ffffff;
  font-size: 18px;
  margin: 0 0 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: #bae6fd;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  padding: 18px 16px;
  text-align: center;
  color: #94a3b8;
}

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

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

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

  .hero-poster {
    display: none;
  }

  .rank-panel,
  .side-card {
    position: static;
  }

  .featured-grid,
  .movie-grid.three-cols,
  .movie-grid.four-cols,
  .category-grid,
  .category-grid.wide,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ranking-row a {
    grid-template-columns: 54px 140px 1fr;
  }

  .ranking-score {
    grid-column: 3;
    text-align: left;
  }
}

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

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

  .brand-text small {
    font-size: 12px;
  }

  .hero-carousel,
  .hero-inner {
    min-height: 560px;
  }

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

  .section {
    padding: 48px 0;
  }

  .section-heading,
  .category-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-grid,
  .movie-grid.three-cols,
  .movie-grid.four-cols,
  .category-grid,
  .category-grid.wide,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

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

  .detail-poster {
    width: 210px;
  }

  .ranking-row a {
    grid-template-columns: 46px 1fr;
  }

  .ranking-cover {
    display: none;
  }

  .ranking-info,
  .ranking-score {
    grid-column: 2;
  }

  .mini-card a {
    grid-template-columns: 96px 1fr;
  }

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