body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  text-align: center;
  margin-top: 50px;
}

h1 {
  font-size: 2.5rem;
  color: #ff2d55;
  margin-bottom: 20px;
}

#product-card {
  background: #222;
  border-radius: 10px;
  padding: 20px;
  max-width: 90%;
  margin: 0 auto 20px;
  box-shadow: 0 0 10px #ff2d55;
}

#product-image {
  width: 200px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}

#product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

#product-link {
  display: inline-block;
  background: #ff2d55;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 20px;
}

button {
  background: #ff2d55;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #e0274a;
}

footer {
  margin-top: 30px;
}

footer a {
  color: #aaa;
  text-decoration: none;
}


