:root {
  --bg-1: #f6efe7;
  --bg-2: #fde7bf;
  --card: #fffdf8;
  --text: #1f2937;
  --muted: #5f6b7a;
  --accent: #d97706;
  --accent-soft: #fbbf24;
  --shadow: rgba(31, 41, 55, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.85) 0 10%, transparent 11%),
    radial-gradient(circle at 92% 82%, rgba(255, 255, 255, 0.75) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  padding: 24px;
}

.card {
  width: min(680px, 100%);
  background: var(--card);
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 45px -20px var(--shadow);
  padding: 28px;
  text-align: center;
  animation: rise-in 700ms ease-out both;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(217, 119, 6, 0.12);
  color: #92400e;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
}

p {
  margin: 14px auto 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.1rem);
  line-height: 1.55;
}

.dots {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-soft);
  animation: pulse 1.2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.15s;
}

.dot:nth-child(3) {
  animation-delay: 0.3s;
}

.small {
  margin-top: 16px;
  font-size: 0.92rem;
  color: #7a8696;
}

@keyframes pulse {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}