body {
    margin: 0;
    font-family: -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #0f172a;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.uc-wrapper {
    max-width: 480px;
    padding: 40px;
}

.uc-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.uc-subtitle {
    color: #94a3b8;
    margin-bottom: 24px;
}

.uc-eta {
    font-weight: 600;
    margin-bottom: 20px;
}

.uc-contact a {
    color: #60a5fa;
    text-decoration: none;
}

/* Базовий контейнер для фону */
.gemini-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #0f0f11; /* Глибокий темний фон або #ffffff для світлої теми */
  z-index: -1; /* Щоб фон був позаду основного контенту */
}

/* Загальні стилі для кольорових плям */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px); /* Сильне розмиття для ефекту свічення */
  opacity: 0.6;        /* Прозорість для м'якого змішування */
  mix-blend-mode: screen; /* Допомагає кольорам гарно змішуватися */
}

/* Перша пляма (наприклад, синьо-фіолетова) */
.blob-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #0d2e63, #3b2258);
  top: -10%;
  left: -10%;
  animation: moveBlob1 15s infinite alternate ease-in-out;
}

/* Друга пляма (рожево-червона) */
.blob-2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgb(2 50 108 / 0.15), #12344a);
  bottom: -20%;
  right: -10%;
  animation: moveBlob2 18s infinite alternate ease-in-out;
}

/* Третя пляма (блакитно-зелена) */
.blob-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #101a35, rgb(0 0 0 / 0.1));
  top: 40%;
  left: 30%;
  animation: moveBlob3 20s infinite alternate ease-in-out;
}

/* Анімації руху плям */
@keyframes moveBlob1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(150px, 100px) scale(1.2);
  }
  100% {
    transform: translate(50px, 200px) scale(0.9);
  }
}

@keyframes moveBlob2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-150px, -100px) scale(1.1);
  }
  100% {
    transform: translate(-50px, -200px) scale(1.3);
  }
}

@keyframes moveBlob3 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(100px, -150px) scale(1.2);
  }
  100% {
    transform: translate(-100px, 150px) scale(0.8);
  }
}