.play-loop-visual {
  position: relative;
  min-height: clamp(220px, 28vw, 360px);
  margin: 0 0 1rem;
  overflow: hidden;
  border: 1px solid var(--line, #1f2733);
  border-radius: 8px;
  background: #07090c;
  isolation: isolate;
}

.play-loop-visual::before,
.play-loop-visual::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.play-loop-visual::before {
  inset: 0;
  border: 1px solid rgba(255, 68, 68, 0.16);
  border-radius: inherit;
}

.play-loop-visual::after {
  top: 1rem;
  right: 1rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent, #ff4444);
  box-shadow: 0 0 0 0.25rem rgba(255, 68, 68, 0.12), 0 0 1rem rgba(255, 68, 68, 0.65);
}

.play-loop-visual img {
  display: block;
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  opacity: 0.94;
  transition: transform 450ms ease, opacity 250ms ease;
}

.play-loop-visual:hover img {
  opacity: 1;
  transform: scale(1.012);
}

@media (max-width: 767px) {
  .play-loop-visual {
    min-height: 210px;
  }

  .play-loop-visual img {
    height: 210px;
    object-position: 52% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .play-loop-visual img {
    transition: none;
  }
}
