/* ===== WIP PAGE ONLY ===== */

.wip-container {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.wip-content {
  animation: fadeUp 0.9s ease forwards;
}

.wip-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.wip-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== Animation ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
