* {
    cursor: none !important;
}
.cursor {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}
.cursor.hover { transform: scale(1.5); background: rgba(255,255,255,0.2);}
.cursor-dot.hover { transform: scale(0.5);}
.cursor.click { transform: scale(0.8); background: rgba(255,255,255,0.8);}
.cursor-dot.click { transform: scale(1.5);}
@media (hover: none) {
    .cursor, .cursor-dot { display: none; }
    * { cursor: auto !important; }
} 

/* Cursor Styles */
.cursor-style-1 {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
}

.cursor-style-2 {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: rotate(45deg);
}

.cursor-style-3 {
    width: 20px;
    height: 20px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cursor-style-4 {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 4px;
}

/* Cursor Preview Container */
.cursor-preview {
    width: 300px;
    height: 200px;
    border: 2px dashed #666;
    border-radius: 8px;
    margin: 20px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 9999;
}

.cursor-preview::after {
    content: "Hover here to preview";
    color: #666;
    font-size: 14px;
}

.cursor-preview:hover::after {
    display: none;
}

/* Preview Cursor specific styling */
.preview-cursor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Cursor Style Selector */
.cursor-style-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.cursor-option {
    padding: 10px;
    border: 2px solid #444;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.cursor-option:hover {
    border-color: #888;
    background: rgba(255, 255, 255, 0.1);
}

.cursor-option.selected {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
} 