body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #111;
  color: #fff;
  text-align: center;
}
.hero {
  position: relative;
  height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.poster-img {
  position: absolute;
  width: 180px;
  top: 50%;
  transform: translateY(-50%);
}
.poster-img.left {
  left: 30%;
  transform: translateY(-50%) rotate(-20deg);
}
.poster-img.right {
  right: 30%;
  transform: translateY(-50%) rotate(20deg);
}
.cta-button {
  margin-top: 20px;
  padding: 10px 20px;
  background: white;
  color: black;
  border-radius: 8px;
  text-decoration: none;
}
.catalog-title {
  margin: 20px;
}
.catalog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.product-card {
  background: #222;
  padding: 20px;
  border-radius: 12px;
  width: 260px;
}
.product-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}
button {
  margin-top: 10px;
  padding: 8px 16px;
  border: none;
  background: white;
  color: black;
  border-radius: 6px;
  cursor: pointer;
}