/* Just Floaty — minimal technical foundation.
   Colors, spacing, and typography here are placeholders only,
   not final design decisions. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: #f9f4ec;
  color: #333333;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.5rem;
  text-align: center;
}

.illustration {
  width: min(69.1vw, 355px);
  height: auto;
  display: block;
}

.loading-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: -1.5rem;
}

.loading-bar {
  width: 200px;
  max-width: 80vw;
  height: 6px;
  background-color: #e6e6e2;
}

.loading-bar-fill {
  width: 87%;
  height: 100%;
  background-color: #333333;
}

.loading-bar-percent {
  font-size: 0.875rem;
}

.caption {
  margin: 0;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 4.5rem;
}

.social-links a {
  display: inline-flex;
  color: #333333;
  opacity: 0.65;
  transition: opacity 0.15s ease;
}

.social-links a:hover {
  opacity: 1;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
