:root {
  --cake-cream: #fff5e1;
  --cake-vanilla: #fffacd;
  --cake-rose: #ffc0cb;
  --cake-strawberry: #ffb6c1;
  --cake-peach: #ffdab9;
  --cake-lavender: #e6e6fa;
  --bow-pink: #ff69b4;
  --bow-hotpink: #ff1493;
  --ink: #312334;
  --muted: #756375;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.76);
  --shadow-cake: 0 18px 45px rgba(255, 105, 180, 0.18);
  --shadow-soft: 0 10px 28px rgba(125, 73, 112, 0.13);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --radius-sm: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 105, 180, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(255, 218, 185, 0.7), transparent 24rem),
    linear-gradient(135deg, var(--cake-cream), var(--cake-rose) 52%, var(--cake-peach));
}

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;
}

.gradient-text {
  background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink), var(--bow-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.4rem;
  padding: 0.34rem 0.8rem;
  color: var(--bow-hotpink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(255, 105, 180, 0.12);
}

.btn-cake,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn-cake {
  color: #fff;
  background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink));
  box-shadow: 0 12px 26px rgba(255, 105, 180, 0.32);
}

.btn-ghost {
  color: var(--bow-hotpink);
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(255, 182, 193, 0.52);
}

.btn-cake:hover,
.btn-ghost:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 34px rgba(255, 105, 180, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 182, 193, 0.42);
  box-shadow: 0 8px 22px rgba(255, 182, 193, 0.22);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.45rem;
  border-radius: 1.25rem;
  color: #fff;
  background: linear-gradient(135deg, var(--cake-strawberry), var(--bow-hotpink));
  box-shadow: var(--shadow-cake);
  animation: brandWiggle 3.2s ease-in-out infinite;
}

.brand-text {
  display: grid;
  gap: 0.12rem;
}

.brand-text strong {
  font-size: 1.45rem;
  line-height: 1;
}

.brand-text small {
  color: #c75386;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 800;
  color: #5f5163;
}

.desktop-nav a,
.nav-dropdown > button {
  border: 0;
  color: inherit;
  background: transparent;
  font-weight: 800;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown > button:hover {
  color: var(--bow-hotpink);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  padding: 1.5rem 0;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 260px;
  padding: 0.75rem;
  gap: 0.45rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-cake);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-panel a {
  padding: 0.6rem 0.7rem;
  border-radius: 0.8rem;
}

.nav-dropdown-panel a:hover {
  background: rgba(255, 192, 203, 0.42);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.34rem;
  border: 2px solid rgba(255, 182, 193, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.nav-search input {
  width: 170px;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.45rem 0.55rem;
}

.nav-search button {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, var(--bow-pink), var(--bow-hotpink));
  border-radius: 999px;
  padding: 0.46rem 0.9rem;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--bow-hotpink);
  background: rgba(255, 192, 203, 0.45);
  font-size: 1.35rem;
}

.mobile-panel {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 1rem;
}

.mobile-panel a {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 12px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow.one {
  top: 4rem;
  left: 2vw;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 105, 180, 0.16);
}

.hero-glow.two {
  right: 2vw;
  bottom: 1rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 250, 205, 0.55);
}

.hero-shell {
  position: relative;
  min-height: 590px;
  border: 2px solid rgba(255, 255, 255, 0.66);
  border-radius: 2.35rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.46)),
    linear-gradient(120deg, rgba(255, 105, 180, 0.28), rgba(255, 218, 185, 0.48));
  box-shadow: var(--shadow-cake);
  backdrop-filter: blur(18px);
}

.hero-slide {
  display: none;
  align-items: center;
  min-height: 590px;
  padding: clamp(1.25rem, 4vw, 4rem);
  gap: clamp(1rem, 5vw, 4rem);
}

.hero-slide.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  animation: fadeIn 0.5s ease;
}

.hero-copy {
  display: grid;
  gap: 1.1rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  color: #a83d78;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 182, 193, 0.6);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.hero-art {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(115, 35, 80, 0.25);
  transform: rotate(1.2deg);
}

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

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

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.52));
}

.hero-score {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, var(--bow-hotpink));
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.hero-controls button {
  border: 0;
  color: var(--bow-hotpink);
  background: rgba(255, 192, 203, 0.48);
  font-weight: 900;
}

.hero-controls > button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
}

.hero-dots {
  display: inline-flex;
  gap: 0.4rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 105, 180, 0.35);
}

.hero-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--bow-hotpink);
}

.quick-search-section {
  margin-top: 18px;
}

.quick-search-card,
.feature-panel,
.ranking-panel,
.content-card,
.channel-card {
  border: 2px solid rgba(255, 182, 193, 0.34);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.quick-search-card {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.quick-search-card h2,
.section-heading h2,
.feature-panel h2,
.page-hero h1,
.detail-info h1,
.content-card h2,
.channel-card h2 {
  margin: 0;
}

.quick-search-card p,
.feature-panel p,
.page-hero p,
.content-card p {
  color: var(--muted);
  line-height: 1.85;
}

.big-search {
  display: flex;
  gap: 0.75rem;
  padding: 0.45rem;
  border: 2px solid rgba(255, 182, 193, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.big-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 1rem;
}

.category-pills,
.related-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.category-pills a,
.related-channels a {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 182, 193, 0.58);
  color: #8d3d6e;
  font-weight: 800;
  transition: 0.2s ease;
}

.category-pills a:hover,
.related-channels a:hover {
  color: #fff;
  background: var(--bow-hotpink);
  transform: translateY(-2px);
}

.section-block {
  padding: 48px 0 10px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.section-heading a {
  color: var(--bow-hotpink);
  font-weight: 900;
}

.small-heading {
  align-items: center;
}

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

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

.movie-card {
  display: grid;
  overflow: hidden;
  border: 2px solid rgba(255, 182, 193, 0.34);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 20, 147, 0.35);
  box-shadow: var(--shadow-cake);
}

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 192, 203, 0.6), rgba(255, 250, 205, 0.7));
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5));
  opacity: 0.82;
}

.duration,
.play-mark,
.rank-badge {
  position: absolute;
  z-index: 2;
}

.duration {
  right: 0.7rem;
  bottom: 0.7rem;
  padding: 0.24rem 0.5rem;
  color: #fff;
  border-radius: 0.55rem;
  background: rgba(0, 0, 0, 0.62);
  font-size: 0.75rem;
  font-weight: 800;
}

.play-mark {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 20, 147, 0.82);
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  transition: 0.25s ease;
}

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

.rank-badge {
  left: 0.7rem;
  top: 0.7rem;
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.55rem;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb347, var(--bow-hotpink));
  font-weight: 900;
}

.movie-card-body {
  display: grid;
  gap: 0.54rem;
  padding: 1rem;
}

.movie-card-body strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.34;
}

.movie-meta,
.movie-desc {
  color: var(--muted);
  font-size: 0.88rem;
}

.movie-desc {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}

.compact-card .movie-card-body {
  padding: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.25rem;
}

.ranking-panel,
.feature-panel {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.rank-list {
  display: grid;
  gap: 0.75rem;
}

.rank-row {
  display: grid;
  grid-template-columns: auto 74px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.22s ease, background 0.22s ease;
}

.rank-row:hover {
  transform: translateX(4px);
  background: rgba(255, 240, 246, 0.95);
}

.rank-row img {
  width: 74px;
  height: 54px;
  object-fit: cover;
  border-radius: 0.8rem;
}

.rank-row span {
  display: grid;
  gap: 0.22rem;
  min-width: 0;
}

.rank-row strong,
.rank-row small,
.rank-row em {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row small,
.rank-row em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.rank-row b {
  color: var(--bow-hotpink);
}

.rank-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  font-weight: 900;
}

.feature-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.mini-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-channel-grid a {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.mini-channel-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.page-hero {
  padding: 72px 0 44px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 105, 180, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 250, 205, 0.42));
}

.page-hero .container {
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: -0.04em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  font-size: 1.06rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.channel-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
}

.channel-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  box-shadow: var(--shadow-cake);
}

.channel-card p {
  color: var(--muted);
  line-height: 1.75;
}

.channel-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.channel-samples a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: #8d3d6e;
  background: rgba(255, 192, 203, 0.36);
  font-size: 0.86rem;
  font-weight: 800;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  border: 2px solid rgba(255, 182, 193, 0.34);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.filter-panel input,
.filter-panel select {
  min-height: 46px;
  border: 2px solid rgba(255, 182, 193, 0.46);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 1rem;
}

.filter-panel input {
  flex: 1;
  min-width: 230px;
}

.related-channels {
  margin-top: 1.35rem;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

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

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

.inner-search {
  max-width: 820px;
}

.search-filter-panel {
  justify-content: flex-end;
}

.detail-hero {
  padding: 34px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 1.35rem;
  align-items: stretch;
}

.player-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 2px solid rgba(255, 182, 193, 0.38);
  border-radius: 2rem;
  background: #111;
  box-shadow: var(--shadow-cake);
}

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

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72));
}

.player-cover span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bow-pink), var(--bow-hotpink));
  font-size: 2rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  transform: translateX(3px);
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-info {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px solid rgba(255, 182, 193, 0.34);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.detail-info h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.detail-meta span {
  padding: 0.46rem 0.75rem;
  border-radius: 999px;
  color: #8d3d6e;
  background: rgba(255, 192, 203, 0.34);
  font-weight: 800;
}

.detail-play-anchor {
  width: fit-content;
}

.detail-content {
  display: grid;
  gap: 1.1rem;
  padding-top: 1.4rem;
}

.content-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.content-card p {
  margin-bottom: 0;
  white-space: pre-line;
}

.related-block {
  padding-top: 24px;
}

.site-footer {
  margin-top: 54px;
  padding: 34px 0;
  color: #72596c;
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 182, 193, 0.42);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0.35rem 0 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 800;
}

@keyframes brandWiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(4deg);
  }
  75% {
    transform: rotate(-4deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

  .hero-slide.is-active,
  .detail-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 320px;
  }

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

  .tall-rank-list {
    grid-template-columns: 1fr;
  }
}

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

  .brand-text strong {
    font-size: 1.12rem;
  }

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

  .nav-search {
    display: none;
  }

  .home-hero {
    padding-top: 18px;
  }

  .hero-shell,
  .hero-slide {
    min-height: auto;
  }

  .hero-slide {
    padding: 1.15rem 1.15rem 5rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .hero-actions,
  .big-search,
  .section-heading,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .big-search {
    border-radius: 1.4rem;
  }

  .big-search input {
    min-height: 44px;
  }

  .movie-grid,
  .three-col,
  .ranking-grid,
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .rank-row {
    grid-template-columns: auto 62px minmax(0, 1fr);
  }

  .rank-row b {
    display: none;
  }

  .player-card,
  .player-card video {
    min-height: 260px;
  }

  .detail-info {
    padding: 1rem;
  }
}

@media (max-width: 520px) {
  .movie-grid,
  .three-col,
  .ranking-grid,
  .channel-grid,
  .mini-channel-grid,
  .mobile-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    min-height: 240px;
  }
}
