:root {
  --site-pink: #ec4899;
  --site-rose: #f43f5e;
  --site-ink: #111827;
}

body {
  background: linear-gradient(to bottom, #fdf2f8, #ffffff 45%, #fff1f2);
  color: var(--site-ink);
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(244, 114, 182, 0.18), transparent 30rem),
    radial-gradient(circle at top right, rgba(251, 113, 133, 0.16), transparent 28rem);
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--site-pink), var(--site-rose));
  box-shadow: 0 10px 25px rgba(236, 72, 153, 0.28);
}

.hero-wrap {
  position: relative;
  height: 68vh;
  min-height: 520px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 720ms ease, transform 1200ms ease;
  pointer-events: none;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-mask {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.1)),
    linear-gradient(to right, rgba(0, 0, 0, 0.62), transparent 62%);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
}

.hero-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.48);
  transition: all 250ms ease;
}

.hero-dot.is-active {
  width: 2rem;
  background: #ffffff;
}

.poster-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background: #fce7f3;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), transparent 55%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.movie-card:hover .card-shine {
  opacity: 1;
}

.play-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(236, 72, 153, 0.94);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(236, 72, 153, 0.35);
}

.section-title-line {
  width: 4rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--site-pink), var(--site-rose));
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #020617;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.35);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.player-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.22), rgba(0, 0, 0, 0.42));
  transition: opacity 280ms ease, visibility 280ms ease;
}

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

.search-panel {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
}

.category-pill {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.16);
}

.page-link.is-current {
  color: #ffffff;
  background: linear-gradient(to right, var(--site-pink), var(--site-rose));
  border-color: transparent;
}

@media (max-width: 768px) {
  .hero-wrap {
    height: 76vh;
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 4rem;
  }
}
