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

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

body {
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  overflow: hidden;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
}

/* Fondo Matrix */
canvas#matrix {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: black;
}

/* Contenedor principal */
.container {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 255, 0, 0.3);
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
  backdrop-filter: blur(6px);
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid #00ff7f;
  margin-bottom: 15px;
}

h1 {
  font-family: 'Share Tech Mono', monospace;
  color: #00ff7f;
  font-size: 24px;
}

p {
  color: #b0ffb0;
  font-size: 14px;
  margin-bottom: 25px;
}

a {
  display: block;
  text-decoration: none;
  color: black;
  background: #00ff7f;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

a:hover {
  background: #00cc66;
  transform: scale(1.05);
}

@media (max-width: 500px) {
  .container {
    padding: 25px 15px;
  }
  img {
    width: 90px;
    height: 90px;
  }
  h1 {
    font-size: 20px;
  }
  p {
    font-size: 13px;
  }
}
