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

body {
  background: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e2e8f0;
  overflow: hidden;
  position: relative;
  height: 100vh;
}

#app {
  position: relative;
  z-index: 2;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  background: #1e293b;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 100%;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: #f1f5f9;
  font-weight: 700;
}

.tagline {
  font-size: 1.1em;
  color: #94a3b8;
  margin-bottom: 40px;
  font-weight: 400;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.stat {
  padding: 20px;
  background: #0f172a;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.stat-label {
  color: #94a3b8;
  font-size: 0.85em;
  margin-bottom: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 1.6em;
  color: #f1f5f9;
  font-weight: 600;
}

.status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 11px;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.divider {
  height: 1px;
  background: #e2e8f0;
  margin: 30px 0;
}

.description {
  font-size: 0.95em;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 20px 0;
}

.footer-text {
  font-size: 0.85em;
  color: #64748b;
  margin-top: 30px;
}

@media (max-width: 600px) {
  .container {
    padding: 40px 30px;
  }
  h1 {
    font-size: 2em;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .tagline {
    font-size: 1em;
  }
}