* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

.general {
  width: 100vw;
  height: 100vh;
  background-color: #fbc0d9; /* əsas çəhrayı ton */
  display: flex;
  justify-content: center; /* üfüqi ortalama */
  align-items: flex-end;
  position: relative;
}
.box {
  width: 300px;
  height: 350px;
  background-color: white;
  border-radius: 20px;
  border: 2px solid black;
  overflow: hidden;
  position: relative;
  background-image: url(https://avatars.mds.yandex.net/i?id=1d5b40c3a07687e92aa581c923e81ee513fdd29a-5869657-images-thumbs&n=13);
  background-repeat: no-repeat;
  background-size: 300px;
  cursor: pointer;
  /* bu ne ucundur  */
}

.flyingText {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  font-weight: bold;
  color: #b5179e;
  opacity: 0;
  transition: all 0.8s ease;
  z-index: 5;

}

/* Hover zamanı yazının çıxması */
.box:hover ~ .flyingText {
  top: 30px;
  opacity: 1;
}


.bow {
  position: absolute;
  width: 500px; /* İstəyə uyğun ölçü */
  height: auto;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
/* bantik ortaya gelmir  */

.line {
  width: 20px;
  height: 340px;
  background-color: #ee0cd0;
  border: 1px solid black;
  margin: 0 auto;
}

.centerLine {
  width: 290px;
  height: 20px;
  background-color: #ee0cd0;
  border: 1px solid black;
  position: absolute;
  /* position absolute ne is gorur  */
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
}

.cover {
  position: absolute;
  width: 300px;
  height: 40px;
  background: #ee0cd0;
  border: 1px solid black;
  border-radius: 10px 10px 0 0;
  transform-origin: top;
  transition: transform 0.6s ease;
  z-index: 2;
}
/* Hover edəndə qapaq yuxarı doğru açılır */
.box:hover .cover {
  transform: rotateX(90deg);
}

.content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.message {
  font-weight: bold;
  font-size: 18px;
  color: #b5179e;
  opacity: 0;
  transform: translateY(0);
  animation: textRise 1s forwards;
  animation-delay: 0.6s;
}

.box:hover .message {
  animation: textRise 1s forwards 0.5s;
}

.star,
.message {
  animation-play-state: paused;
}

@keyframes starUp {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(-100px) scale(1.3);
    opacity: 1;
  }
}

@keyframes textRise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(-80px);
    opacity: 1;
  }
}

.circle {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd6ec;
  border-radius: 50%;
  top: 60px; /* qutudan kənara çıxmaq üçün mənfi dəyər */
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #ffc0cb;
  z-index: 5;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 15px #f72585;
}

.circleSecond {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd6ec;
  border-radius: 50%;
  top: 300px; /* qutudan kənara çıxmaq üçün mənfi dəyər */
  left: 10%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #ffc0cb;
  z-index: 5;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 15px #f72585;
}

.circleThird {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd6ec;
  border-radius: 50%;
  transform: translateX(-50%);
  /* ne ucundur  */
  box-shadow: 0 0 15px #ffc0cb;
  z-index: 5;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 15px #f72585;
  top: 150px;
  left: 28%;
}

.circleFourth {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd6ec;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #ffc0cb;
  z-index: 5;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 15px #f72585;
  top: 180px;
  left: 80%;
}

.circleFifth {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd6ec;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #ffc0cb;
  z-index: 5;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 15px #c8206c;
  top: 500px;
  left: 90%;
}
.circleSix {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #ffd6ec;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px #ffc0cb;
  z-index: 5;
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 15px #c8206c;
  top: 500px;
  left: 25%;
}
.star {
  font-size: xx-large;
  position: absolute;
  top: 100px;
  left: 15%;
}
.starTwo {
  font-size: xx-large;
  position: absolute;
  top: 600px;
  left: 8%;
}
.starThree {
  font-size: xx-large;
  position: absolute;
  top: 350px;
  left: 70%;
}

.darkStar {
  font-size: xx-large;
  position: absolute;
  top: 100px;
  left: 90%;
}

.darkStarOne {
  font-size: xx-large;
  position: absolute;
  top: 200px;
  left: 50%;
}

.darkStarTwo {
  font-size: xx-large;
  position: absolute;
  top: 600px;
  left: 80%;
}
