/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    width: 80px;
    height: 80px;
    background: rgba(66, 165, 245, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(66, 165, 245, 0.3);
    top: 0;
    left: 0;
}

.custom-cursor.hover {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.3);
    transform: translate(-50%, -50%);
}

.custom-cursor.click {
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(76, 175, 80, 0.8);
    border-color: rgba(76, 175, 80, 1);
}

/* Hide cursor on mobile devices */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
} 