body {
    cursor: none;
    /* Hide default cursor */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 0, 79, 0.7);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.1s ease;
    will-change: transform;
    z-index: 10000;
}

/* Hide on devices that support touch input */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor {
        display: none;
    }
}