* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(135deg, #004080, #00aaff);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
}

.container {
  z-index: 2;
}

.logo {
  max-width: 220px;
  margin-bottom: 1.5em;
  animation: fadeIn 2s ease-in-out;
}

h1 {
  font-size: 2.8rem;
  margin: 0.5em 0;
  animation: fadeInUp 2s ease-in-out;
}

p {
  font-size: 1.3rem;
  opacity: 0.9;
  animation: fadeInUp 2.5s ease-in-out;
}

footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.75;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5em;
}

footer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.status {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5em;
  padding: 0.5em 1em;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.status .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 8px;
}

.status.online .circle {
  background-color: #00ff08; 
  box-shadow: 0 0 8px #4CAF50;
}
.status.online .text {
  color: #00ff08;
}

.status.offline .circle {
  background-color: #E53935; 
  box-shadow: 0 0 8px #E53935;
}
.status.offline .text {
  color: #E53935;
}
