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

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: #fafafa;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.construction-visual {
  width: auto;
  height: 33vh;
  max-width: 90vw;
  flex: none;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
  margin-bottom: 1.5rem;
}

.name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.status {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #444444;
}
