
:root {
  --cake-cream: #fff5e1;
  --cake-rose: #ffc0cb;
  --cake-strawberry: #ffb6c1;
  --cake-lavender: #e6e6fa;
  --cake-mint: #98d8c8;
  --cake-vanilla: #fffacd;
  --cake-coral: #ff7f50;
  --bow-pink: #ff69b4;
  --bow-hotpink: #ff1493;
  --ink: #1f2937;
  --muted: #6b7280;
  --white-soft: rgba(255, 255, 255, 0.86);
  --shadow-cake: 0 18px 42px rgba(255, 105, 180, 0.22);
  --shadow-soft: 0 12px 28px rgba(120, 72, 102, 0.12);
  --radius-cake: 32px;
  --radius-soft: 22px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 105, 180, 0.18), transparent 34rem),
    radial-gradient(circle at 75% 8%, rgba(152, 216, 200, 0.2), transparent 30rem),
    linear-gradient(135deg, var(--cake-cream) 0%, #fff 40%, var(--cake-rose) 100%);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, 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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(255, 182, 193, 0.35);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(255, 182, 193, 0.22);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  border-radius: var(--radius-cake);
  background: linear-gradient(135deg, var(--cake-strawberry), var(--bow-hotpink));
  box-shadow: 0 8px 18px rgba(255, 20, 147, 0.28);
  animation: wiggle 4s ease-in-out infinite;
}

.brand-copy strong,
.footer-brand strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink), var(--bow-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  color: var(--cake-coral);
  font-size: 12px;
}

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

.nav-link {
  border: 0;
  background: transparent;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--bow-hotpink);
  background: rgba(255, 192, 203, 0.42);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-cake);
  transition: all 0.22s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 9px 10px;
  border-radius: 14px;
  color: #4b5563;
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: var(--bow-hotpink);
  background: rgba(255, 192, 203, 0.42);
}

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

.header-search input,
.mobile-search input,
.filter-panel input,
.filter-panel select {
  border: 2px solid rgba(255, 182, 193, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  width: 250px;
  padding: 10px 16px;
}

.header-search button,
.mobile-search button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  box-shadow: 0 8px 18px rgba(255, 20, 147, 0.22);
}

.header-search input:focus,
.mobile-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--bow-hotpink);
  box-shadow: 0 0 0 4px rgba(255, 20, 147, 0.12);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--bow-hotpink);
  background: rgba(255, 192, 203, 0.5);
}

.mobile-panel {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 18px;
}

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

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

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

.mobile-search input {
  padding: 12px 16px;
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 20px 10px;
}

.page-narrow {
  max-width: 1080px;
}

.hero-carousel {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.88), rgba(255, 192, 203, 0.82), rgba(255, 250, 205, 0.78));
  box-shadow: var(--shadow-cake);
  isolation: isolate;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255, 255, 255, 0.12) 14px 26px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0.1));
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 380px;
  gap: 32px;
  align-items: center;
  padding: 70px 76px 110px;
  opacity: 0;
  transform: scale(1.015);
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: blur(2px) saturate(1.08);
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--bow-hotpink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.22);
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 950;
}

.hero-copy p {
  max-width: 680px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 18px;
}

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

.hero-meta span,
.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
  font-weight: 800;
}

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

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

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  box-shadow: 0 12px 26px rgba(255, 20, 147, 0.32);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-poster {
  align-self: stretch;
  display: flex;
  align-items: center;
  transform: rotate(3deg);
}

.hero-poster img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.hero-controls {
  position: absolute;
  right: 26px;
  top: 26px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero-controls button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--bow-hotpink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.hero-dots {
  position: absolute;
  left: 76px;
  right: 76px;
  bottom: 26px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.hero-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  text-align: left;
  opacity: 0.72;
}

.hero-dot.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
}

.hero-dot img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
}

.hero-dot span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.sprinkle {
  position: absolute;
  z-index: 3;
  color: rgba(255, 255, 255, 0.72);
  font-size: 34px;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.sprinkle-a {
  left: 24px;
  top: 20px;
}

.sprinkle-b {
  right: 110px;
  bottom: 110px;
  animation-delay: 1s;
}

.sprinkle-c {
  left: 48%;
  top: 40px;
  animation-delay: 1.8s;
}

.quick-cats {
  margin: 26px 0 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-cats a {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-cats a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-cake);
}

.quick-cats strong {
  color: var(--bow-hotpink);
  font-size: 20px;
}

.quick-cats span {
  color: var(--muted);
  font-size: 14px;
}

.content-section {
  margin: 0 0 62px;
}

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

.section-head h2 {
  margin: 12px 0 6px;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-more,
.text-link {
  color: var(--bow-hotpink);
  font-weight: 900;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(255, 182, 193, 0.35);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

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

.card-poster {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cake-rose), var(--cake-vanilla));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent 55%);
}

.play-chip,
.rank-badge {
  position: absolute;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.play-chip {
  right: 12px;
  bottom: 12px;
  padding: 7px 11px;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
}

.rank-badge {
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 16px;
}

.card-meta,
.card-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 192, 203, 0.36);
}

.card-body h3 {
  margin: 11px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.card-body h3 a:hover {
  color: var(--bow-hotpink);
}

.card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--bow-hotpink);
  background: rgba(255, 192, 203, 0.34);
  font-size: 12px;
  font-weight: 800;
}

.card-foot {
  justify-content: space-between;
  margin-top: 14px;
}

.rating {
  color: #eab308;
  font-weight: 950;
}

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

.movie-card-horizontal {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
}

.movie-card-horizontal .card-poster {
  aspect-ratio: auto;
  min-height: 190px;
  height: 100%;
}

.movie-card-horizontal .card-body h3 {
  font-size: 20px;
}

.channel-strip {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.28);
}

.channel-strip-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.channel-strip h3 {
  margin: 0 0 4px;
  color: var(--bow-hotpink);
  font-size: 22px;
}

.channel-strip p {
  margin: 0;
  color: var(--muted);
}

.channel-strip-head a {
  color: var(--bow-hotpink);
  font-weight: 900;
}

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

.page-hero {
  margin-bottom: 28px;
  padding: 44px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.55), transparent 24rem),
    linear-gradient(135deg, rgba(255, 105, 180, 0.92), rgba(255, 192, 203, 0.86), rgba(230, 230, 250, 0.92));
  color: #fff;
  box-shadow: var(--shadow-cake);
}

.small-hero h1 {
  margin: 16px 0 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}

.small-hero p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

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

.category-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.34);
}

.category-cover {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: 24px;
}

.category-cover img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.category-card span {
  color: var(--bow-hotpink);
  font-weight: 900;
}

.category-card h2 {
  margin: 6px 0;
  font-size: 26px;
}

.category-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 190px 160px auto;
  align-items: end;
  gap: 14px;
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.32);
}

.filter-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  padding: 12px 15px;
}

.filter-count {
  color: var(--bow-hotpink);
  padding: 12px 0;
}

.empty-state {
  padding: 34px;
  border-radius: 28px;
  text-align: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--bow-hotpink);
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 95% 20%, rgba(255, 255, 255, 0.62), transparent 30rem),
    linear-gradient(135deg, rgba(255, 105, 180, 0.9), rgba(255, 192, 203, 0.84), rgba(255, 250, 205, 0.86));
  box-shadow: var(--shadow-cake);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  box-shadow: 0 22px 48px rgba(80, 40, 80, 0.22);
}

.detail-copy {
  color: #fff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.24);
}

.detail-copy h1 {
  margin: 16px 0 10px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
}

.detail-one-line {
  margin: 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
}

.detail-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.player-section {
  margin-bottom: 34px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #111827;
  box-shadow: var(--shadow-cake);
}

.player-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.player-start {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.player-start span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  box-shadow: 0 14px 34px rgba(255, 20, 147, 0.38);
  font-size: 34px;
}

.player-start strong {
  font-size: 22px;
}

.player-frame.is-playing .player-start {
  opacity: 0;
  pointer-events: none;
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 2;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  font-size: 13px;
}

.player-frame.is-playing .player-status {
  display: none;
}

.article-card,
.text-panel {
  padding: 32px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 182, 193, 0.32);
}

.article-card h2,
.text-panel h2 {
  margin: 0 0 12px;
  color: var(--bow-hotpink);
  font-size: 26px;
}

.article-card p,
.text-panel p {
  margin: 0 0 22px;
  color: #374151;
  font-size: 17px;
}

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

.info-list div {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 192, 203, 0.24);
}

.info-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

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

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

.site-footer {
  margin-top: 70px;
  padding: 46px 20px 28px;
  background: linear-gradient(135deg, rgba(230, 230, 250, 0.9), rgba(255, 192, 203, 0.92));
  border-top: 1px solid rgba(255, 255, 255, 0.54);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 26px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer p,
.site-footer a {
  color: #4b5563;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.site-footer a:hover {
  color: var(--bow-hotpink);
}

.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  color: #6b7280;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  60% {
    transform: rotate(3deg);
  }

  80% {
    transform: rotate(-2deg);
  }
}

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

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

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

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

  .hero-slide {
    grid-template-columns: 1fr 280px;
    padding: 56px 44px 110px;
  }

  .hero-dots {
    left: 44px;
    right: 44px;
  }
}

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

  .mobile-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .header-inner {
    gap: 12px;
  }

  .hero-carousel {
    min-height: 720px;
    border-radius: 30px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 44px 24px 168px;
  }

  .hero-poster {
    display: none;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-dots {
    left: 18px;
    right: 18px;
    bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-dot:nth-child(n + 5) {
    display: none;
  }

  .quick-cats,
  .category-grid,
  .filter-panel,
  .footer-grid,
  .detail-hero,
  .info-list {
    grid-template-columns: 1fr;
  }

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

  .section-head,
  .channel-strip-head {
    align-items: start;
    flex-direction: column;
  }

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

  .detail-hero {
    padding: 22px;
  }

  .detail-poster {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding: 22px 12px 0;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .movie-grid,
  .dense-grid,
  .strip-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-horizontal {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .movie-card-horizontal .card-poster {
    min-height: 170px;
  }

  .card-body {
    padding: 13px;
  }

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

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

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

  .hero-dot:nth-child(n + 4) {
    display: none;
  }

  .page-hero,
  .article-card,
  .text-panel {
    padding: 24px;
    border-radius: 26px;
  }
}
