body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #fff0f5;
  font-family: 'sans-serif';
}

.container {
  text-align: center;
  background: white;
  padding: 40px 20px;
  width: 280px;
  /* Standard mobile card width */
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gif {
  width: 180px;
  height: auto;
  border-radius: 10px;
}

h1 {
  color: #d63384;
  font-size: 22px;
  margin: 20px 0;
}

.btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 50px;
  /* Keeps space for buttons */
  position: relative;
}

button {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10;
}

#yes-btn {
  background-color: #4CAF50;
  color: white;
}

#no-btn {
  background-color: #f44336;
  color: white;
  /* Removed absolute position from here so it starts aligned */
}

.hidden {
  display: none;
}