/* Ko-fi Floating Donation Button */
.kofi-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  animation: kofi-float 3s ease-in-out infinite;
}

.kofi-floating img {
  height: 40px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
}

.kofi-floating:hover img {
  transform: scale(1.1);
}

@keyframes kofi-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Ko-fi Banner Style */
.kofi-banner {
  background: linear-gradient(135deg, #29abe0 0%, #ff5e5b 100%);
  padding: 15px 25px;
  text-align: center;
  border-radius: 12px;
  margin: 20px 0;
}

.kofi-banner a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kofi-banner a:hover {
  text-decoration: underline;
}

/* Ko-fi Footer Link Style */
.kofi-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.kofi-link:hover {
  color: #ff5e5b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .kofi-floating {
    bottom: 15px;
    right: 15px;
  }
  
  .kofi-floating img {
    height: 36px;
  }
  
  .kofi-banner {
    padding: 12px 15px;
  }
  
  .kofi-banner a {
    font-size: 14px;
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .kofi-floating {
    animation: none;
  }
  
  .kofi-floating img {
    transition: none;
  }
}

/* Feedback Button */
.feedback-floating {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
}
.feedback-floating a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
  transition: all 0.3s;
}
.feedback-floating a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}
