:root {
  --bg1: #1d2671;
  --bg2: #c33764;

  --btn: #c33764;
  --btnHover: #a12a52;

  --ok: #1a7f37;
  --bad: #b00020;

  --error: #b00020;
  --muted: #555;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card {
  width: min(420px, 100%);
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  animation: fadeIn 0.6s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

h1 { margin: 0 0 10px 0; }
h2 { margin: 10px 0; }

p { color: var(--muted); }

.input-wrap {
  display: flex;
  gap: 10px;
  border: 1px solid #ccc;
  padding: 10px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.input-wrap i { color: #777; width: 18px; text-align: center; }

input {
  border: none;
  width: 100%;
  outline: none;
  font-size: 14px;
}

button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: var(--btn);
}

button:hover { background: var(--btnHover); }

.btn-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.yes { background: var(--ok); flex: 1; }
.no  { background: var(--bad); flex: 1; }

.yes:hover { filter: brightness(0.95); }
.no:hover  { filter: brightness(0.95); }

.btn-continue { background: #2563eb; }
.btn-continue:hover { background: #1d4ed8; }

.error { color: var(--error); margin-top: 10px; min-height: 18px; }
.status { margin-top: 10px; min-height: 18px; color: var(--muted); }

.countdown {
  font-weight: 700;
  margin: 8px 0 14px 0;
  color: #222;
}

/* Herz rot + größer */
.heart-red { color: #e11d48; font-size: 44px; }
.thanks-icon { margin-bottom: 8px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
