/* Error and Coming Soon Page Styles */

/* ========= Container ========= */
.soon-container {
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--background);
  padding: 40px 20px;
}

/* ========= Background Animation ========= */
.bubble-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bubbles {
  position: relative;
  width: 100%;
  height: 100%;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: var(--accent-color);
  opacity: 0.15;
  border-radius: 50%;
  animation: rise 15s infinite ease-in;
  filter: blur(15px);
}

.bubble.circle:nth-of-type(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
  background: rgba(8, 184, 111, 0.2);
}

.bubble.circle:nth-of-type(2) {
  width: 120px;
  height: 120px;
  left: 70%;
  animation-delay: 2s;
  background: rgba(33, 208, 41, 0.15);
}

.bubble.circle:nth-of-type(3) {
  width: 100px;
  height: 100px;
  left: 40%;
  animation-delay: 4s;
  background: rgba(98, 126, 160, 0.15);
}

.bubble.triangle {
  width: 90px;
  height: 90px;
  left: 25%;
  animation-delay: 1s;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(255, 147, 47, 0.15);
}

.bubble.hexagon {
  width: 110px;
  height: 110px;
  left: 85%;
  animation-delay: 3s;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(8, 184, 111, 0.15);
}

.bubble.square {
  width: 95px;
  height: 95px;
  left: 60%;
  animation-delay: 5s;
  border-radius: 15px;
  background: rgba(33, 208, 41, 0.15);
}

.bubble.star {
  width: 100px;
  height: 100px;
  left: 50%;
  animation-delay: 2.5s;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  background: rgba(98, 126, 160, 0.15);
}

@keyframes rise {
  0% {
    bottom: -150px;
    transform: translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.25;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    bottom: 110%;
    transform: translateX(-50px) scale(1.2);
    opacity: 0;
  }
}

/* ========= Content ========= */
.soon-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ========= Logo ========= */
.soon-logo {
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.soon-logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
}

.soon-logo .brand {
  font-family: var(--font-alt);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--title-color);
  margin: 0;
  letter-spacing: 0.5px;
}

.soon-logo .brand .art {
  color: var(--gray-color);
  font-size: 2rem;
  letter-spacing: 2px;
}

/* ========= Message ========= */
.soon-message {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.soon-title {
  font-family: var(--font-urban);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title-color);
  margin: 0;
  background: var(--accent-linear);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.soon-subtitle {
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

.soon-description {
  font-family: var(--font-text);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-color);
  margin: 0;
  opacity: 0.8;
}

/* ========= Actions ========= */
.soon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 32px;
  font-family: var(--font-alt);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-linear);
  color: var(--white-color);
  box-shadow: var(--card-box-shadow-alt);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--card-box-shadow);
}

.btn-secondary {
  background: var(--button-background);
  color: var(--text-color);
  border: var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: var(--gray-background);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0);
}

/* ========= Footer ========= */
.soon-footer {
  margin-top: 40px;
}

.soon-footer span.copy {
  font-family: var(--font-text);
  font-size: 0.9rem;
  color: var(--text-color);
  margin: 0;
  opacity: 0.7;
  border-left: var(--border);
  padding-left: 15px;
}

.soon-footer span.copy > span.year {
  font-family: var(--font-mono);
  font-weight: 500;
}

/* ========= Responsive ========= */
@media screen and (max-width: 768px) {
  .soon-content {
    gap: 30px;
    padding: 20px;
  }

  .soon-logo .brand {
    font-size: 2rem;
  }

  .soon-logo .brand .art {
    font-size: 1.6rem;
  }

  .soon-title {
    font-size: 2.5rem;
  }

  .soon-subtitle {
    font-size: 1.2rem;
  }

  .soon-description {
    font-size: 1rem;
  }

  .soon-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .soon-title {
    font-size: 2rem;
  }

  .soon-subtitle {
    font-size: 1.1rem;
  }

  .soon-description {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}
