*, *::before, *::after {
  cursor: none !important;
}

body {
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--tertiary-color); /* nutzt Rot (#FC271D) */
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background 0.2s ease, transform 0.1s ease;
  z-index: 9999;
}

.cursor.hover {
  width: 24px;
  height: 24px;
  background: rgba(--tertiary-color, 0.5);
}

.cursor.click {
  transform: translate(-50%, -50%) scale(1.6);
  background: rgba(--tertiary-color, 0.7);
}

/* Deaktiviert den Standardcursor auf interaktiven Elementen */
a, button, .nav-button, .home-icon {
  cursor: none !important;
  }

@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none;
}

}
