.card h1 {
  font-size: 2.4rem;
  margin: 24px 0 18px 0;
  text-align: center;
}

.lead {
  font-size: 1.35rem;
  margin-bottom: 18px;
  text-align: center;
}

.divider {
  height: 2px;
  background: var(--border);
  margin: 18px 0;
}

.info-grid {
  font-size: 1.15rem;
}

.info .label {
  font-size: 1.05em;
  font-weight: 600;
}

.info .value {
  font-size: 1.15em;
}

.footer {
  font-size: 1.1rem;
  margin-top: 22px;
  text-align: center;
}
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --border: #e5e7eb;
  --text: #111827;
  --muted: #6b7280;
  --accent: #f5b000;     /* GameInsight yellow */
  --accent-dark: #d99a00;
  --shadow: 0 20px 40px rgba(0,0,0,0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(
      0deg,
      rgba(0,0,0,0.02),
      rgba(0,0,0,0.02)
    ),
    var(--bg);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(880px, 100%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.logo {
  display: block;
  margin: 0 auto 16px auto;
  max-width: 60%;
  min-width: 220px;
  height: auto;
}

/* Maintenance illustration */
.illustration-wrap {
  display: flex;
  justify-content: center;
  margin: 12px 0 18px;
}

.illustration {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
