body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #ff9a9e, #fad0c4);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  text-align: center;
  width: 420px;
  position: relative;
}

h1 {
  margin-top: 0;
  font-size: 2rem;
}

p {
  color: #555;
  line-height: 1.6;
}

.buttons {
  margin-top: 30px;
  position: relative;
  height: 140px;
}

button {
  padding: 12px 22px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  position: absolute;
}

.yes {
  background: #ff4d6d;
  color: white;
  left: 40px;
  top: 40px;
}

.no {
  background: #e0e0e0;
}

.message {
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
  color: #ff4d6d;
}
