body {
  background: #1c1c1c;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-size: 2.5em;
  color: #ffcc00;
}
header p {
  font-style: italic;
  margin-bottom: 30px;
}

.zero-container {
  position: relative;
  display: inline-block;
  margin: 20px auto;
}
.zero-img {
  width: 300px;
  filter: drop-shadow(0 0 10px #fff);
}
.nose-glow {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 20px;
  height: 20px;
  background: orange;
  border-radius: 50%;
  box-shadow: 0 0 15px orange;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 5px orange; }
  50% { box-shadow: 0 0 20px orange; }
  100% { box-shadow: 0 0 5px orange; }
}

.bio {
  max-width: 600px;
  margin: 30px auto;
  background: #2c2c2c;
  padding: 20px;
  border-radius: 10px;
}

button {
  background: #ffcc00;
  color: #1c1c1c;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}
button:hover {
  background: #e6b800;
}
