/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, transform 0.1s;
    z-index: 9999;
    mix-blend-mode: difference;
}

.custom-cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor-active {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.2);
    border-color: transparent;
}

.cursor-hidden {
    opacity: 0;
}

/* For touch devices */
@media (hover: none) {
    .custom-cursor,
    .custom-cursor-inner {
        display: none;
    }
}