/* ===== CUSTOM CURSOR (Desktop only) ===== */
@media (pointer: fine) {
  * { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--ink, #0b1220);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.85);
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--ink, #0b1220);
    border-radius: 50%;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.7));
    pointer-events: none;
    z-index: 99998;
    transition: width 0.25s ease, height 0.25s ease, opacity 0.2s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
  }

  /* Hover auf klickbare Elemente: Ring wird größer */
  .cursor-hover .cursor-ring {
    width: 44px;
    height: 44px;
    border-color: var(--ink, #0b1220);
    opacity: 0.5;
  }

  .cursor-hover .cursor-dot {
    transform: translate(-50%, -50%) scale(0.6);
  }

  /* Klick-Effekt */
  .cursor-click .cursor-ring {
    width: 24px;
    height: 24px;
  }

  .cursor-click .cursor-dot {
    transform: translate(-50%, -50%) scale(1.4);
  }

  /* Sichtbar sobald Maus sich bewegt */
  .cursor-visible .cursor-dot,
  .cursor-visible .cursor-ring {
    opacity: 1;
  }
}
