
body {
  background: linear-gradient(135deg, #0A0A0A 0%, #151515 100%);
  color: #e9e9e9;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
  background: #151515;
  border-radius: 18px;
  box-shadow: 0 0 6px 6px rgba(56,255,156,0.08);
  padding: 48px 32px;
  max-width: 400px;
  text-align: center;
}


.logo {
  width: 80px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: #1b1b1b;
  box-shadow: 0 2px 12px rgba(56,255,156,0.12);
}


h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e9e9e9;
}

.status-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101010;
  border-radius: 8px;
  padding: 8px 18px;
  margin-bottom: 18px;
  font-weight: 500;
  color: #38FF9C;
  font-size: 1rem;
  border: 1px solid rgba(56,255,156,0.4);
}


.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38FF9C;
  margin-right: 8px;
  animation: pulse 1.2s infinite;
}


@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #38FF9C88; }
  70% { box-shadow: 0 0 0 10px #38FF9C00; }
  100% { box-shadow: 0 0 0 0 #38FF9C00; }
}


.footer {
  margin-top: 24px;
  font-size: 0.95rem;
}


.footer a {
  color: #e9e9e9;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer a:hover {
  color: #33E88E;
}
