body {
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  font-family: var(--font-family-main);

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: 1rem;
}

.container {
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}

.logo {
  max-width: 150px;
  height: auto;
  margin: 0 auto 1.5rem auto;
}

header h1 {
  font-size: 1.8rem;
  color: var(--color-text-heading);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  font-weight: 500;
  border-bottom: 2px solid var(--color-brand-primary);
  display: inline-block;
  padding-bottom: 0.5rem;
}

.construction-message h2 {
  color: var(--color-brand-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.construction-message p {
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color-text-muted);
}

footer {
  font-size: 0.8rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border-light);
  padding-top: 1rem;
}
