.film-card__info-title,
  .film-card__info-meta {
    transition: filter 0.3s ease;
  }
  .film-card:hover .film-card__info-title,
  .film-card:focus-within .film-card__info-title,
  .film-card:hover .film-card__info-meta,
  .film-card:focus-within .film-card__info-meta {
    background-image: linear-gradient(90deg, #ff6b6b, #ffd166, #06d6a0, #4cc9f0, #b388ff, #ff6b6b);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: filmCardInfoShimmer 2.6s linear infinite;
  }
  @keyframes filmCardInfoShimmer {
    from { background-position: 0% 50%; }
    to   { background-position: 300% 50%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .film-card__info-title,
    .film-card__info-meta {
      transition: none;
      animation: none !important;
    }
  }@property --gc-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.genre-chip[data-astro-cid-3coevwgx] {
  isolation: isolate;
}

.genre-chip__ambient[data-astro-cid-3coevwgx] {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg,
      transparent 0%,
      color-mix(in srgb, var(--gc-color) 16%, transparent) 45%,
      color-mix(in srgb, var(--gc-color) 24%, transparent) 50%,
      color-mix(in srgb, var(--gc-color) 16%, transparent) 55%,
      transparent 100%);
  background-size: 260% 260%;
  mix-blend-mode: screen;
  opacity: .45;
  animation: genreChipWave calc(5.5s + var(--rhythm, 0) * 3s) ease-in-out infinite;
  animation-delay: calc(var(--rhythm, 0) * -7s);
}

.genre-chip__current[data-astro-cid-3coevwgx] {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--gc-angle),
      transparent 0%,
      transparent 80%,
      color-mix(in srgb, var(--gc-color) 30%, transparent) 88%,
      color-mix(in srgb, white 55%, var(--gc-color)) 96%,
      transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.genre-chip[data-astro-cid-3coevwgx]:hover .genre-chip__current[data-astro-cid-3coevwgx], .genre-chip[data-astro-cid-3coevwgx].is-selected .genre-chip__current[data-astro-cid-3coevwgx] {
  opacity: 1;
  animation: 2.4s linear infinite genreChipCurrent;
}

.genre-chip__glow[data-astro-cid-3coevwgx] {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 20%, var(--gc-color) 0%, transparent 60%);
  opacity: 0;
  transform: scale(.6);
  transition: opacity .5s, transform .6s;
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.genre-chip[data-astro-cid-3coevwgx]:hover .genre-chip__glow[data-astro-cid-3coevwgx], .genre-chip[data-astro-cid-3coevwgx].is-selected .genre-chip__glow[data-astro-cid-3coevwgx] {
  opacity: .22;
  transform: scale(1);
}

.genre-chip__underline[data-astro-cid-3coevwgx] {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  height: 2px;
  background: var(--gc-color);
  transform: scaleX(.18);
  transform-origin: 0;
  opacity: .5;
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .4s;
}

.genre-chip[data-astro-cid-3coevwgx]:hover .genre-chip__underline[data-astro-cid-3coevwgx], .genre-chip[data-astro-cid-3coevwgx].is-selected .genre-chip__underline[data-astro-cid-3coevwgx] {
  transform: scaleX(1);
  opacity: 1;
}

.genre-chip[data-astro-cid-3coevwgx]:hover .genre-chip__name[data-astro-cid-3coevwgx], .genre-chip[data-astro-cid-3coevwgx].is-selected .genre-chip__name[data-astro-cid-3coevwgx] {
  filter: drop-shadow(0 0 12px var(--gc-color));
}

.genre-chip__check[data-astro-cid-3coevwgx] {
  position: absolute;
  top: .6rem;
  right: .6rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: var(--gc-color);
  color: #05070a;
  opacity: 0;
  transform: scale(.4);
  transition: opacity .3s, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.genre-chip[data-astro-cid-3coevwgx].is-selected .genre-chip__check[data-astro-cid-3coevwgx] {
  opacity: 1;
  transform: scale(1);
}

@keyframes genreChipWave {
  0%, 100% {
    background-position: 10% 30%;
    opacity: .32;
  }

  50% {
    background-position: 90% 70%;
    opacity: .55;
  }
}

@keyframes genreChipCurrent {
  from {
    --gc-angle: 0deg;
  }

  to {
    --gc-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .genre-chip[data-astro-cid-3coevwgx], .genre-chip__glow[data-astro-cid-3coevwgx], .genre-chip__underline[data-astro-cid-3coevwgx], .genre-chip__check[data-astro-cid-3coevwgx], .genre-chip__ambient[data-astro-cid-3coevwgx], .genre-chip__current[data-astro-cid-3coevwgx] {
    transition: none;
    animation: none;
  }
}
