* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  min-height: 100vh;
  padding: 40px 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1000px;
  background: white;
  margin: 0 auto;
  padding: 0 60px;
  text-align: center;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px auto;
  animation: fadeInDown 1s ease-out;
}

.description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  animation: fadeIn 1.2s ease-out;
}

.coming-soon {
  margin: 50px 0 30px 0;
  padding: 20px;
  background: transparent;
  position: relative;
  animation: fadeInUp 1.4s ease-out;
}

.coming-soon-text {
  font-size: 22px;
  font-weight: 400;
  color: #555;
  margin-bottom: 10px;
}

.coming-soon-title {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(
    92.29deg,
    #11828a -1.61%,
    #15858e 4.02%,
    #228f9b 10.78%,
    #38a1b1 18.66%,
    #4cb0c4 23.16%,
    #4fabc2 36.67%,
    #589ebc 50.19%,
    #6988b3 65.95%,
    #7f69a6 80.59%,
    #944d9b 92.97%,
    #423370 110.99%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  letter-spacing: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.stay-tuned {
  font-size: 20px;
  font-weight: 400;
  color: #666;
  font-style: italic;
}

.contact {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #e8e8e8;
  animation: fadeIn 1.6s ease-out;
}

.contact-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.email {
  font-size: 22px;
  font-weight: 500;
  color: #11828a;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.email:hover {
  color: #4cb0c4;
  transform: translateY(-2px);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 40px 25px;
    border-radius: 15px;
  }

  .logo {
    max-width: 220px;
    margin-bottom: 35px;
  }

  .description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .coming-soon {
    margin: 40px 0;
    padding: 30px 15px;
  }

  .coming-soon-text {
    font-size: 18px;
  }

  .coming-soon-title {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .stay-tuned {
    font-size: 17px;
  }

  .contact {
    margin-top: 40px;
    padding-top: 30px;
  }

  .contact-title {
    font-size: 20px;
  }

  .email {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px;
  }

  .container {
    padding: 30px 20px;
  }

  .logo {
    max-width: 180px;
    margin-bottom: 30px;
  }

  .description {
    font-size: 15px;
  }

  .coming-soon-title {
    font-size: 28px;
  }

  .email {
    font-size: 16px;
    word-break: break-word;
  }
}
