/* Custom Gaming Cursor - Desktop only */
@media (min-width: 768px) {
    *, *::before, *::after {
        cursor: none !important;
    }

    html, body {
        cursor: none !important;
    }
    
    a, button, input, textarea, select, 
    .btn, .nav-link, .info-box, .trailer-card, 
    .vip-item, img, video, canvas {
        cursor: none !important;
    }
}

/* Custom Arrow Cursor */
#custom-cursor {
    position: fixed;
    width: 35px;
    height: 35px;
    pointer-events: none;
    z-index: 999999;
    left: 0;
    top: 0;
    transition: transform 0.1s ease, filter 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    will-change: transform, left, top;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    display: block;
}

#custom-cursor img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

#custom-cursor.clicking {
    transform: scale(0.85);
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.6)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

#custom-cursor.hovering {
    transform: scale(1.25);
    filter: drop-shadow(0 0 15px rgba(88, 166, 255, 0.9)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

@media (max-width: 767px) {
    #custom-cursor {
        display: none !important;
    }
}


