@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Lato:wght@300;400&display=swap');

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: #1a1a2e;
  color: #e0ddd5;
  min-height: 100vh;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
}

.card {
  text-align: center;
  max-width: 480px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(224, 221, 213, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  animation: fadeIn 1s ease-out;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  color: #f5c542;
  margin-bottom: 0.6rem;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #a8a49a;
}

.divider {
  width: 40px;
  height: 2px;
  background: #f5c542;
  margin: 1.8rem auto;
  opacity: 0.6;
}

.status {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #7a776f;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
