/* Extracted from about/index.html */

/* Typewriter blink effect */
.typewriter-title[data-astro-cid-tnzwls7f]:after {
  content: "";
  color: gold;
  animation: blink 1s step-end infinite;
  border-right: 3px solid #ffd700;
  margin-left: 2px;
}
@keyframes blink {
  0%,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* About page specific styles */
.profile-image-container[data-astro-cid-kh7btl4r] {
  position: relative;
  width: 100%;
  max-width: 16rem;
  margin: 0 auto;
}
.profile-glow[data-astro-cid-kh7btl4r] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0.2;
  filter: blur(30px);
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.profile-image-container[data-astro-cid-kh7btl4r]
  img[data-astro-cid-kh7btl4r] {
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px #0003;
}
.tags[data-astro-cid-kh7btl4r] .tag[data-astro-cid-kh7btl4r] {
  border-radius: 9999px;
  padding: 0.5em 1em;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tags[data-astro-cid-kh7btl4r] .tag[data-astro-cid-kh7btl4r]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #6366f14d;
}
.tag[data-astro-cid-kh7btl4r].is-primary {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
}
.tag[data-astro-cid-kh7btl4r].is-secondary {
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--color-secondary),
    var(--color-accent)
  );
}
.card[data-astro-cid-kh7btl4r].is-glass {
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card[data-astro-cid-kh7btl4r].is-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #0003;
}
.max-width-prose[data-astro-cid-kh7btl4r] {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .profile-image-container[data-astro-cid-kh7btl4r] {
    margin-bottom: 2rem;
  }
}
.hover-scale[data-astro-cid-kh7btl4r] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale[data-astro-cid-kh7btl4r]:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3);
}
.animated-list[data-astro-cid-kh7btl4r]
  .list-item[data-astro-cid-kh7btl4r] {
  padding: 1rem;
  margin: 1rem 0;
  background: #ffffff0d;
  border-radius: 10px;
  transform: translate(-20px);
  opacity: 0;
  transition: all 0.5s ease;
}
.animated-list[data-astro-cid-kh7btl4r]
  .list-item[data-astro-cid-kh7btl4r][data-aos="fade-right"] {
  transform: translate(0);
  opacity: 1;
}
.particle[data-astro-cid-kh7btl4r] {
  position: absolute;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  opacity: 0.1;
  animation: float 20s infinite linear;
}
.particle-1[data-astro-cid-kh7btl4r] {
  width: 150px;
  height: 150px;
  top: -50px;
  left: -50px;
  border-radius: 40% 60% 70% 30%/40% 50% 60%;
}
.particle-2[data-astro-cid-kh7btl4r] {
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: -20px;
  border-radius: 30% 60% 50% 40%/50% 40% 60% 50%;
  animation-delay: -10s;
}
@keyframes float {
  0% {
    transform: translate(0) rotate(0);
  }
  25% {
    transform: translate(10px, 10px) rotate(5deg);
  }
  50% {
    transform: translate(20px, -10px) rotate(-5deg);
  }
  75% {
    transform: translate(-10px, 15px) rotate(5deg);
  }
  to {
    transform: translate(0) rotate(0);
  }
}
.animate-bounce[data-astro-cid-kh7btl4r] {
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%,
  to {
    transform: translate(0);
  }
  50% {
    transform: translate(5px);
  }
} 