:root {
  --cyan: #06b6d4;
  --blue: #2563eb;
  --teal: #14b8a6;
  --purple: #7c3aed;
  --pink: #ec4899;
  --rose: #f43f5e;
  --orange: #f97316;
  --green: #22c55e;
  --yellow: #f59e0b;
  --indigo: #4f46e5;
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.10);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: var(--slate-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  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 14px 40px rgba(14, 116, 144, 0.22);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

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

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

.brand-text small {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.88;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fef08a;
  transform: translateY(-1px);
}

.header-search {
  display: flex;
  align-items: center;
  max-width: 300px;
  flex: 1 1 260px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.header-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  padding: 11px 14px;
  outline: none;
}

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

.header-search button,
.mobile-search button,
.page-search-form button,
.large-search button {
  border: 0;
  color: #0f172a;
  background: #fef08a;
  padding: 11px 16px;
  font-weight: 800;
}

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

.mobile-menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-menu {
  display: none;
  padding: 8px 16px 18px;
  background: rgba(14, 116, 144, 0.98);
}

.mobile-menu.open {
  display: grid;
  gap: 10px;
}

.mobile-menu a {
  color: var(--white);
  font-weight: 700;
  padding: 8px 0;
}

.mobile-search {
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.mobile-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  padding: 12px 14px;
}

.hero-carousel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%), linear-gradient(-45deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%);
  background-size: 40px 40px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) blur(1px);
  transform: scale(1.04);
}

.hero-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(14, 116, 144, 0.72) 52%, rgba(37, 99, 235, 0.48) 100%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.24), transparent 34%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 56px;
  min-height: 590px;
  padding: 76px 0;
}

.hero-copy {
  max-width: 760px;
  animation: fadeInUp 0.8s ease both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #cffafe;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-copy p,
.page-hero p,
.detail-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(17px, 2vw, 23px);
}

.hero-tags,
.detail-tags,
.hot-tags,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span,
.hot-tags a,
.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button,
.section-more,
.category-enter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: #1e3a8a;
  background: var(--white);
  padding: 14px 24px;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.18);
}

.ghost-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  padding: 14px 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.primary-button:hover,
.ghost-button:hover,
.section-more:hover,
.category-enter:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.45);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-prev {
  left: 22px;
}

.hero-next {
  right: 22px;
}

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

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

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

.section {
  padding: 72px 0;
}

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

.white-section {
  background: var(--white);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--slate-600);
}

.section-kicker {
  color: var(--cyan);
  margin-bottom: 6px;
}

.section-more,
.category-enter {
  color: #075985;
  background: #ecfeff;
  padding: 11px 18px;
}

.featured-grid,
.movie-grid,
.category-grid,
.category-overview-grid,
.podium-grid {
  display: grid;
  gap: 24px;
}

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

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

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

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

.movie-card,
.category-overview-card,
.sidebar-card,
.content-card,
.player-card,
.index-search-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.movie-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

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

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

.cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(2, 6, 23, 0.68) 100%);
}

.movie-badge,
.movie-duration,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-badge {
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.movie-duration {
  top: 12px;
  right: 12px;
  background: rgba(2, 6, 23, 0.66);
}

.rank-badge {
  left: 12px;
  bottom: 12px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

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

.movie-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--slate-500);
  font-size: 13px;
}

.movie-card h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 19px;
  line-height: 1.35;
}

.movie-card h3 a:hover {
  color: var(--cyan);
}

.movie-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 9px 0 0;
  overflow: hidden;
  color: var(--slate-600);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.movie-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  color: var(--slate-500);
  font-size: 13px;
}

.movie-card-footer a {
  color: #0891b2;
  font-weight: 800;
}

.category-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
  color: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-soft);
}

.category-card img {
  position: absolute;
  right: -22px;
  bottom: -30px;
  width: 150px;
  height: 205px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0.35;
  transform: rotate(8deg);
}

.category-card strong,
.category-card small,
.category-card em,
.category-icon {
  position: relative;
  z-index: 2;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  font-weight: 900;
}

.category-card strong {
  display: block;
  font-size: 24px;
}

.category-card small {
  display: block;
  max-width: 210px;
  margin-top: 8px;
  opacity: 0.88;
}

.category-card em {
  display: inline-flex;
  margin-top: 18px;
  font-style: normal;
  font-weight: 800;
}

.gradient-cyan { background: linear-gradient(135deg, var(--cyan), var(--blue), var(--teal)); }
.gradient-pink { background: linear-gradient(135deg, var(--pink), var(--rose)); }
.gradient-green { background: linear-gradient(135deg, var(--green), var(--teal)); }
.gradient-orange { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.gradient-indigo { background: linear-gradient(135deg, var(--indigo), var(--blue)); }
.gradient-rose { background: linear-gradient(135deg, var(--rose), var(--pink)); }
.gradient-purple { background: linear-gradient(135deg, var(--purple), var(--indigo)); }
.gradient-yellow { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.gradient-blue { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.gradient-teal { background: linear-gradient(135deg, var(--teal), var(--cyan)); }

.ranking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.ranking-list,
.compact-list {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.compact-card img {
  width: 84px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

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

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

.compact-info strong {
  color: var(--slate-900);
}

.compact-info small {
  color: var(--slate-500);
}

.compact-rank {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-weight: 900;
}

.index-search-panel {
  padding: 30px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.index-search-panel h2 {
  margin: 0;
  font-size: 34px;
}

.index-search-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.large-search,
.page-search-form {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.large-search input,
.page-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 16px 18px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 70px 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.20;
  background-image: radial-gradient(circle at 20% 20%, white 0, transparent 18%), radial-gradient(circle at 80% 10%, white 0, transparent 20%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 14px;
  color: #e0f2fe;
  font-weight: 800;
}

.breadcrumb.light,
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.86);
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 190px 190px auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.filter-panel.single-filter {
  grid-template-columns: 1fr auto;
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--slate-600);
  font-weight: 800;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  outline: none;
  padding: 12px 14px;
  background: #f8fafc;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.14);
}

.filter-panel strong {
  color: var(--slate-900);
  white-space: nowrap;
  padding: 12px 0;
}

.category-overview-card {
  overflow: hidden;
}

.category-overview-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  color: var(--white);
  padding: 24px;
}

.category-overview-head span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.20);
  font-weight: 900;
}

.category-overview-head h2,
.category-overview-head p {
  margin: 0;
}

.category-overview-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.detail-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-950);
}

.detail-bg,
.detail-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-bg {
  object-fit: cover;
  filter: blur(2px) saturate(1.18);
  transform: scale(1.04);
}

.detail-bg-layer {
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.90), rgba(15, 23, 42, 0.66), rgba(37, 99, 235, 0.45)),
    linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 40%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 46px 0 70px;
}

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

.detail-poster {
  width: 280px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-stats span {
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

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

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

.player-card {
  padding: 14px;
  background: var(--slate-950);
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.14), rgba(2, 6, 23, 0.76));
}

.video-player.playing .video-overlay {
  display: none;
}

.play-circle {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.35);
  font-size: 28px;
}

.video-overlay strong {
  font-size: 26px;
}

.video-overlay small {
  opacity: 0.85;
}

.player-message {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  margin: 0;
  color: #fde68a;
  text-align: center;
}

.content-card,
.sidebar-card {
  padding: 26px;
}

.content-card h2,
.sidebar-card h2 {
  margin: 0 0 14px;
  color: var(--slate-900);
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.9;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.info-list div {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.info-list dt {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 800;
}

.info-list dd {
  margin: 4px 0 0;
  color: var(--slate-900);
  font-weight: 800;
}

.info-list a {
  color: #0891b2;
}

.tag-cloud a {
  color: #075985;
  background: #ecfeff;
  box-shadow: none;
}

.sticky-card {
  position: sticky;
  top: 96px;
}

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

.site-footer {
  color: rgba(255, 255, 255, 0.86);
  background: var(--slate-950);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 220px 260px;
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer a {
  display: block;
  margin: 6px 0;
}

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

.footer-bottom {
  width: min(1200px, calc(100% - 32px));
  margin: 32px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .header-search {
    margin-left: auto;
  }

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

  .hero-content,
  .detail-hero-grid,
  .detail-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    display: none;
  }

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 66px;
  }

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

  .header-search {
    display: none;
  }

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

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

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .featured-grid,
  .movie-grid,
  .category-grid,
  .category-overview-grid,
  .podium-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .filter-panel.single-filter,
  .info-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .detail-poster {
    width: 190px;
  }

  .compact-card {
    grid-template-columns: 76px minmax(0, 1fr) auto;
  }

  .compact-card img {
    width: 76px;
    height: 54px;
  }
}
