/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: linear-gradient(135deg, #2e1a47 0%, #4a1f5c 50%, #6b2384 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.content {
  text-align: center;
  width: 100%;
  animation: fadeIn 1s ease-in;
}

/* Logo */
.logo-container {
  margin-bottom: 3rem;
  animation: slideDown 0.8s ease-out;
  display: inline-block;
  position: relative;
}

.logo-container::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: linear-gradient(
    45deg,
    #b91c8f,
    #d41fa8,
    #6b2384,
    #b91c8f,
    #d41fa8
  );
  border-radius: 30px;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
  animation: glowShift 6s ease-in-out infinite;
  background-size: 400% 400%;
  pointer-events: none;
}

.logo {
  max-width: 300px;
  height: auto;
  display: block;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgb(255, 255, 255), rgb(248, 245, 255));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

/* Main Content */
.main-content {
  margin-bottom: 4rem;
}

.title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  animation: slideUp 0.8s ease-out;
}

.coming-soon {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.tagline {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 3rem;
  opacity: 0.85;
  animation: slideUp 0.8s ease-out 0.4s both;
}

/* Signup Form */
.signup-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 0.5rem;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.email-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.notify-btn {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #b91c8f 0%, #d41fa8 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(185, 28, 143, 0.3);
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(185, 28, 143, 0.5);
  background: linear-gradient(135deg, #d41fa8 0%, #b91c8f 100%);
}

.notify-btn:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.875rem;
  opacity: 0.7;
  animation: slideUp 0.8s ease-out 0.8s both;
}

/* Success and Error Messages */
.success-message,
.error-message {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin: 0.5rem auto 0;
  max-width: 500px;
  animation: slideUp 0.3s ease-out;
}

.success-message {
  background: linear-gradient(
    135deg,
    rgba(185, 28, 143, 0.2) 0%,
    rgba(212, 31, 168, 0.15) 100%
  );
  color: #ffffff;
  border: 1px solid rgba(212, 31, 168, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(185, 28, 143, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

.error-message {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-message svg,
.error-message svg {
  flex-shrink: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-in 1s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.social-link:hover {
  background: linear-gradient(135deg, #b91c8f 0%, #d41fa8 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(185, 28, 143, 0.4);
}

.social-link::after {
  content: "Coming Soon";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  background: linear-gradient(
    135deg,
    rgba(185, 28, 143, 0.95) 0%,
    rgba(212, 31, 168, 0.95) 100%
  );
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(185, 28, 143, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 10;
  margin-bottom: 10px;
}

.social-link::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(212, 31, 168, 0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 9;
  margin-bottom: 4px;
}

.social-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.social-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Footer */
.footer {
  opacity: 0.6;
  font-size: 0.875rem;
  animation: fadeIn 1s ease-in 1.2s both;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes glowShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .coming-soon {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .tagline {
    font-size: 1rem;
  }

  .signup-form {
    flex-direction: column;
    max-width: 100%;
  }

  .notify-btn {
    width: 100%;
  }

  .logo {
    max-width: 240px;
  }

  .logo-container {
    margin-bottom: 2.5rem;
  }
}

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

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

  .container {
    padding: 1.5rem;
  }

  .logo {
    max-width: 200px;
  }

  .logo-container {
    margin-bottom: 2rem;
  }
}
