.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 20% / 15%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'PP Neue Montreal', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(145deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    box-shadow: 
      inset 0 0 12px rgba(255, 255, 255, 0.3),
      0 4px 30px rgba(0, 0, 0, 0.05);
    color: #000;
    mix-blend-mode: exclusion;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.3s ease;
  }
  
  .custom-cursor.visible {
    opacity: 1;
  }
  
  .custom-cursor.clickable {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.25);
    background: linear-gradient(135deg, rgba(243,127,156,0.4), rgba(0,175,255,0.3));
    border-color: rgba(255, 255, 255, 0.6);
    color: #000;
    box-shadow:
      inset 0 0 20px rgba(255, 255, 255, 0.5),
      0 0 12px rgba(243,127,156,0.4);
  }

  .custom-cursor::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(255,255,255,0.2) 100%);
    transform: rotate(0deg);
    pointer-events: none;
    z-index: -1;
    border-radius: inherit;
  }
