.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    border-radius: 50%;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease-out;
}

body:hover .cursor-dot,
body:hover .cursor-outline {
    opacity: 1;
} 