* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  background: url("selter.jpg")
    center / cover no-repeat;
  filter: blur(25px);
  transform: scale(1.2);
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Card */
.card {
  width: 900px;
  max-width: 95%;
  display: flex;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Poster */
.poster {
  position: relative;
  width: 40%;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.3s;
}

.poster a:hover .play-btn {
  opacity: 1;
}

/* Content */
.content {
  padding: 32px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tags {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.tags span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.desc {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 24px;
}

.cta {
  display: inline-block;
  align-self: flex-start;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3d3d, #ff7a18);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 60, 60, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
  }

  .poster,
  .content {
    width: 100%;
  }

  h1 {
    font-size: 28px;
  }
}
