@media (min-width: 1024px) {
  .custom-cursor-enabled .custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 5px var(--color-primary-light);
    transition: transform 0.4s ease;
    transform: translate(-50%, -50%);
  }
}