/* Custom cursor — single wrapper, children centered */
/*
.custom-cursor {
   isolation: isolate;
   position: fixed;
  inset: 0 auto auto 0;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.15s ease;  
  transform: translate3d(-100px, -100px, 0);
}


.custom-cursor.is-active {
  opacity: 1;
}

.custom-cursor__dot,
.custom-cursor__ring {
  position: fixed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.custom-cursor__dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--cursor-color);
  box-shadow: 0 0 12px rgba(255, 120, 172, 0.9);
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
  z-index: 2;

}

.custom-cursor__ring {
  width: 40px;
   margin: -18px 0 0 -18px;
  height: 40px;
  border: 2px solid var(--accent-pink);
  background: rgba(255, 120, 172, 0.08);
  box-shadow: 0 0 24px rgba(255, 120, 172, 0.35);
  z-index: 1;
  transition:width 0.3s ease, height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-cursor__ring.is-hover {
  width: 56px;
      height: 56px;
      margin: -28px 0 0 -28px;

  border-color: var(--primary-gold);
  box-shadow: 0 0 30px rgba(231, 171, 121, 0.45);
} */
/* 

body{
    background-color: #1e1e2f;
}
.custom-cursor{
    z-index: 10000;

} */
:root {
    --cursor-color: #ff78ac;
}

.custom-cursor__dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    background: var(--cursor-color);
    box-shadow: 0 0 12px rgba(255, 120, 172, 0.9) 0 0 48px rgba(255, 120, 172, 0.9) 0 0 120px rgba(255, 120, 172, 0.9);
    z-index: 1000;
}



.custom-cursor__ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    width: 40px;
    height: 40px;
    border: 2px solid var(--cursor-color);
    background: rgba(255, 120, 172, 0.08);
    box-shadow: 0 0 24px rgba(255, 120, 172, 0.35);
    z-index: 1;
    transform: translate(-40%, -40%);
    transition:width 0.3s ease, height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.custom-cursor__dot.is-hover{
    
        background: var(--primary-gold);
        transform: scale(1.2);

}
.custom-cursor__ring.is-hover {
    border-color: var(--primary-gold);   
        transform: scale(1.2) translate(-33% , -33%);
        box-shadow: 0 0 30px rgba(231, 171, 121, 0.45);

}

.spotlight {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 6, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 99;
    transform: translate(-50%, -50%);
}

[data-theme="light"] .spotlight {
    background: radial-gradient(circle, rgba(178, 80, 104, 0.06) 0%, transparent 70%);
}