/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #eaeaea;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

h1 {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.subtitle {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 1px;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: #444;
  margin: 30px auto;
}

.status {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.description {
  font-size: 0.9rem;
  color: #aaa;
  line-height: 1.5;
}

.footer {
  margin-top: 40px;
  font-size: 0.7rem;
  color: #555;
}