/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Container */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Logo */
.logo {
  max-width: 220px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(0, 255, 51, 0.5));
}

/* Headline */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

/* Tagline */
.tagline {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 8px;
}

/* Status */
.status {
  font-size: 1rem;
  font-style: italic;
  color: #00ff33;
  margin-bottom: 25px;
}

/* Button */
.btn {
  padding: 10px 28px;
  border: 1.5px solid #00ff33;
  color: #00ff33;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #00ff33;
  color: #000;
  box-shadow: 0 0 10px rgba(0,255,51,0.6);
}

/* Footer */
footer {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #111;
}

footer a {
  color: #00ff33;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
