* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffdde1, #ee9ca7);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: white;
  width: 100%;
  max-width: 420px;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hidden {
  display: none;
}

h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  margin-bottom: 25px;
  color: #666;
}

.buttons, .choices {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  flex: 1;
  min-width: 120px;
  padding: 14px;
  font-size: 16px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

#yesBtn {
  background: #ff5fa2;
  color: white;
}

#noBtn {
  background: #ccc;
  position: relative;
}

.choices button {
  background: #6a5af9;
  color: white;
}

.timer {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}
