
/* === CURSOR SELECTION === */
.cursor-option {
    background: #fff8e7;
    border: 3px solid #d2b48c;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cursor-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: #8b4513;
}

.cursor-option.selected {
    background: #fffbf0;
    border-color: #4caf50;
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.3);
}

.cursor-preview {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 10px;
}

.cursor-name {
    font-family: 'Comic Sans MS', cursive;
    color: #8b4513;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
}

/* === MAGIC CURSOR TRAIL === */
.magic-sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Arial"; 
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
    animation: sparkleAnim 1s ease-out forwards;
    user-select: none;
    will-change: transform, opacity;
}

@keyframes sparkleAnim {
    0% {
        transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5) translate(var(--tx), var(--ty)) rotate(var(--rot));
        opacity: 0;
    }
}
