/* Additional animations for the enhanced sections */
.system-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.system-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.pomodoro-card.animated {
  transition-delay: 0.1s;
}

.timeblock-card.animated {
  transition-delay: 0.3s;
}

.method-card.animated {
  transition-delay: 0.5s;
}

.pulse-strong {
  animation: pulse-strong 1s ease-out !important;
}

@keyframes pulse-strong {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(255, 107, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
  }
}

/* Floating animation for focus point */
.focus-point {
  animation: float 3s ease-in-out infinite alternate, pulse 2s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translate(-50%, -50%) translateX(-20px); }
  100% { transform: translate(-50%, -50%) translateX(20px); }
}

/* Wave pattern movement */
.wave-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 C30,20 70,0 100,10' fill='none' stroke='%23D079EE' stroke-width='1' stroke-opacity='0.2'/%3E%3C/svg%3E");
  background-size: 100px 20px;
  opacity: 0.3;
  pointer-events: none;
}

/* Shimmer effect for buttons */
.start-now-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
