/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.inner-cursor {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hide default cursor when custom cursor is active */
body.custom-cursor-active {
    cursor: none;
}

/* Cursor states */
.cursor-hover {
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.8);
}

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

/* Cursor trail effect */
.cursor-trail {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 9998;
    transition: opacity 0.5s ease;
}