* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  background: #f9fafb;
  color: #111827;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #ffffff;
  background: linear-gradient(90deg, #0f172a, #1e3a8a, #0f172a);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

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

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #06b6d4);
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.3);
  transition: transform 0.25s ease;
}

.brand:hover .brand-mark {
  transform: scale(1.08) rotate(-2deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-text strong {
  font-size: 21px;
  line-height: 1.15;
  background: linear-gradient(90deg, #dbeafe, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text small {
  color: #93c5fd;
  font-size: 12px;
}

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

.nav-link {
  padding: 10px 16px;
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.9);
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 2px;
  background: #ffffff;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
}

.mobile-link {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 700;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: rgba(37, 99, 235, 0.9);
  color: #ffffff;
}

.hero-section,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, #1e3a8a, #1f2937 48%, #0f172a);
}

.hero-section {
  min-height: 720px;
  padding: 96px 0 120px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255,255,255,0.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.32;
}

.hero-glow-one {
  top: 120px;
  left: -120px;
  background: #06b6d4;
}

.hero-glow-two {
  right: -100px;
  bottom: 60px;
  background: #2563eb;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 14px 0 22px;
  font-weight: 900;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 700px;
  font-size: clamp(42px, 6vw, 72px);
  background: linear-gradient(90deg, #dbeafe, #a5f3fc, #ccfbf1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 650px;
  margin: 0;
  color: #dbeafe;
  font-size: clamp(18px, 2.4vw, 24px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #67e8f9;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.primary-button,
.ghost-button,
.hero-watch,
.section-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.hero-watch {
  padding: 14px 24px;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.36);
}

.primary-button:hover,
.hero-watch:hover,
.section-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.32);
}

.ghost-button {
  padding: 13px 24px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.ghost-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-slider {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(18px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 22px;
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 24px;
  background: linear-gradient(135deg, #334155, #0f172a);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-poster:hover img {
  transform: scale(1.06);
}

.hero-poster-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 36%, rgba(255,255,255,0.22), transparent 62%);
  mix-blend-mode: screen;
}

.hero-movie-copy {
  padding: 22px 4px 56px;
}

.hero-movie-copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.hero-movie-copy p {
  display: -webkit-box;
  margin: 0 0 18px;
  overflow: hidden;
  color: #dbeafe;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hero-tags,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-tag,
.tag-pill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: #e0f2fe;
  background: rgba(14, 165, 233, 0.22);
  border: 1px solid rgba(125, 211, 252, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.tag-pill {
  color: #075985;
  background: #e0f2fe;
  border-color: #bae6fd;
}

.hero-dots {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active {
  width: 28px;
  background: #67e8f9;
}

.hero-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(0deg, #f9fafb, rgba(249, 250, 251, 0));
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -74px;
}

.feature-strip article {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-strip article:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
}

.feature-strip span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.feature-strip strong {
  display: block;
  color: #111827;
  font-size: 20px;
}

.feature-strip p {
  margin: 8px 0 0;
  color: #6b7280;
}

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

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

.dark-section {
  padding: 72px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #111827, #1e3a8a, #0f172a);
}

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

.section-heading h2 {
  margin: 0 0 6px;
  color: #111827;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.dark-section .section-heading h2 {
  color: #ffffff;
}

.section-heading p {
  margin: 0;
  color: #6b7280;
  font-size: 17px;
}

.dark-section .section-heading p {
  color: #bfdbfe;
}

.section-action {
  flex: 0 0 auto;
  padding: 10px 16px;
  color: #2563eb;
  background: #eff6ff;
}

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

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

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

.movie-card,
.poster-card,
.rank-card,
.category-overview-card {
  overflow: hidden;
  border: 1px solid #eef2f7;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.movie-card:hover,
.poster-card:hover,
.rank-card:hover,
.category-overview-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.16);
}

.movie-card-link,
.poster-link {
  display: block;
  height: 100%;
}

.movie-cover,
.poster-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

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

.poster-media {
  aspect-ratio: 3 / 4;
}

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

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

.movie-cover-mask,
.poster-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.1) 58%, rgba(15, 23, 42, 0));
}

.movie-play,
.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  color: #2563eb;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.movie-badge,
.poster-region {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  font-size: 12px;
  font-weight: 800;
}

.movie-body,
.poster-info {
  display: block;
  padding: 18px;
}

.movie-body strong,
.poster-info strong,
.rank-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.movie-card:hover strong,
.poster-card:hover strong,
.rank-card:hover strong {
  color: #2563eb;
}

.movie-line {
  display: -webkit-box;
  min-height: 45px;
  margin: 10px 0 14px;
  overflow: hidden;
  color: #6b7280;
  font-size: 14px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-meta,
.poster-info small {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: #64748b;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 700;
}

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

.poster-info {
  position: relative;
  margin-top: -78px;
  color: #ffffff;
}

.poster-info strong {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.poster-info small {
  margin-top: 8px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.64);
}

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

.category-tile,
.category-overview-link {
  display: block;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.category-tile:hover,
.category-overview-link:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
}

.category-tile span,
.category-overview-link strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
}

.category-tile small,
.category-overview-link p {
  color: #bfdbfe;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.rank-row > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.rank-card a {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 64px;
  gap: 18px;
  align-items: center;
  padding: 12px;
}

.rank-card img {
  width: 110px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: #cbd5e1;
}

.rank-card-body span {
  display: -webkit-box;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-card-body em {
  display: block;
  margin-top: 6px;
  color: #2563eb;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.rank-card b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  color: #b45309;
  background: #fef3c7;
  font-size: 18px;
}

.page-hero {
  padding: 76px 0;
}

.page-hero h1 {
  max-width: 840px;
  font-size: clamp(36px, 5vw, 58px);
}

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

.page-hero-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

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

.category-overview-card {
  padding: 18px;
}

.category-overview-link {
  min-height: 180px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ed8, #0f172a);
}

.category-mark {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 18px;
  color: #0f172a;
  background: #a5f3fc;
  font-size: 24px;
  font-weight: 900;
}

.category-sample-links {
  display: grid;
  gap: 8px;
  padding: 16px 4px 4px;
}

.category-sample-links a {
  display: -webkit-box;
  overflow: hidden;
  color: #475569;
  font-size: 14px;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.category-sample-links a:hover {
  color: #2563eb;
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.filter-panel label {
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 13px;
  font-weight: 800;
}

.filter-panel input,
.filter-panel select,
.big-search input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  background: #ffffff;
  color: #111827;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-panel input,
.filter-panel select {
  height: 46px;
  padding: 0 14px;
}

.filter-panel input:focus,
.filter-panel select:focus,
.big-search input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

.big-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  max-width: 760px;
  margin-top: 28px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.big-search input {
  height: 56px;
  padding: 0 20px;
  border-radius: 999px;
}

.big-search button {
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.detail-hero {
  padding: 48px 0 72px;
  isolation: isolate;
}

.detail-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: blur(16px) saturate(1.2);
  transform: scale(1.08);
}

.detail-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.88));
}

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

.breadcrumb a:hover {
  color: #67e8f9;
}

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

.detail-poster {
  overflow: hidden;
  border-radius: 28px;
  background: #334155;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

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

.detail-copy h1 {
  font-size: clamp(34px, 5vw, 64px);
}

.detail-one-line {
  max-width: 820px;
  margin: 0 0 22px;
  color: #dbeafe;
  font-size: 19px;
}

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
}

.detail-meta-grid span {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #e0f2fe;
}

.detail-meta-grid b {
  display: block;
  margin-bottom: 4px;
  color: #67e8f9;
  font-size: 12px;
}

.player-section h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 4vw, 38px);
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.3);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.16));
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-shell.is-playing .player-overlay {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.player-button-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 999px;
  color: #2563eb;
  background: rgba(255, 255, 255, 0.92);
  font-size: 34px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transform: translateX(3px);
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 22px;
}

.text-card {
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.text-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.text-card p {
  margin: 0;
  color: #475569;
  font-size: 17px;
}

.accent-card {
  border-left: 5px solid #f97316;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 52px 0;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

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

.footer-column p {
  margin: 0;
  color: #94a3b8;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

.footer-column a:hover {
  color: #67e8f9;
}

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

.is-hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    max-width: 620px;
  }

  .feature-strip,
  .movie-grid,
  .featured-grid,
  .wide-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

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

  .brand-text small {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 64px 0 100px;
  }

  .hero-layout {
    gap: 32px;
  }

  .hero-slider {
    min-height: 560px;
    border-radius: 24px;
  }

  .feature-strip,
  .movie-grid,
  .featured-grid,
  .wide-grid,
  .catalog-grid,
  .category-grid,
  .category-overview-grid,
  .footer-grid,
  .detail-content,
  .detail-meta-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading,
  .page-hero-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-panel,
  .big-search {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .big-search button {
    height: 50px;
  }

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

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

  .rank-card a {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .rank-card b {
    display: none;
  }
}
