body {
  background: linear-gradient(to right, #ff9a9e, #fad0c4);
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.container {
  max-width: 600px;
  margin: 100px auto;
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  text-align: center;
  position: relative;
  z-index: 2;
}

h1 {
  color: #d63384;
}

#motiv {
  font-size: 20px;
  margin: 30px 0;
  transition: all 0.3s ease-in-out;
}

button {
  padding: 15px 25px;
  font-size: 18px;
  background-color: #ff4d6d;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #e63950;
  transform: scale(1.05);
}

/* 🎈 inimioare care cad */
.hearts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background: url('https://www.freeiconspng.com/uploads/heart-png-15.png') no-repeat center;
  background-size: cover;
  animation: fall 6s linear infinite;
  opacity: 0.8;
}


}
#musicBtn {
  margin-top: 15px;
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

#musicBtn:hover {
  background-color: #5a6268;
}


@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}
    .insta-button {
      position: fixed;
      bottom: 15px;
      right: 15px;
      background-color: #e1306c;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .insta-button:hover {
      background-color: #c72b5c;
    }

    .insta-button img {
      width: 24px;
      height: 24px;
    }

.fb-button {
  position: fixed;
  bottom: 15px;
  right: 75px; /* puțin în stânga față de Instagram */
  background-color: #1877f2;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.fb-button:hover {
  background-color: #145dbf;
}

.fb-button img {
  width: 24px;
  height: 24px;
}

.tiktok-button {
  position: fixed;
  bottom: 15px;
  right: 135px; /* mai la stânga față de celelalte */
  background-color: #000000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.tiktok-button:hover {
  background-color: #111111;
}

.tiktok-button img {
  width: 24px;
  height: 24px;
}