* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Inter, Roboto, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top right,
      rgba(111, 167, 124, 0.3),
      transparent 55%
    ),
    linear-gradient(135deg, #12281e, #1f4d36, #6fa77c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 560px;
  padding: 55px 50px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-align: center;
}

.logo {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.logo span {
  color: #9fe0b5;
}

.section {
  margin: 25px 0;
}

.lang {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.coming {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.description {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.92;
}

.description strong {
  font-weight: 600;
  color: #d8f3e2;
}

.separator {
  width: 100%;
  height: 1px;
  margin: 35px 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
}

.footer {
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.65;
}

@media (max-width: 480px) {
  .container {
    padding: 45px 30px;
  }

  .logo {
    font-size: 2.1rem;
  }

  .coming {
    font-size: 1.6rem;
  }
}
