/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page */
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  color: #1f2937;
  padding: 20px;
}

/* Card */
.card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Warning icon */
.icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #fff3cd;
  color: #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

/* Heading */
h1 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #111827;
}

/* Paragraphs */
p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Status badge */
.status {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fef2f2;
  color: #dc2626;
  font-weight: 600;
}

/* Footer */
.footer {
  margin-top: 28px;
  font-size: 14px;
  color: #9ca3af;
}

/* Links */
a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .card {
    padding: 32px 24px;
  }

  h1 {
    font-size: 24px;
  }

  .icon {
    width: 64px;
    height: 64px;
    font-size: 32px;
  }
}
