:root {
  color-scheme: light;
  font-family: "SF Pro Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: #f6f4f1;
  color: #1d1b16;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.wrap {
  width: min(720px, 90vw);
  padding: 48px 36px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  color: #4a453c;
}

.card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  background: #f4efe7;
}

#message {
  margin: 0;
  font-weight: 500;
}

button {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  background: #c96c3a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 16px rgba(201, 108, 58, 0.25);
}
