:root {
  --bg: #030304;
  --fg: #8f8c99;
  --dim: #3d3a46;
}

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

body {
  background: var(--bg);
  /* nevoa quase imperceptivel no breu */
  background-image:
    radial-gradient(ellipse 70% 50% at 25% 35%, rgba(35, 30, 48, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 45% at 75% 70%, rgba(25, 22, 34, 0.22), transparent 60%);
  color: var(--fg);
  font-family: "Silkscreen", monospace;
  -webkit-font-smoothing: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* vinheta — a luz morre nas bordas (atras das particulas) */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

#matrix {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.wrap {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 28px;
  width: 100%;
}

h1 {
  font-family: "Press Start 2P", monospace;
  font-size: 40px;
  letter-spacing: 2px;
  color: #eceaf2;
  margin-bottom: 20px;
}

.glow {
  animation: breathe 7s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { text-shadow: 0 0 8px rgba(200, 195, 220, 0.25); opacity: 0.92; }
  50% { text-shadow: 0 0 20px rgba(200, 195, 220, 0.55); opacity: 1; }
}

.bio {
  font-size: 18px;
  color: #a8a4b5;
  margin-bottom: 56px;
}

.soon {
  font-family: "Press Start 2P", monospace;
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 56px;
}

.soon .dim {
  color: var(--dim);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links a {
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
  width: fit-content;
  transition: color 0.5s, text-shadow 0.5s;
}

.links a:hover {
  color: #d9d6e2;
  text-shadow: 0 0 10px rgba(150, 145, 170, 0.5);
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  .bio, .links a { font-size: 16px; }
}
