body {
  background-color: #1C1F26; /* Dark Charcoal Blue */
  color: #F9FAFB; /* Almost White */
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  padding: 0 1rem;
}

img.logo {
  width: 20vw;
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0px 0px 12px #FFD86B); /* warm glow */
}

h1 {
  font-size: 5vw;
  font-weight: 700;
  margin: 0.2em 0;
  color: #FFD86B; /* Warm Golden Glow */
  text-shadow: 0 0 20px rgba(255, 216, 107, 0.6);
}

h2 {
  font-size: 2.5vw;
  font-weight: 500;
  margin: 0.3em 0;
  color: #7D6BFF; /* Friendly Violet */
}

h3 {
  font-size: 2vw;
  font-weight: 300;
  margin: 0.5em 0;
  color: #34D1BF; /* Teal Green for emphasis */
}

p {
  font-size: 1.1em;
  max-width: 600px;
  line-height: 1.6;
  color: #A0A6B3; /* Soft Gray for secondary text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  img.logo {
    width: 30vw;
    max-width: 150px;
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.4em;
  }
  h3 {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  img.logo {
    width: 40vw;
    max-width: 120px;
  }
  h1 {
    font-size: 1.8em;
  }
  h2 {
    font-size: 1.1em;
  }
  h3 {
    font-size: 0.9em;
  }
}

.status-footer {
  color: #535d6b;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
}
