* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", "Apple SD Gothic Neo", sans-serif;
}

body {
  min-height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* Background blur */
.bg {
  position: fixed;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1524985069026-dd778a71c7b4?q=80&w=1600");
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.6);
  transform: scale(1.1);
  z-index: -1;
}

/* Card */
.card {
  width: 360px;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Poster */
.poster {
  position: relative;
  aspect-ratio: 16 / 9;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  font-size: 26px;
  color: white;
  background: linear-gradient(135deg, #5f9cff, #9b6cff);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Content */
.content {
  padding: 20px;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.tags span {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

h1 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.desc {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 18px;
}

/* CTA Button */
.cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #5fa2ff, #9b6cff);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(
