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

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

.bg-glow {
  position: fixed;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 4, 107, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.logo {
  width: 180px;
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 30px rgba(251, 4, 107, 0.3));
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #fb046b, #ff3d8a);
  border-radius: 2px;
  margin: 0 auto 2rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fb046b;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(251, 4, 107, 0.6);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.status {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.03em;
}

.footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: #fb046b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: #ff3d8a;
}

.footer-sep {
  margin: 0 0.75rem;
  color: rgba(255, 255, 255, 0.15);
}
