/* Ek animasyon katmanı — ana keyframes style.css içinde */
@keyframes softFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exp-bar-fill.animated {
  transform: scaleX(1) !important;
}

.stat-bar-fill.animated {
  transform: scaleX(1) !important;
}

[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos].animated {
  opacity: 1;
  transform: none;
}

[data-aos-delay="100"].animated { transition-delay: .1s; }
[data-aos-delay="200"].animated { transition-delay: .2s; }
[data-aos-delay="300"].animated { transition-delay: .3s; }
[data-aos-delay="400"].animated { transition-delay: .4s; }
[data-aos-delay="500"].animated { transition-delay: .5s; }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0); }
  50% { box-shadow: 0 0 20px 8px rgba(201, 169, 110, .2); }
}
.glow-pulse { animation: glowPulse 3s ease-in-out infinite; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.cursor-blink { animation: blink 1s step-end infinite; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r);
}
