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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0e17;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #e6e9f0;
  overflow: hidden;
  position: relative;
}

.bg-glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(167, 139, 250, 0.15), transparent 40%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
}

.logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.tagline {
  margin-top: 8px;
  color: #8b93a7;
  font-size: 1rem;
}

.status-card {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.status-row:last-child { border-bottom: none; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6b7280;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.dot.ok { background: #34d399; box-shadow: 0 0 8px #34d399; }
.dot.error { background: #f87171; box-shadow: 0 0 8px #f87171; }

.status-label {
  color: #8b93a7;
  flex: 1;
}

.status-value {
  font-weight: 600;
  color: #e6e9f0;
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
}

.enter-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #a78bfa);
  color: #0a0e17;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
}

.footnote {
  margin-top: 28px;
  color: #4b5261;
  font-size: 0.8rem;
}
