/* Under Construction Page */

.uc-wrap {
  min-height: 100vh;
  padding: 140px 1.5rem 5rem;
  display: grid;
  place-items: center;

  /* ocean-y gradient that plays nice with your current blue background */
  background: radial-gradient(circle at 20% 10%, rgba(6, 218, 246, 0.25), transparent 40%),
              radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.10), transparent 45%),
              linear-gradient(#153499 30%, #4194d8 80%);
}

.uc-card {
  position: relative;
  width: min(760px, 92vw);
  padding: 2.2rem 2.2rem 2rem;
  border-radius: 22px;
  background: rgba(11, 36, 64, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  overflow: hidden;
}

.uc-kicker {
  margin: 0 0 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  color: #06daf6;
}

.uc-title {
  margin: 0 0 0.8rem;
  font-family: "Federo", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.uc-subtitle {
  margin: 0 0 1.6rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.uc-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.uc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  padding: 0.9rem 1.15rem;
  font-family: "Federo", sans-serif;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}

.uc-btn.primary {
  background: rgba(6, 218, 246, 0.18);
  border-color: rgba(6, 218, 246, 0.40);
  color: white;
}

.uc-btn.primary:hover {
  transform: translateY(-1px);
  background: rgba(6, 218, 246, 0.26);
}

.uc-note {
  margin: 1.35rem 0 0;
  font-size: 0.95rem;
  opacity: 0.82;
}

/* Decorative bubbles */
.uc-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.55;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(6,218,246,0.12));
  animation: floaty 8s ease-in-out infinite;
}

.b1 {
  width: 220px;
  height: 220px;
  left: -60px;
  top: 120px;
  animation-duration: 9s;
}

.b2 {
  width: 160px;
  height: 160px;
  right: -40px;
  top: 240px;
  animation-duration: 7.5s;
}

.b3 {
  width: 260px;
  height: 260px;
  right: 10%;
  bottom: -90px;
  animation-duration: 10.5s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-16px) translateX(10px); }
}
