/* Custom Cursor Styles */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, opacity 0.1s ease;
    opacity: 0;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: #000000;
    border-radius: 50%;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 999998;
    transition: all 0.3s ease, width 0.2s ease, height 0.2s ease;
}

/* Show cursor when active */
body.cursor-active .cursor-dot,
body.cursor-active .cursor-outline {
    opacity: 1;
}

.cursor-outline.click {
    transform: translate(-50%, -50%) scale(0.8);
    background-color: rgba(0, 0, 0, 0.1);
}

.cursor-hover .cursor-outline {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(0, 0, 0, 0.1);
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}
