/* Custom Cursor Styles */
.cursor {
    width: 20px;
    height: 20px;
    background: #b44414;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor.hover {
    transform: scale(2);
    background: rgba(255, 255, 255, 0.8);
}

/* Hide default cursor */
* {
    cursor: none;
}

/* Show default cursor for touch devices */
@media (hover: none) {
    .cursor {
        display: none;
    }

    * {
        cursor: auto;
    }
} 