
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  background: linear-gradient(135deg, #f2f7f4, #e8f0eb);

  padding: 20px;
}

.container {
  max-width: 800px;
  text-align: center;
}

.badge {
  display: inline-block;

  padding: 10px 18px;

  background: #dcebe4;
  color: #2e6b5b;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 25px;
}

h1 {
  font-size: 56px;
  line-height: 1.2;
  color: #1d2d28;

  margin-bottom: 20px;
}

h1 span {
  color: #2e6b5b;
}

.subtitle {
  max-width: 700px;

  margin: 0 auto 30px;

  color: #5f6f6a;
  font-size: 18px;
  line-height: 1.8;
}

.message-box {
  background: white;

  padding: 22px;

  border-radius: 18px;

  border-left: 5px solid #2e6b5b;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  margin-bottom: 30px;
}

.message-box p {
  color: #2e6b5b;
  font-weight: 600;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 40px;

  color: #2e6b5b;
  font-weight: 600;
}

.dot {
  width: 12px;
  height: 12px;

  border-radius: 50%;
  background: #2e6b5b;

  animation: pulse 1.5s infinite;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: white;
  color: #2e6b5b;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;

  font-size: 22px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;
}

.social-link:hover {
  background: #2e6b5b;
  color: white;

  transform: translateY(-5px);
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.coming-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;

  margin-bottom: 40px;
}

.feature {
  background: white;

  padding: 18px 24px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature i {
  color: #2e6b5b;
  font-size: 20px;
}

.feature span {
  color: #1f2a2a;
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 16px;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }
  .coming-features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}