body {
  background: #181f25;
  color: #f3f4f6;
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
  min-height: 100vh;
}

header {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #232b33;
  background: #232b33;
}

header h1 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

header .text-blue-600 {
  color: #2563eb;
}

header .text-foreground {
  color: #f3f4f6;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
  justify-content: center;
  padding-top: 2rem;
}

.status-card {
  background: #232b33;
  border: 1px solid #374151;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  padding: 2rem;
  width: 100%;
  max-width: 500px;
  margin-top: 2rem;
  text-align: center;
}

.status-card .status-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.status-card .status-header svg {
  color: #22c55e;
  width: 2.5rem;
  height: 2.5rem;
}

.status-card .status-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid #22c55e44;
  background: #22c55e33;
  color: #22c55e;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 1.25rem;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.status-message {
  color: #f3f4f6;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.status-updated {
  color: #9ca3af;
  font-size: 1rem;
}

.admin-link {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  color: #9ca3af;
  transition: color 0.2s;
  text-decoration: none;
  z-index: 10;
}

.admin-link:hover {
  color: #f3f4f6;
}

.admin-link svg {
  width: 1.5rem;
  height: 1.5rem;
}