:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f2ed;
  color: #17211b;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(34, 139, 126, 0.18), transparent 36%),
    linear-gradient(315deg, rgba(211, 85, 45, 0.14), transparent 42%),
    #f4f2ed;
}

.counter-card {
  width: min(100%, 360px);
  padding: 32px;
  border: 1px solid rgba(23, 33, 27, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(23, 33, 27, 0.12);
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #5c6b61;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.count {
  display: block;
  min-height: 1.2em;
  margin: 24px 0;
  color: #0f766e;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: #17211b;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
}

button:hover {
  background: #243429;
}

button:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 3px;
}
