body {
  margin: 0;
  padding: 0;
  background-color: #f6f6f6;
  color: #111827;
  font-family: 'Share Tech Mono', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  animation: none;
}

/* Flicker effect */
@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.7;
  }
}

/* Audio player styles */


.overlay {
  display: none; /* overlay removed: background is now a neutral card color */
}

@keyframes darkPulse {
  0%, 100% {
    background: rgba(0, 0, 0, 0.95);
  }
  50% {
    background: rgba(0, 0, 0, 0.85);
  }
}

.container {
  text-align: center;
  padding: 2rem;
  z-index: 1;
  max-width: 400px;
  width: 90%;
  background: transparent; /* match body color visually */
  color: #111827; /* dark text for readability */
  border-radius: 12px;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid #e6e6e6;
  box-shadow: 0 8px 24px rgba(2,6,23,0.08);
  display: block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin: 0.5rem 0;
  color: #0f1724;
  letter-spacing: 0.5px;
}

.alt-names {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.bio {
  font-style: italic;
  margin: 1rem 0;
  color: #4b5563;
}

.links a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin: 0.5rem 0;
  padding: 0.75rem;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Special top link styling — taller and visually distinct */
.links a.special {
  padding: 1rem 0.9rem;
  background: linear-gradient(180deg, #e9f7ee 0%, #dff3e6 100%);
  color: #054e3a;
  border: 1px solid #c6e8cf;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-shadow: none;
}

.links a.special i {
  filter: none;
}

.links a.special:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(4, 78, 58, 0.08);
  /* Keep the same background/color on hover (no dark color swap) */
  background: linear-gradient(180deg, #e9f7ee 0%, #dff3e6 100%);
  color: #054e3a;
  text-shadow: none;
}

.links a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.links a:hover::after {
  left: 100%;
}

.links a:hover {
  background: #333;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Base styles for icons */
.links a i,
.links a img {
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover effect for all icons */
.links a:hover i,
.links a:hover img {
  animation: glowPulse 1s infinite;
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
}

/* Enhanced glow pulse animation */
@keyframes glowPulse {
  0% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
  50% {
    transform: scale(1.2) rotate(5deg);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 255, 255, 0.9));
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
  }
}

.links i {
  width: 20px;
}

footer {
  font-size: 0.7rem;
  margin-top: 2rem;
  color: #6b7280;
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
  }
}
