body {
  background: linear-gradient(to right, pink, lightblue);
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  max-width: 500px;
  margin: 50px auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

button {
  padding: 15px 25px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#yesBtn {
  background-color: #ff4d4d;
  color: white;
}

#noBtn {
  background-color: #ccc;
  color: black;
  position: relative;
}

.gif {
  width: 250px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .container {
    margin: 30px 10px;
  }

  button {
    width: 100%;
  }

  .gif {
    width: 100%;
  }
}
    .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;
}