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

body {
  font-family:
    Inter,
    system-ui,
    -apple-system,
    sans-serif;
  background: #0e0e0e;
  color: #eaeaea;
}

/* Layout */
.root {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Subtle grid */
.root::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

/* Center block */
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  z-index: 1;
}

/* Logo */
.logo {
  width: 280px;
  height: auto;
  opacity: 0.9;
}

/* Text */
.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.domain {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #a0a0a0;
}

.status {
  font-size: 14px;
  color: #6f6f6f;
}

/* Signal */
.signal {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d0d0d0;
  opacity: 0.6;
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.4);
  }
}
