/* CRServers suspended-site page — self-contained (lives inside DocumentRoot) */

:root {
  --blue: #006ebf;
  --blue-dark: #004e85;
  --bg: #f7f9fc;
  --text: #171717;
  --muted: #707070;
  --card: #ffffff;
  --border: #e3e9ef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.accent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue));
}

.card {
  width: 100%;
  max-width: 34rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  text-align: center;
}

h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 650;
  line-height: 1.3;
  color: var(--blue-dark);
}

.lead-en {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.msg {
  margin: 0 0 0.75rem;
  font-size: 0.975rem;
  color: var(--text);
}

.msg-en {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.msg a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.msg a:hover,
.msg a:focus-visible {
  color: var(--blue-dark);
}

.msg a:focus-visible {
  outline: 2px solid rgba(0, 110, 191, 0.35);
  outline-offset: 2px;
}

@media (max-width: 420px) {
  .card {
    padding: 1.5rem 1.15rem;
  }
}
