@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

body, html {
  margin: 0; padding: 0; height: 100%;
  background: black;
  color: #00ff00;
  font-family: 'Share Tech Mono', monospace;
  overflow: hidden;
  position: relative;
}

.matrix {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 0;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.intro {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0,0,0,0.7);
  border: 2px solid #00ff00;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  box-shadow: 0 0 15px #00ff00;
}

.icon {
  width: 60px;
  height: 60px;
  border: 2px solid #00ff00;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  overflow: hidden;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px #00ff00;
}

.intro p {
  font-size: 1.2rem;
  line-height: 1.5;
  text-shadow: 0 0 5px #00ff00;
}
