:root {
  --accent: #ff5757;
  --bg: #000000;
  --text: #f2f2f2;
  --muted: #8a8a8a;
}

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

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 24px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 87, 87, 0.08), transparent 60%);
  pointer-events: none;
}

.wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  animation: fadeIn 1.1s ease-out;
  padding: 40px 0;
}

.logo {
  width: min(280px, 60vw);
  height: auto;
  margin-bottom: 6rem;
}

@media (max-width: 480px) {
  .logo {
    margin-bottom: 2.5rem;
  }
}

.status {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

.rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.contact {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.contact:hover {
  color: var(--accent);
}

footer {
  position: static;
  padding: 16px 0 8px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

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