/* ========================================
   Custom Cursor
   ======================================== */

.custom-cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    background-color: transparent;
}

.custom-cursor.white {
    background-color: #fff;
}

.custom-cursor.white.hover {
    border-color: #fff;
}

.custom-cursor.drag {
    width: 80px;
    height: 80px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.custom-cursor.drag::after {
    content: 'DRAG';
}
