@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f4f4f3;
  color: #1a1a18;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  -webkit-font-smoothing: antialiased;
}

.container {
  background-color: #ffffff;
  border: 1px solid #dddbd3;
  border-radius: 18px;
  padding: 2.75rem 2.25rem;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* ── Header ── */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff8e1;
  border: 1.5px solid #ffe082;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.icon-wrap svg {
  width: 32px;
  height: 32px;
  display: block;
}

.badge {
  display: inline-block;
  background-color: #fff8e1;
  color: #7c4f0a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid #ffe082;
  margin-bottom: 0.85rem;
}

h1 {
  font-size: 21px;
  font-weight: 600;
  color: #1a1a18;
  line-height: 1.35;
}

/* ── Divider ── */
hr {
  border: none;
  border-top: 1px solid #e8e6de;
  margin: 1.6rem 0;
}

/* ── Cards ── */
.card {
  border: 1px solid #e8e6de;
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background-color: #fafaf9;
}

.card.danger {
  border-color: #f5c2c2;
  background-color: #fff8f8;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.dot-warn   { background-color: #c47a10; }
.dot-danger { background-color: #b83232; }

.card-body strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a18;
  margin-bottom: 5px;
}

.card-body p {
  font-size: 13.5px;
  color: #5a5955;
  line-height: 1.65;
}

code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 12.5px;
  background-color: #eeecea;
  color: #1557a0;
  padding: 1px 6px;
  border-radius: 5px;
}

/* ── Buttons ── */
.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.25rem;
}

.btn-continue {
  display: block;
  width: 100%;
  padding: 0.78rem 1rem;
  background-color: #1a1a18;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.btn-continue:hover {
  background-color: #333330;
}

.btn-back {
  display: block;
  width: 100%;
  padding: 0.78rem 1rem;
  background-color: transparent;
  color: #5a5955;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #dddbd3;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-back:hover {
  background-color: #f4f4f3;
  color: #1a1a18;
}

/* ── Footer ── */
.footer {
  text-align: center;
  font-size: 12.5px;
  color: #9a9891;
  margin-top: 1.1rem;
}
