/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* Background */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f9f9f9, #eef6f3);
  color: #222;
}

/* Main Container */
.container {
  text-align: center;
  max-width: 650px;
  padding: 50px 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  animation: fadeIn 1.2s ease-in-out;
}

/* Logo */
.logo img {
  width: 180px;
  margin-bottom: 25px;
}

/* Headline */
h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #2b6f5a;
  margin-bottom: 15px;
}

/* Subtitle */
.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Status */
.status {
  font-size: 1rem;
  color: #777;
  margin-bottom: 35px;
}

/* Footer */
footer {
  font-size: 0.9rem;
  color: #999;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 2.3rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .logo img {
    width: 140px;
  }
}
