.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: rgba(44, 62, 80, 0.1);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s ease;
  transform: translate(-50%, -50%);
}

/* Etkileşimli elementler üzerindeyken cursor efekti */
.cursor.hover,
.cursor-follower.hover {
  transform: translate(-50%, -50%) scale(1.5);
  background: rgba(44, 62, 80, 0.1);
  border-color: var(--accent-color);
}

/* Tıklama efekti */
.cursor.click,
.cursor-follower.click {
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(230, 126, 34, 0.2);
}

/* Mobilde cursor'u gizle */
@media (max-width: 768px) {
  .cursor, .cursor-follower {
    display: none;
  }
} 