body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #00ff00;
  font-family: 'VT323', monospace;
  font-size: 22px;
  overflow: hidden;
}

#bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

header {
  z-index: 10;
  position: relative;
  text-align: center;
  padding: 1rem;
  border-bottom: 2px dashed #00ff00;
}

.logo {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

h2 {
  font-size: 1.2rem;
  color: #00aa00;
}

.content {
  z-index: 10;
  position: relative;
  padding: 2rem;
  text-align: center;
}

.block {
  margin: 1.5rem auto;
  padding: 1rem;
  border: 2px solid #00ff00;
  max-width: 320px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.block:hover {
  background: #001100;
}

a {
  color: #00ff00;
  text-decoration: none;
  font-size: 1.4rem;
}

.icon {
  font-size: 2rem;
}
.top-bar {
  position: relative;
  z-index: 10;
  font-family: 'VT323', monospace;
  font-size: 1.8rem;
  color: #00ff00;
  padding: 1rem 2rem;
  text-align: left;
}

.hero-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 1rem 2rem;
  z-index: 10;
  position: relative;
}

.hero-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #00ff00;
  object-fit: cover;
}

.hero-text h1 {
  font-size: 1.6rem;
  font-family: 'VT323', monospace;
  color: #00ff00;
}
.note-top {
  font-size: 0.85rem;
  color: #00aa00;
  font-family: 'VT323', monospace;
  text-align: left;
  max-width: 420px;
  margin: 1.5rem auto 0.3rem auto;
  line-height: 1.3;
}
canvas#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, #050505 0%, #000000 100%);
}
