/* Kaplumbağa Cursor ve Animasyonları */
.turtle-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 10000;
  transition: all 0.1s ease;
  mix-blend-mode: normal;
}

.turtle-body {
  width: 20px;
  height: 16px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #fca5a5 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  animation: turtleWalk 1.5s ease-in-out infinite;
}

.turtle-shell {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f3f4f6 30%, #e5e7eb 70%, #d1d5db 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 1px solid #9ca3af;
}

.turtle-head {
  position: absolute;
  top: 6px;
  left: -4px;
  width: 8px;
  height: 6px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: headBob 1.5s ease-in-out infinite;
}

.turtle-legs {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 4px;
}

.turtle-leg {
  position: absolute;
  width: 3px;
  height: 4px;
  background: #dc2626;
  border-radius: 2px;
  animation: legMove 1.5s ease-in-out infinite;
}

.turtle-leg:nth-child(1) {
  left: 2px;
  animation-delay: 0s;
}

.turtle-leg:nth-child(2) {
  left: 6px;
  animation-delay: 0.2s;
}

.turtle-leg:nth-child(3) {
  left: 10px;
  animation-delay: 0.4s;
}

.turtle-leg:nth-child(4) {
  left: 14px;
  animation-delay: 0.6s;
}

.turtle-eyes {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 6px;
  height: 4px;
}

.turtle-eye {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  border-radius: 50%;
  animation: eyeBlink 3s ease-in-out infinite;
}

.turtle-eye:nth-child(1) {
  left: 0;
}

.turtle-eye:nth-child(2) {
  right: 0;
}

/* Animasyonlar */
@keyframes turtleWalk {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-1px) rotate(1deg); 
  }
  50% { 
    transform: translateY(0px) rotate(0deg); 
  }
  75% { 
    transform: translateY(-1px) rotate(-1deg); 
  }
}

@keyframes headBob {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-0.5px); 
  }
}

@keyframes legMove {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-1px) rotate(5deg); 
  }
}

@keyframes eyeBlink {
  0%, 90%, 100% { 
    transform: scaleY(1); 
  }
  95% { 
    transform: scaleY(0.1); 
  }
}

/* Kaplumbağa yürüyüş efekti */
.turtle-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(220,38,38,0.6) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: trailFade 2s ease-out forwards;
}

@keyframes trailFade {
  0% { 
    opacity: 1; 
    transform: scale(1); 
  }
  100% { 
    opacity: 0; 
    transform: scale(0.5); 
  }
}

/* Kaplumbağa ikonları */
.turtle-icon {
  display: inline-block;
  width: 20px;
  height: 16px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #fca5a5 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  margin: 0 4px;
  vertical-align: middle;
}

.turtle-icon::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f3f4f6 30%, #e5e7eb 70%, #d1d5db 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 1px solid #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .turtle-cursor {
    width: 20px;
    height: 20px;
  }
  
  .turtle-body {
    width: 16px;
    height: 12px;
  }
  
  .turtle-shell {
    width: 12px;
    height: 8px;
  }
  
  .turtle-head {
    width: 6px;
    height: 4px;
  }
}

