.skill-bar-06ff0de7 {
  width: 100%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.skill-bar-06ff0de7 .skill-bar-header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: var(--skill-name-width, 180px);
}
.skill-bar-06ff0de7 .skill-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.skill-bar-06ff0de7 .skill-icon svg,
.skill-bar-06ff0de7 .skill-icon i {
  display: inline-block;
  vertical-align: middle;
}
.skill-bar-06ff0de7 .skill-bar-container {
  flex-grow: 1;
  background-color: #eee;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.skill-bar-06ff0de7 .skill-bar-fill {
  height: 100%;
  width: 0%;
  background-color: #3b82f6;
  transition: width 1s ease-in-out;
  position: relative;
}

/* Electricity Flow Animation */
.skill-bar-flow-yes .skill-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.8) 45%,
    #00f3ff 50%,
    rgba(255, 255, 255, 0.8) 55%,
    transparent 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: electricity var(--energy-flow-speed, 1.5s) linear infinite;
  mix-blend-mode: screen;
}

/* Bright crackling spark at the front edge of the fill bar */
.skill-bar-flow-yes .skill-bar-fill::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px #00f3ff, 0 0 18px #00f3ff, 0 0 30px #00f3ff;
  opacity: 0.95;
  animation: sparkPulse 0.1s alternate infinite;
  z-index: 2;
}

/* Pulsing Bar Effect */
.skill-bar-pulse-yes .skill-bar-container {
  animation: barPulse var(--skill-pulse-speed, 2s) ease-in-out infinite;
}

@keyframes electricity {
  0% {
    background-position: 150% 0;
  }
  100% {
    background-position: -50% 0;
  }
}

@keyframes sparkPulse {
  0% { transform: scaleY(0.85) scaleX(0.9); opacity: 0.75; }
  100% { transform: scaleY(1.1) scaleX(1.2); opacity: 1; }
}

@keyframes barPulse {
  0% {
    box-shadow: 0 0 4px rgba(0, 243, 255, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(0, 243, 255, 0.6);
    transform: scale(1.015);
  }
  100% {
    box-shadow: 0 0 4px rgba(0, 243, 255, 0.2);
    transform: scale(1);
  }
}

.skill-bar-06ff0de7 .skill-percent {
  flex-shrink: 0;
  min-width: 45px;
  text-align: right;
}
