:root {
  --diep-paars: #4B1D60;
  --levendig-violet: #9D4EDD;
  --fel-oranje: #FF7800;
  --zacht-oranje: #FFA559;
  --lavendel: #B47CFF;
  --bg: #FAF8FC;
  --text: #4B1D60;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 10%, rgba(180, 124, 255, 0.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 120, 0, 0.10), transparent 40%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}

.logo {
  width: min(90vw, 480px);
  height: auto;
  margin-bottom: 2rem;
}

.status {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--diep-paars);
  opacity: 0.85;
  max-width: 32rem;
}

.footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--diep-paars);
  opacity: 0.7;
  padding: 1.5rem 1rem 2rem;
  border-top: 1px solid rgba(75, 29, 96, 0.1);
}

.footer p {
  margin: 0.25rem 0;
}

.footer a {
  color: var(--levendig-violet);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--fel-oranje);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .status {
    font-size: 1rem;
  }
}
