/* Coming Soon Curtain Overlay */
.coming-soon-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    135deg,
    rgba(14, 17, 23, 0.98) 0%,
    rgba(14, 17, 23, 0.95) 50%,
    rgba(28, 31, 36, 0.98) 100%
  );
  backdrop-filter: blur(25px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

.coming-soon-curtain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(33, 150, 243, 0.08) 0%,
    transparent 70%
  );
  animation: pulse-glow 4s ease-in-out infinite;
}

.coming-soon-curtain::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(33, 150, 243, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(33, 150, 243, 0.03) 0%,
      transparent 50%
    );
  animation: float-particles 20s ease-in-out infinite;
}

.curtain-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 1s ease-out;
}

.curtain-logo {
  font-family: "Courgette", cursive;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: #00bfff;
  margin-bottom: 2rem;
  text-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
  animation: glow-pulse 3s ease-in-out infinite;
}

.curtain-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff, #cccccc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.curtain-subtitle {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--on-surface-variant);
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.curtain-contact {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(15px);
  margin-bottom: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.curtain-contact h3 {
  font-size: 1.2rem;
  color: var(--on-surface);
  margin-bottom: 1rem;
  font-weight: 600;
}

.curtain-email {
  color: var(--seed-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.curtain-email::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--seed-color), var(--seed-variant));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.curtain-email:hover::after {
  width: 100%;
}

.curtain-email:hover {
  color: #00bfff;
  transform: translateY(-2px);
}

.curtain-name {
  color: var(--on-surface-variant);
  font-size: 1rem;
  font-weight: 500;
}

.curtain-footer {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--on-surface-variant);
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

.curtain-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--on-surface-variant);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  backdrop-filter: blur(10px);
}

.curtain-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

@keyframes float-particles {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(5px) rotate(-1deg);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 8px 32px rgba(0, 191, 255, 0.3);
  }
  50% {
    text-shadow: 0 8px 32px rgba(0, 191, 255, 0.5),
      0 0 60px rgba(0, 191, 255, 0.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon-curtain {
    padding: 1rem;
  }

  .curtain-contact {
    padding: 1.5rem;
  }

  .curtain-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .curtain-footer {
    bottom: 1rem;
    font-size: 0.8rem;
  }
}
