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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #0d0d1a;
  color: #e0e0e0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animated star field canvas */
#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(120,119,198,.15), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(65,105,225,.1), transparent 40%),
    #0d0d1a;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

h1 { font-size: 2.5rem; margin-bottom: 2rem; letter-spacing: -.5px; }

.logo {
  max-width: 480px;
  width: 70%;
  margin-bottom: 2rem;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 4px 24px rgba(100,120,255,.35));
}

.card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.stat:last-child { border-bottom: none; }

.label { color: #999; font-size: .9rem; }
.value { font-weight: 600; font-size: 1.05rem; color: #7eb3ff; }
.value--url { font-size: .75rem; font-weight: 500; word-break: break-all; margin-left: .75rem; }

.links a {
  color: #7eb3ff;
  text-decoration: none;
  font-size: .9rem;
}
.links a:hover { text-decoration: underline; }
