body {
  background-color: #001422;
  margin: 0;
  color: white;
  font-family: "Montserrat", sans-serif;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.circle {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: absolute;
}

.circle-1 {
  left: -50px;
  top: -50px;
  background: radial-gradient(
    69.62% 69.62% at 50% 50%,
    #ea8bfa 0%,
    #7526f5 100%
  );
  height: 138px;
  width: 138px;
}

.circle-2 {
  height: 329px;
  width: 329px;
  top: -150px;
  right: -250px;
  background: radial-gradient(
      63.62% 63.62% at 50% 50%,
      #ff00c7 0%,
      #bd95ff 0.01%,
      #a661ff 32.29%,
      #6100ff 98.59%
    )
    /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
}

.circle-3 {
  width: 230.5625;
  height: 230.5625;
  opacity: 1;
  bottom: -40px;
  left: -50px;
  background: radial-gradient(
    67.47% 67.47% at 50% 50%,
    #fed0ff 0%,
    #7f00ff 100%
  );
}

.card {
  max-width: 400px;
  background-image: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(10px);
  position: relative;
  border-radius: 11px;
}

.card-content{
  border: 1px solid #FFFFFF4D;
  margin: 10px;
  border-radius: 11.16px;
}

.Promo-Image{
  max-width: 100%;
}

.text-content{
  padding: 24px 18px;
}

.tag{
  background-color: rgba(241, 198, 68, 0.24);
  color: #ffd147;
  padding: 2px 8px;
  border-radius: 5.21px;
}

.tagIcon{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.heart{
  width: 17px;
  height: 15px;
}

.subtitle{
  font-size: 12px;
  font-weight: 500;
}

.reating{
  display: flex;
  gap: 9px;
}

.Star{
  object-fit: contain;
}

.reating-points{
  margin-inline: 8px;
}

.cart-Button{
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-block: 25px;
}

.cart-Button button{
  background-color: transparent;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.cart-Button:hover{
  opacity: 1;
}