:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --bg-color: #f4f7f6;
  --text-color: #333;
  --white: #ffffff;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.card {
  background: var(--white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  line-height: 1.6;
  color: #666;
}

.status-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
}
