* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

/* background blur */
.background {
  position: fixed;
  inset: 0;
  background: url("https://media.themoviedb.org/t/p/w94_and_h141_face/klvZs66SG19qmacdwxSRkdFQhQS.jpg") center/cover no-repeat;
  filter: blur(25px) brightness(0.4);
  z-index: -1;
}

/* card */
.card {
  width: 340px;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

/* poster */
.poster {
  position: relative;
}

.poster img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #7aa2ff;
  text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

/* content */
.content {
  padding: 18px;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.tags span {
  font-size: 12px;
  background: #222;
  padding: 4px 10px;
  border-radius: 12px;
}

h1 {
  font-size: 22px;
  margin-bottom: 8px;
}

p {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 16px;
}

/* button */
.btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5f8bff, #a36bff);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
